/* pages/c.css — pagina-specifieke stijlen (gegenereerd) */

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.top-actions { display: flex; gap: 12px; }
.hero { position: relative; padding: 8px 48px 48px; min-height: 410px; overflow: hidden; isolation: isolate; background: var(--forest); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22, 46, 37,1) 0%, rgba(22, 46, 37,1) 55%, rgba(22, 46, 37, 0.9) 70%, rgba(22, 46, 37, 0.72) 88%, rgba(22, 46, 37, 0.6) 100%); z-index: -1; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px; background: linear-gradient(180deg, rgba(7, 42, 32, 0.55) 0%, transparent 100%); pointer-events: none; z-index: 0; }
.hero-eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; margin-top: 14px; }
.hero h1 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.2; color: #fff; letter-spacing: -0.015em; max-width: 820px; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
/* Geen knoppen in deze hero: subtekst iets lager plaatsen, alsof de titel een extra (2de) regel had,
   zodat de hero niet met een lege ruimte onderaan oogt. */
.hero-lead { color: #fff; font-size: 16px; font-weight: 400; line-height: 1.55; max-width: 640px; margin-top: 61px; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); opacity: 0.95; }
.content { max-width: 990px; margin: 0 auto; padding: 80px 48px 72px; }
.status-card { background: var(--paper); border: 1px solid var(--grey-line); border-radius: 6px; overflow: hidden; position: relative; }
.status-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--forest) 0%, var(--forest) 60px, transparent 60px); }
.status-card-header { padding: 32px 36px 28px; background: #fafbfc; border-bottom: 1px solid var(--grey-line); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.status-pulse { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.status-pulse-dot { position: absolute; inset: 3px; background: var(--buy-green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(92, 179, 119, 0.18); }
.status-pulse-ring { position: absolute; inset: 0; border-radius: 50%; background: var(--buy-green); opacity: 0.5; animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse-ring {
    0%   { transform: scale(0.6); opacity: 0.55; }
    70%  { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
  }
.status-headline { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.25; }
.status-headline-sub { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.status-headline-block { flex: 1; min-width: 200px; }
.status-timestamp { margin-left: auto; text-align: right; font-size: 12px; color: var(--text-muted); letter-spacing: 0.02em; line-height: 1.5; }
.status-timestamp-label { text-transform: uppercase; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--forest); margin-bottom: 2px; }
.status-timestamp-value { font-variant-numeric: tabular-nums; font-size: 13px; color: var(--ink); font-weight: 600; }
.check-list { list-style: none; padding: 8px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 16px; padding: 18px 36px; border-bottom: 1px solid var(--grey-line); transition: background 0.2s ease; }
.check-list li:last-child { border-bottom: none; }
.check-list li:hover { background: #fafbf9; }
.check-mark { width: 32px; height: 32px; border-radius: 50%; background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--forest); }
.check-mark svg { width: 16px; height: 16px; }
.check-text { flex: 1; min-width: 0; }
.check-label { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.35; display: block; }
.check-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-top: 4px; }
.status-pill { background: var(--buy-green-soft); color: var(--buy-green-hover); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 12px; border: 1px solid rgba(92, 179, 119, 0.3); white-space: nowrap; flex-shrink: 0; margin-top: 2px; align-self: flex-start; }
.status-card-footer { padding: 22px 36px; background: #fafbfc; border-top: 1px solid var(--grey-line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.status-card-footer .auto-refresh { display: inline-flex; align-items: center; gap: 8px; }
.status-card-footer .auto-refresh svg { width: 14px; height: 14px; color: var(--forest); }
.status-card-footer a { color: var(--forest); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.status-card-footer a:hover { border-bottom-color: var(--forest); }
.explainer { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.explainer--single { grid-template-columns: 1fr; }
.explainer-card { padding: 28px 30px; border: 1px solid var(--grey-line); border-radius: 6px; background: var(--paper); }
.explainer-card h3 { font-size: 16px; font-weight: 700; color: var(--forest); margin-bottom: 10px; letter-spacing: -0.005em; }
.explainer-card p { font-size: 14.5px; line-height: 1.65; color: var(--ink); }
.explainer-card p + p { margin-top: 10px; }
.trust-strip { background: var(--paper); padding: 80px 48px 48px; }
.newsletter-input { padding: 12px 16px; border: 1px solid rgba(22, 46, 37, 0.2); background: var(--paper); font-family: inherit; font-size: 14px; border-radius: 3px; outline: none; width: 220px; transition: border-color 0.2s ease; }
.footer { background: var(--cream); padding: 48px 48px 40px; border-top: 1px solid rgba(22, 46, 37, 0.1); }
.app-badge { display: inline-block; text-decoration: none; transition: opacity 0.2s ease, transform 0.2s ease; line-height: 0; }
.app-badge:hover { opacity: 0.85; transform: translateY(-1px); }
.app-badge img { display: block; width: 160px; height: auto; border: 0; }
@media (max-width: 1100px) {
    .footer-inner { grid-template-columns: repeat(3, 1fr); }
  }
@media (max-width: 820px) {
    .explainer { grid-template-columns: 1fr; gap: 16px; }
  }
@media (max-width: 720px) {
    .top-bar, .nav-bar, .hero, .trust-strip, .footer { padding-left: 24px; padding-right: 24px; }
    .content { padding: 60px 24px; }
    .nav-bar { gap: 20px; flex-wrap: wrap; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .trust-inner { flex-direction: column; align-items: flex-start; }
    .newsletter { flex-wrap: wrap; }
    .hero-bg { display: none; }
    .hero-overlay { background: var(--forest); }
    .logo { height: 40px; }
    .status-card-header { padding: 24px 22px; }
    .status-timestamp { margin-left: 0; text-align: left; width: 100%; }
    .check-list li { padding: 14px 22px; gap: 12px; }
    .status-card-footer { padding: 18px 22px; }
    .status-pill { font-size: 10.5px; padding: 4px 10px; }
  }
  /* Zeer smalle schermen (<400px): [icoon] [tekst] [badge] passen niet naast elkaar →
     de omschrijving werd tot 1 woord per regel geknepen en de badge overlapte de titel.
     Herschik als grid: icoon links, tekst op volledige breedte, badge eronder. */
  @media (max-width: 400px) {
    .check-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 12px;
      row-gap: 10px;
      align-items: start;
      padding-left: 16px;
      padding-right: 16px;
    }
    .check-mark  { grid-column: 1; grid-row: 1; }
    .check-text  { grid-column: 2; grid-row: 1; }
    .status-pill { grid-column: 2; grid-row: 2; justify-self: start; margin-top: 0; }
  }
.top-actions { gap: 10px; }
.cta-strip-band { max-width: 990px; margin: -16px auto 88px; padding: 0 48px; }
@media (max-width: 720px) { .cta-strip-band { padding: 0 24px; } }

.nav-bar { margin-bottom: 40px; }
