/* ================================================================
   FONTS · self-hosted (afwijking #1, plan par. 4): identieke variabele
   woff2-bestanden als de Google Fonts CDN serveert (latin subset),
   zelfde unicode-range, dus identieke rendering en fallback.
   ================================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('../fonts/inter-tight-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

  /* ================================================================
     MYLIKES · DE RODE DRAAD
     Concept: één doorlopende rode groeilijn vertelt het verhaal,
     van belofte (01) tot start (05). Vijf actes, één lijn.
     ================================================================ */
  :root {
    --bg: #FBFAF6;
    --bg-warm: #F4EFE3;
    --ink: #0A0A0A;
    --ink-2: #2A2A28;
    --muted: #8A8A86;
    /* afwijking #4 (plan par. 4): donkerder grijs voor tekst onder 18px,
       4,67:1 op de warmste achtergrond (#F4EFE3), dus overal WCAG AA */
    --muted-sm: #6B6B66;
    --line: #ECECE7;
    --ink-rgb: 10, 10, 10;
    --bg-rgb: 251, 250, 246;
    --line-strong: rgba(var(--ink-rgb), 0.12);
    --paper: #FFFFFC;
    --red: #C8243A;
    --red-soft: rgba(200, 36, 58, 0.08);
    --gold: #D49E3C;
    --green: #16794B;
    --shadow-md: 0 12px 30px rgba(var(--ink-rgb), .08);
    --shadow-card: 0 24px 60px -18px rgba(var(--ink-rgb), .16);
    --ease: cubic-bezier(.2, .7, .2, 1);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; padding: 0;
    background: var(--bg); color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased; line-height: 1.55;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  svg { display: block; max-width: 100%; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 540px) { .container { padding: 0 22px; } }

  .reveal {
    opacity: 0; transform: translateY(16px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .09s; }
  .reveal.d2 { transition-delay: .18s; }
  .reveal.d3 { transition-delay: .27s; }

  /* ============ INTRO (1.1s, eenmalig per sessie) ============ */
  body.intro-hold { overflow: hidden; }
  .intro {
    position: fixed; inset: 0; z-index: 1000;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s var(--ease), visibility .5s;
  }
  .intro.gone { opacity: 0; visibility: hidden; }
  body.intro-skip .intro { display: none; }
  .intro-mark { text-align: center; }
  .intro-word {
    display: flex; align-items: center; gap: 13px;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.04em;
    opacity: 0;
    animation: introIn .55s var(--ease) .05s forwards;
  }
  .intro-word svg { width: .92em; height: .92em; fill: var(--red); }
  .intro-rule {
    height: 2px; background: var(--red); margin-top: 18px;
    transform: scaleX(0); transform-origin: left center;
    animation: introRule .6s var(--ease) .35s forwards;
  }
  @keyframes introIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  @keyframes introRule { to { transform: scaleX(1); } }

  /* ============ SPINE · leeslijn links (desktop) ============ */
  .spine {
    position: fixed; left: 26px; top: 78px; bottom: 24px; z-index: 90;
    width: 2px;
    display: flex; align-items: stretch;
  }
  .spine-rail { position: relative; width: 2px; background: rgba(var(--ink-rgb), 0.10); border-radius: 2px; }
  .spine-fill {
    position: absolute; top: 0; left: 0; width: 100%; height: 0%;
    background: var(--red); border-radius: 2px;
    will-change: height;
  }
  .spine-dots { position: absolute; inset: 0; }
  .spine-dot {
    position: absolute; left: 50%;
    width: 9px; height: 9px; margin-left: -4.5px; margin-top: -4.5px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid rgba(var(--ink-rgb), 0.35);
    cursor: pointer;
    transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  }
  .spine-dot:hover { transform: scale(1.35); }
  .spine-dot.passed { background: var(--red); border-color: var(--red); }
  .spine-dot .spine-label {
    position: absolute; left: 18px; top: 50%; transform: translateY(-50%) translateX(-6px);
    font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
    font-weight: 700; color: var(--ink);
    background: var(--paper); border: 1px solid var(--line);
    padding: 5px 10px; border-radius: 6px; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .spine-dot:hover .spine-label { opacity: 1; transform: translateY(-50%) translateX(0); }
  @media (max-width: 1099px) { .spine { display: none; } }

  /* mobiele scroll-progress (vervangt spine) */
  .mprogress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0%;
    background: var(--red); z-index: 200; pointer-events: none;
  }
  @media (min-width: 1100px) { .mprogress { display: none; } }

  /* ============ NAV ============ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; height: 62px; z-index: 100;
    background: rgba(var(--bg-rgb), 0.7);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    border-bottom: 1px solid transparent;
    transition: border-color .35s var(--ease), background .35s var(--ease);
  }
  .nav.scrolled { border-bottom-color: var(--line); background: rgba(var(--bg-rgb), 0.9); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
  .logo {
    display: flex; align-items: center; gap: 11px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800; font-size: 24px; letter-spacing: -0.035em;
  }
  .logo svg { width: 26px; height: 26px; fill: var(--red); }
  .nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
  .nav-links a { transition: color .25s var(--ease); }
  .nav-links a:hover { color: var(--ink); }
  @media (max-width: 1000px) { .nav-links { display: none; } }
  .nav-r { display: flex; align-items: center; gap: 8px; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: 999px; font-weight: 600; font-size: 14px;
    padding: 11px 22px; cursor: pointer; border: none; font-family: inherit;
    transition: transform .35s var(--ease), background .35s var(--ease),
                box-shadow .35s var(--ease), color .35s var(--ease);
    will-change: transform;
  }
  .btn-primary { background: var(--ink); color: #fff; }
  .btn-primary:hover { background: #242422; box-shadow: var(--shadow-md); }
  .btn-ghost { color: var(--ink); background: transparent; padding: 11px 14px; }
  .btn-ghost:hover { background: rgba(var(--ink-rgb), 0.05); }
  .btn-arrow { transition: transform .35s var(--ease); }
  .btn:hover .btn-arrow { transform: translateX(4px); }
  @media (max-width: 700px) { .nav .btn-ghost { display: none; } }

  /* ============ ACT-KOP PATROON ============ */
  .act { position: relative; padding: 140px 0 120px; overflow: hidden; }
  .act-ghost {
    position: absolute; top: 44px; right: -1.5vw;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(120px, 22vw, 320px);
    font-weight: 900; letter-spacing: -0.06em; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(var(--ink-rgb), 0.09);
    pointer-events: none; user-select: none;
  }
  .act-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
    font-weight: 700; color: var(--ink-2);
    margin-bottom: 26px;
  }
  .act-eyebrow .no { color: var(--red); font-family: 'Inter Tight', sans-serif; letter-spacing: .04em; }
  .act-eyebrow::after { content: ''; width: 44px; height: 1px; background: rgba(var(--ink-rgb), 0.25); }
  .act-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(32px, 4.4vw, 60px);
    line-height: 1; letter-spacing: -0.04em; font-weight: 900;
    margin: 0 0 18px; max-width: 800px;
  }
  .act-title em { font-style: normal; color: var(--muted); font-weight: 800; }
  .act-sub { font-size: 16.5px; color: var(--ink-2); line-height: 1.6; max-width: 480px; margin: 0; }
  @media (max-width: 700px) {
    .act { padding: 88px 0 76px; }
    .act-ghost { top: 28px; }
  }

  /* ============ ACT 01 · HERO ============ */
  .hero {
    min-height: 100vh; /* afwijking #5: fallback voor oudere iOS */
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 0 0;
  }
  /* flex-item met auto-marges krimpt naar content; expliciet stretchen */
  .hero > .container { width: 100%; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
    font-weight: 700; color: var(--ink-2); margin-bottom: 34px;
  }
  .hero-eyebrow .no { color: var(--red); font-family: 'Inter Tight', sans-serif; }
  .hero-eyebrow::after { content: ''; width: 44px; height: 1px; background: rgba(var(--ink-rgb), 0.25); }
  .hero-h1 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 900;
    font-size: clamp(44px, 7.4vw, 96px);
    line-height: .96; letter-spacing: -0.045em;
    margin: 0 0 50px;
  }
  /* clipbox ruim genoeg voor staartletters (j, g), marge compenseert de regelafstand */
  .hero-h1 .ln { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
  .hero-h1 .ln > span {
    display: inline-block; transform: translateY(112%);
    transition: transform .95s var(--ease);
  }
  .hero-h1 .ln.in > span { transform: translateY(0); }
  .hero-h1 .reddot { color: var(--red); }
  .hero-lede {
    font-size: clamp(16px, 1.6vw, 18px); line-height: 1.65; color: var(--ink-2);
    max-width: 560px; margin: 0 0 36px;
  }
  .hero-lede b { color: var(--ink); font-weight: 600; }
  .hero-cta-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
  .hero-note { font-size: 13px; color: var(--muted-sm); }
  .hero-note b { color: var(--ink-2); font-weight: 600; }

  /* hoofdstukken-index + scroll-cue onderin de hero */
  .hero-foot { width: 100%; margin-top: auto; position: relative; z-index: 2; }
  .hero-foot-inner {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 24px; padding-bottom: 26px;
  }
  .chapters-label {
    font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted-sm); font-weight: 700; margin-bottom: 12px;
  }
  .chapters-row { display: flex; gap: 22px; flex-wrap: wrap; }
  .chapter-link {
    font-size: 13px; color: var(--ink-2); font-weight: 600;
    display: inline-flex; gap: 7px; align-items: baseline;
    transition: color .25s var(--ease);
  }
  .chapter-link b {
    font-family: 'Inter Tight', sans-serif;
    color: var(--red); font-size: 11.5px; font-weight: 800;
  }
  .chapter-link:hover { color: var(--ink); }
  .scroll-cue {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted-sm); font-weight: 700; padding-bottom: 3px;
    flex-shrink: 0;
  }
  .cue-line { width: 1.5px; height: 28px; position: relative; overflow: hidden; background: rgba(var(--ink-rgb), 0.14); }
  .cue-line::after {
    content: ''; position: absolute; left: 0; top: -10px;
    width: 100%; height: 10px; background: var(--red);
    animation: cueDrop 1.9s var(--ease) infinite;
  }
  @keyframes cueDrop { 0% { top: -10px; } 72% { top: 28px; } 100% { top: 28px; } }
  @media (max-width: 700px) {
    .hero-foot-inner { flex-direction: column; align-items: flex-start; gap: 0; padding-bottom: 20px; }
    .scroll-cue { display: none; }
    .chapters-row { gap: 12px 18px; }
  }
  @media (max-width: 540px) {
    .hero-h1 { font-size: clamp(36px, 10.5vw, 64px); }
  }

  /* zwevende interactie-meldingen: likes, volgers, reacties */
  .float-note {
    position: absolute; z-index: 3;
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 999px; padding: 8px 15px 8px 9px;
    font-size: 12.5px; font-weight: 600; color: var(--ink);
    box-shadow: var(--shadow-md);
    pointer-events: none; white-space: nowrap;
    opacity: 0;
    animation: noteFloat 3.4s var(--ease) forwards;
  }
  .float-note .fn-ico {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--red-soft);
  }
  .float-note .fn-ico svg { width: 12px; height: 12px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .float-note .fn-ico.fn-heart svg { fill: var(--red); stroke: none; }
  .float-note b { color: var(--red); font-family: 'Inter Tight', sans-serif; font-weight: 800; }
  @keyframes noteFloat {
    0% { opacity: 0; transform: translateY(10px) scale(.96); }
    12% { opacity: 1; transform: translateY(0) scale(1); }
    76% { opacity: 1; transform: translateY(-28px) scale(1); }
    100% { opacity: 0; transform: translateY(-44px) scale(.98); }
  }

  /* de lijn die uit de punt van de H1 vertrekt */
  .hero-thread {
    position: absolute; right: 0; bottom: 9vh; bottom: 9svh;
    width: min(56vw, 760px); height: 34vh; height: 34svh;
    pointer-events: none;
    /* onzichtbaar tot JS de definitieve geometrie zet: voorkomt dat de
       herpositionering als layout shift telt (CLS); de lijn was visueel
       toch al verborgen via stroke-dashoffset */
    opacity: 0;
  }
  .hero-thread .t-line {
    stroke: var(--red); stroke-width: 2; fill: none; stroke-linecap: round;
    stroke-dasharray: 1400; stroke-dashoffset: 1400;
    transition: stroke-dashoffset 1.8s var(--ease) .55s;
  }
  .hero.thread-in .hero-thread .t-line { stroke-dashoffset: 0; }
  .hero-thread .t-dot { opacity: 0; transition: opacity .5s var(--ease) 2.2s; }
  .hero.thread-in .hero-thread .t-dot { opacity: 1; }
  @keyframes dotPulse {
    0% { r: 5; opacity: .9; }
    70% { r: 11; opacity: 0; }
    100% { r: 11; opacity: 0; }
  }
  .hero-thread .t-pulse { animation: dotPulse 2.4s var(--ease) 2.4s infinite; }
  @media (max-width: 900px) {
    .hero-thread { width: 78vw; height: 26vh; height: 26svh; bottom: 11vh; bottom: 11svh; opacity: .9; }
  }

  /* live-belt onderin hero */
  .belt {
    border-top: 1px solid var(--line-strong);
    background: rgba(var(--bg-rgb), 0.6);
    overflow: hidden; position: relative;
    padding: 16px 0;
    margin-top: auto;
  }
  .belt-track {
    display: flex; gap: 0; width: max-content;
    animation: beltMove 58s linear infinite;
  }
  .belt:hover .belt-track { animation-play-state: paused; }
  .belt-item {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13px; color: var(--ink-2); white-space: nowrap;
    padding: 0 26px;
  }
  .belt-item b { color: var(--ink); font-weight: 600; }
  .belt-item .live-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--green);
    box-shadow: 0 0 0 0 rgba(22,121,75,.5); animation: beltPulse 2.2s var(--ease) infinite;
  }
  .belt-item .stars { color: var(--gold); font-size: 11.5px; letter-spacing: 1px; }
  .belt-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(var(--ink-rgb), 0.25); align-self: center; flex-shrink: 0; }
  @keyframes beltMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes beltPulse {
    0% { box-shadow: 0 0 0 0 rgba(22,121,75,.5); }
    80% { box-shadow: 0 0 0 6px rgba(22,121,75,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,121,75,0); }
  }
  /* ============ ACT 02 · METHODE ============ */
  .method { background: var(--bg); }
  .track { position: relative; margin-top: 84px; }
  .track-svg { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 64px; }
  .track-svg .tk-line {
    stroke: var(--red); stroke-width: 2; fill: none; stroke-linecap: round;
    stroke-dasharray: 1300; stroke-dashoffset: 1300;
    transition: stroke-dashoffset 1.7s var(--ease) .2s;
  }
  .track.in .track-svg .tk-line { stroke-dashoffset: 0; }
  .track-svg .tk-node { fill: var(--red); opacity: 0; transition: opacity .4s var(--ease); }
  .track.in .tk-node.n1 { transition-delay: .45s; opacity: 1; }
  .track.in .tk-node.n2 { transition-delay: 1.05s; opacity: 1; }
  .track.in .tk-node.n3 { transition-delay: 1.7s; opacity: 1; }
  .track-chip {
    position: absolute; top: -8px;
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
    color: var(--ink); background: var(--paper);
    border: 1px solid var(--line); border-radius: 999px;
    padding: 6px 13px; box-shadow: var(--shadow-md);
    opacity: 0; transform: translateY(8px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .track-chip.c1 { left: 24%; transition-delay: .8s; }
  .track-chip.c2 { left: 58%; transition-delay: 1.4s; }
  .track.in .track-chip { opacity: 1; transform: none; }
  .stations {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; padding-top: 96px;
  }
  .stations .rail-fill { display: none; }
  .station { max-width: 360px; }
  .station-glyph { width: 64px; height: 64px; color: var(--ink); margin-bottom: 24px; opacity: .9; }
  .station-glyph svg { width: 100%; height: 100%; }
  .station h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px; letter-spacing: -0.025em; font-weight: 800;
    margin: 0 0 12px; line-height: 1.12;
  }
  .station p { font-size: 15px; color: var(--ink-2); line-height: 1.65; margin: 0 0 16px; }
  .station-meta { font-size: 12.5px; color: var(--muted-sm); font-weight: 600; letter-spacing: .04em; }
  .station-meta b { color: var(--red); font-family: 'Inter Tight', sans-serif; }

  /* mobiel: verticale rail */
  @media (max-width: 880px) {
    .track-svg, .track-chip { display: none; }
    .track { margin-top: 56px; }
    .stations { grid-template-columns: 1fr; gap: 0; padding-top: 0; position: relative; }
    .stations::before {
      content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px;
      width: 2px; background: rgba(var(--ink-rgb), 0.10); border-radius: 2px;
    }
    .stations .rail-fill {
      display: block;
      position: absolute; left: 5px; top: 8px; width: 2px; height: 0;
      background: var(--red); border-radius: 2px;
      transition: height 1.6s var(--ease) .2s;
    }
    .track.in .stations .rail-fill { height: calc(100% - 16px); }
    .station {
      position: relative; padding: 0 0 48px 38px; max-width: none;
    }
    .station::before {
      content: ''; position: absolute; left: 0; top: 6px;
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--red);
      border: 3px solid var(--bg);
    }
    .station:last-child { padding-bottom: 8px; }
  }

  /* mijlpalen-strip */
  .miles {
    margin-top: 88px; padding-top: 44px;
    border-top: 1px solid var(--line-strong);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .mile { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
  .mile b {
    display: flex; align-items: center; gap: 9px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 17px; font-weight: 800; letter-spacing: -0.015em;
    color: var(--ink); margin-bottom: 7px;
  }
  .mile b::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--red); flex-shrink: 0;
  }
  @media (max-width: 880px) { .miles { grid-template-columns: 1fr 1fr; margin-top: 56px; } }
  @media (max-width: 440px) { .miles { grid-template-columns: 1fr; } }

  /* ============ ACT 03 · BEWIJS ============ */
  .proof { background: var(--bg-warm); }
  .proof-curve {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none;
  }
  .proof-curve path {
    stroke: var(--red); stroke-width: 2; fill: none; opacity: .16;
    stroke-dasharray: 2200; stroke-dashoffset: 2200;
    transition: stroke-dashoffset 2.6s var(--ease) .2s;
  }
  .proof.in .proof-curve path { stroke-dashoffset: 0; }
  .counters {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin: 76px 0 90px;
    position: relative;
  }
  .counter { border-left: 2px solid var(--red); padding-left: 26px; }
  .counter-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(48px, 6.2vw, 92px);
    font-weight: 900; letter-spacing: -0.05em; line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .counter-num sup { font-size: .4em; font-weight: 800; top: -1em; position: relative; }
  .counter-num { display: flex; align-items: baseline; }
  .counter-num .mid {
    font-size: .17em; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--ink-2);
    margin: 0 .9em; align-self: center; position: relative; top: -0.2em;
  }
  .counter-lab { font-size: 14px; color: var(--ink-2); margin-top: 12px; max-width: 220px; line-height: 1.5; }
  @media (max-width: 880px) {
    .counters { grid-template-columns: 1fr; gap: 36px; margin: 56px 0 64px; }
    .counter-num { font-size: clamp(48px, 13vw, 72px); }
  }
  .proof-quote { max-width: 820px; position: relative; }
  .proof-quote .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 20px; display: block; }
  .proof-quote blockquote {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    letter-spacing: -0.025em; font-weight: 700; line-height: 1.28;
    margin: 0 0 24px;
  }
  .proof-quote figcaption { font-size: 14px; color: var(--ink-2); }
  .proof-quote figcaption b { font-weight: 600; }
  .proof-partners {
    margin-top: 64px; padding-top: 28px;
    border-top: 1px solid var(--line-strong);
    display: flex; gap: 14px 30px; flex-wrap: wrap; align-items: center;
  }
  .proof-partners .lab {
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted-sm); font-weight: 700; flex-basis: 100%;
  }
  .proof-partners span:not(.lab) {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700; font-size: 14px; color: var(--ink); opacity: .35;
    transition: opacity .3s var(--ease);
  }
  .proof-partners span:not(.lab):hover { opacity: 1; }

  /* ============ ACT 04 · VOOR WIE ============ */
  .who { background: var(--bg); }
  .who-rows { margin-top: 70px; border-top: 1px solid var(--line-strong); }
  .who-row {
    display: grid; grid-template-columns: 70px 1.1fr 1.6fr auto;
    align-items: center; gap: 28px;
    padding: 30px 18px 30px 8px;
    border-bottom: 1px solid var(--line-strong);
    transition: background .35s var(--ease), transform .35s var(--ease);
  }
  .who-row:hover { background: var(--paper); transform: translateX(6px); }
  .who-idx {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800; font-size: 14px; color: var(--red);
  }
  .who-seg {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800; font-size: clamp(19px, 2.2vw, 26px); letter-spacing: -0.02em;
  }
  .who-desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
  .who-stat {
    font-size: 13px; color: var(--muted-sm); text-align: right; white-space: nowrap;
  }
  .who-stat b {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: -0.015em;
    display: block;
  }
  @media (max-width: 880px) {
    .who-row { grid-template-columns: 44px 1fr; gap: 8px 16px; padding: 24px 8px; }
    .who-desc { grid-column: 2; }
    .who-stat { grid-column: 2; text-align: left; margin-top: 6px; white-space: normal; }
    .who-stat b { display: inline; margin-right: 8px; }
    .who-row:hover { transform: none; }
  }

  /* ============ ACT 05 · START (pricing + faq + slot) ============ */
  .start { background: var(--bg-warm); padding-bottom: 0; }
  .price-toggle-row { display: flex; align-items: center; gap: 16px; margin: 54px 0 44px; flex-wrap: wrap; }
  .price-toggle {
    display: inline-flex; background: rgba(var(--ink-rgb), 0.05);
    border-radius: 999px; padding: 4px; border: 1px solid var(--line);
  }
  .price-toggle button {
    border: none; background: transparent; cursor: pointer;
    font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink-2);
    padding: 9px 20px; border-radius: 999px;
    transition: background .35s var(--ease), color .35s var(--ease);
  }
  .price-toggle button.active { background: var(--ink); color: #fff; }
  .price-note { font-size: 13px; color: var(--green); font-weight: 600; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .price-card {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 22px; padding: 38px 34px 34px;
    display: flex; flex-direction: column; position: relative;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .price-card.featured { background: var(--ink); color: var(--bg); border-color: var(--ink); box-shadow: var(--shadow-card); }
  .price-badge {
    position: absolute; top: -13px; left: 34px;
    background: var(--red); color: #fff;
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
    padding: 6px 14px; border-radius: 999px;
  }
  .price-name { font-family: 'Inter Tight', sans-serif; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 5px; }
  .price-for { font-size: 13px; color: var(--muted-sm); margin-bottom: 26px; }
  .price-card.featured .price-for { color: rgba(var(--bg-rgb), 0.55); }
  .price-amount-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
  .price-amount {
    font-family: 'Inter Tight', sans-serif;
    font-size: 48px; font-weight: 900; letter-spacing: -0.045em; line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: opacity .3s var(--ease);
  }
  .price-amount.swap { opacity: 0; }
  .price-per { font-size: 13.5px; color: var(--muted-sm); }
  .price-card.featured .price-per { color: rgba(var(--bg-rgb), 0.55); }
  .price-save { font-size: 12.5px; color: var(--green); font-weight: 600; min-height: 18px; margin-bottom: 22px; }
  .price-card.featured .price-save { color: #7BC299; }
  .price-feats {
    list-style: none; padding: 0; margin: 0 0 30px;
    display: flex; flex-direction: column; gap: 12px;
    font-size: 14px; line-height: 1.5; color: var(--ink-2); flex: 1;
  }
  .price-card.featured .price-feats { color: rgba(var(--bg-rgb), 0.85); }
  .price-feats li { display: flex; gap: 11px; }
  .price-feats li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: currentColor; flex-shrink: 0; margin-top: 8px; opacity: .7;
  }
  .price-card .btn { justify-content: center; width: 100%; }
  .price-card.featured .btn-primary { background: var(--bg); color: var(--ink); }
  .price-card .btn-outline { background: transparent; border: 1px solid var(--line-strong); color: var(--ink); }
  .price-card .btn-outline:hover { background: rgba(var(--ink-rgb), 0.05); }
  .pricing-foot { margin: 34px 0 0; font-size: 13.5px; color: var(--muted-sm); }
  .pricing-foot b { color: var(--ink-2); font-weight: 600; }
  @media (max-width: 960px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    .price-card { padding: 32px 26px 28px; }
  }

  /* mini-faq */
  .mini-faq { max-width: 760px; margin-top: 92px; }
  .mini-faq h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 10px;
  }
  .faq-item { border-top: 1px solid var(--line-strong); }
  .faq-item:last-of-type { border-bottom: 1px solid var(--line-strong); }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink);
    text-align: left; padding: 21px 44px 21px 2px; position: relative;
  }
  .faq-icon {
    position: absolute; right: 4px; top: 50%;
    width: 26px; height: 26px; margin-top: -13px;
    border: 1px solid var(--line-strong); border-radius: 50%;
    transition: transform .45s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  }
  .faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--ink); left: 50%; top: 50%; }
  .faq-icon::before { width: 10px; height: 1.5px; margin: -0.75px 0 0 -5px; }
  .faq-icon::after { width: 1.5px; height: 10px; margin: -5px 0 0 -0.75px; transition: transform .45s var(--ease); }
  .faq-item.open .faq-icon { transform: rotate(180deg); background: var(--ink); border-color: var(--ink); }
  .faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--bg); }
  .faq-item.open .faq-icon::after { transform: scaleY(0); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
  .faq-a-inner { padding: 0 48px 22px 2px; font-size: 14.5px; line-height: 1.7; color: var(--ink-2); max-width: 640px; }

  /* slot: de lijn eindigt in het hart */
  .slot {
    margin-top: 110px;
    background: var(--ink); color: var(--bg);
    position: relative; overflow: hidden;
  }
  .slot-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap;
    padding: 64px 0;
  }
  .slot-line { position: absolute; left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; }
  .slot-line path {
    stroke: rgba(var(--bg-rgb), 0.25); stroke-width: 1.5; fill: none;
    stroke-dasharray: 1600; stroke-dashoffset: 1600;
    transition: stroke-dashoffset 2.2s var(--ease) .2s;
  }
  .slot.in .slot-line path { stroke-dashoffset: 0; }
  .slot-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(26px, 3.6vw, 46px);
    font-weight: 900; letter-spacing: -0.04em; line-height: 1.02;
    margin: 0; position: relative; z-index: 2;
    display: flex; align-items: center; gap: 18px;
  }
  .slot-title .slot-heart { width: .85em; height: .85em; flex-shrink: 0; }
  .slot-title .slot-heart path { fill: transparent; stroke: var(--red); stroke-width: 1.5; transition: fill .8s var(--ease) 1.6s; }
  .slot.in .slot-title .slot-heart path { fill: var(--red); }
  .slot-r { position: relative; z-index: 2; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .slot-note { font-size: 13px; color: rgba(var(--bg-rgb), 0.55); }
  .slot .btn-primary { background: var(--bg); color: var(--ink); padding: 14px 28px; font-size: 15px; }
  .slot .btn-primary:hover { background: #fff; }

  /* ============ FOOTER ============ */
  footer { padding: 48px 0 40px; background: var(--bg); border-top: 1px solid var(--line); }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
  .footer-logo { display: flex; align-items: center; gap: 8px; font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: -0.03em; }
  .footer-logo svg { width: 16px; height: 16px; fill: var(--red); }
  .footer-tag { font-size: 12.5px; color: var(--muted-sm); margin-top: 3px; }
  .footer-links { display: flex; gap: 24px; font-size: 13px; color: var(--ink-2); flex-wrap: wrap; }
  .footer-links a:hover { color: var(--ink); }
  .footer-base { font-size: 12px; color: var(--muted-sm); }

  /* ============ MOBIELE STICKY CTA ============ */
  .mcta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    background: var(--paper); border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(var(--ink-rgb), .08);
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform .45s var(--ease);
  }
  .mcta.show { transform: none; }
  .mcta-label { font-size: 13px; color: var(--ink-2); }
  .mcta-label b { color: var(--ink); font-weight: 700; }
  .mcta .btn { padding: 10px 18px; font-size: 13.5px; flex-shrink: 0; }
  @media (min-width: 760px) { .mcta { display: none; } }

  /* ============ REDUCED MOTION ============ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .reveal, .hero-h1 .ln > span { opacity: 1 !important; transform: none !important; }
    .hero-thread .t-line, .track-svg .tk-line, .proof-curve path, .slot-line path { stroke-dashoffset: 0 !important; }
    .hero-thread .t-dot, .track-svg .tk-node, .track-chip { opacity: 1 !important; transform: none !important; }
    .belt-track { animation: none !important; }
    .intro { display: none !important; }
    body.intro-hold { overflow: auto !important; }
    .slot-title .slot-heart path { fill: var(--red) !important; }
    .stations .rail-fill { height: calc(100% - 16px) !important; }
  }

  /* ============ FOCUS-STATES (afwijking #3, plan par. 4) ============ */
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .btn:focus-visible, .price-toggle button:focus-visible, .spine-dot:focus-visible { border-radius: 999px; }
  .slot a:focus-visible, .price-card.featured a:focus-visible { outline-color: var(--bg); }

  /* ============ SUBPAGINA'S (voorwaarden, privacy, 404 · afwijking #7) ============ */
  .page { padding: 130px 0 90px; }
  .page .container { max-width: 760px; }
  .page h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05; letter-spacing: -0.04em; font-weight: 900;
    margin: 0 0 12px;
  }
  .page-updated { font-size: 13px; color: var(--muted-sm); margin: 0 0 44px; }
  .page h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
    margin: 40px 0 10px;
  }
  .page p, .page li { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
  .page ul { padding-left: 22px; margin: 10px 0; }
  .page a { text-decoration: underline; text-underline-offset: 3px; }
  .placeholder {
    background: var(--red-soft); border: 1px dashed var(--red);
    border-radius: 6px; padding: 1px 8px;
    font-weight: 600; color: var(--ink); font-size: 0.92em;
  }
  .page-404 {
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
    padding: 100px 0 60px;
  }
  .page-404 .code {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(90px, 16vw, 180px); font-weight: 900;
    letter-spacing: -0.05em; line-height: 1; margin: 0 0 8px;
  }
  .page-404 .code .reddot { color: var(--red); }
  .page-404 h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(24px, 3.4vw, 38px); font-weight: 900;
    letter-spacing: -0.03em; margin: 0 0 14px;
  }
  .page-404 p { font-size: 15.5px; color: var(--ink-2); max-width: 460px; margin: 0 0 30px; }
