/*
 * Author: Jasper Baas
 * Version: 1.0
 * Copyright 2025 Stagevinden.nu
 */
  :root {
    --paper: #faf8f3;
    --paper-2: #ffffff;
    --paper-3: #efece0;
    --ink: #085050;
    --ink-2: #0e6363;
    --ink-muted: #6b7d7d;
    --line: #e4e0d1;
    --line-soft: #efeadb;
    --accent: #80c8c8;
    --accent-ink: #085050;
    --lilac: #d0d0e8;
    --ok: #157a35;
    --warn: #8a6110;
    --danger: #a12818;
    --max: 1360px;
    --font-display: 'Quicksand', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Quicksand', ui-sans-serif, system-ui, sans-serif;
    --font-serif: 'Quicksand', ui-sans-serif, system-ui, sans-serif;
    --font-mono: 'Quicksand', ui-sans-serif, system-ui;
    --r-xl: 28px; --r-lg: 20px; --r-md: 14px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100vw; }
  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    font-size: 17px; line-height: 1.4; letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  button { font-family: inherit; cursor: pointer; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); }
  .mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }
  .kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; color: var(--ink-muted); margin-bottom: 16px; font-weight: 600; }
  .ital { font-family: var(--font-display); font-style: normal; font-weight: 500; letter-spacing: 0; color: var(--ink-2); }

  /* NAV */
  .nav {
    position: sticky; top: 0; z-index: 40;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease, border-color .25s ease;
  }
  .nav[data-scrolled="true"] { box-shadow: 0 6px 20px -12px rgba(11,15,26,.12); border-bottom-color: transparent; }
  .nav-inner { display: flex; align-items: center; gap: 36px; padding: 20px 40px; max-width: var(--max); margin: 0 auto; position: relative; z-index: 50; background: var(--paper); }
  .logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
  .logo img { height: 38px; width: auto; display: block; }
  .logo-mark { width: 28px; height: 28px; border-radius: 8px; background: var(--ink); color: var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 12px; }
  .nav-links { display: flex; gap: 28px; margin-left: 8px; font-weight: 500; font-size: 15px; letter-spacing: 0; }
  .nav-links a { color: var(--ink-2); text-decoration: none; position: relative; padding: 6px 0; transition: color .15s; }
  .nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav .btn-lg { padding: 10px 18px; font-size: 13.5px; }
  .nav-spacer { flex: 1; }
  .nav-hamburger { display: none; background: transparent; border: 1px solid var(--line); width: 42px; height: 42px; border-radius: 12px; padding: 0; cursor: pointer; position: relative; flex-shrink: 0; }
  .nav-hamburger span { position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease; }
  .nav-hamburger span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
  .nav-hamburger span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
  header.nav[data-menu-open="true"] .nav-hamburger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  header.nav[data-menu-open="true"] .nav-hamburger span:nth-child(2) { opacity: 0; }
  header.nav[data-menu-open="true"] .nav-hamburger span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
  .nav-drawer { display: none; position: fixed; inset: 0; height: 100vh; height: 100dvh; background: var(--paper); padding: calc(79px + 8px) clamp(20px, 4vw, 36px) clamp(24px, 5vw, 32px); flex-direction: column; gap: 0; z-index: 39; overflow-y: auto; opacity: 1 !important; }
  .nav-drawer .nav-drawer-links { display: flex; flex-direction: column; gap: 0; }
  .nav-drawer a { display: flex; align-items: baseline; gap: 18px; padding: 22px 4px; font-size: clamp(26px, 6.5vw, 34px); font-weight: 500; font-family: var(--font-display); letter-spacing: -0.025em; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-soft); line-height: 1.1; transition: color .2s, transform .3s cubic-bezier(.2,.7,.2,1); }
  .nav-drawer a:hover, .nav-drawer a:focus-visible { color: var(--ink-2); transform: translateX(4px); }
  .nav-drawer .nav-drawer-links a:last-child { border-bottom: none; }
  .nav-drawer .nav-drawer-num { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--ink-muted); text-transform: uppercase; flex-shrink: 0; width: 28px; }
  .nav-drawer .nav-drawer-footer { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 20px; }
  .nav-drawer .nav-drawer-cta { display: flex; justify-content: center; align-items: center; gap: 12px; padding: 28px 32px; border-radius: 18px; font-size: 22px; font-weight: 600; letter-spacing: -0.015em; border-bottom: none; color: #fff; box-shadow: 0 16px 36px -12px rgba(8,80,80,.45), 0 2px 6px rgba(8,80,80,.15); transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s; }
  .nav-drawer .nav-drawer-cta:hover, .nav-drawer .nav-drawer-cta:focus-visible { transform: translateY(-1px); color: #fff; box-shadow: 0 20px 44px -12px rgba(8,80,80,.55), 0 2px 6px rgba(8,80,80,.2); }
  .nav-drawer .nav-drawer-cta:active { transform: translateY(0); }
  header.nav[data-menu-open="true"] { position: fixed; top: 0; left: 0; right: 0; }
  header.nav[data-menu-open="true"] .nav-drawer { display: flex; animation: sv-drawer-in .25s cubic-bezier(.2,.7,.2,1) both; }
  @keyframes sv-drawer-in { 0% { transform: translateY(-6px); } 100% { transform: translateY(0); } }

  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 10px; border: 1px solid var(--line); background: var(--paper-2); color: var(--ink); font-weight: 500; font-size: 14px; text-decoration: none; transition: background .15s, border-color .15s; }
  .btn:hover { background: var(--paper-3); border-color: #d5cfba; }
  .btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
  .btn-primary:hover { background: var(--ink-2); border-color: var(--ink-2); }
  .btn-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-weight: 600; }
  .btn-accent:hover { background: var(--accent); filter: brightness(.96); }
  .btn-lg { padding: 14px 22px; font-size: 15px; }

  /* HERO */
  .hero { position: relative; padding: clamp(24px, 3vw, 40px) 0 clamp(32px, 3vw, 56px); min-height: calc(100vh - 79px); display: flex; align-items: center; }
  .hero .wrap { width: 100%; position: relative; }
  .hero-scroll-hint { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: var(--paper-2); color: var(--ink-2); text-decoration: none; animation: sv-scroll-hint 2.2s ease-in-out infinite; transition: background .2s, color .2s, border-color .2s; }
  .hero-scroll-hint:hover { color: var(--ink); background: var(--paper-3); border-color: #d5cfba; animation-play-state: paused; }
  @keyframes sv-scroll-hint { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; }
  .hero-text { display: flex; flex-direction: column; align-items: flex-start; }
  .eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 5px 16px 5px 5px; border-radius: 10px; background: var(--paper-2); border: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); white-space: nowrap; margin-bottom: 28px; }
  .eyebrow .chip { background: var(--ink); color: #fff; padding: 4px 10px; border-radius: 6px; font-weight: 700; letter-spacing: .04em; }

  h1.display { font-family: var(--font-display); font-weight: 800; font-size: clamp(44px, 5vw, 76px); line-height: 1.05; letter-spacing: -0.035em; margin: 0 0 28px; color: #105358; text-wrap: balance; }

  .hero p.lede { font-size: 19px; color: #4a6e6b; max-width: 540px; margin: 0 0 36px; line-height: 1.55; text-wrap: pretty; font-weight: 400; }
  .hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
  .hero-cta-aside { font-size: 14px; color: var(--ink-2); font-style: italic; letter-spacing: 0; }

  .hero-footer { margin-top: 32px; }
  .hero-footer-col { display: flex; flex-direction: column; gap: 14px; }
  .hero-footer-claim { font-size: 16px; color: var(--ink-2); margin: 0; line-height: 1.5; letter-spacing: 0; max-width: 520px; }
  .hero-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
  .hero-logo-item { font-size: 13.5px; font-weight: 600; color: var(--ink-muted); letter-spacing: -0.005em; opacity: .75; }
  .hero-checks { display: flex; flex-wrap: wrap; gap: 12px 28px; }
  .hero-check { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; color: var(--ink); font-weight: 500; }
  .hero-check svg { flex-shrink: 0; color: var(--ink-2); }

  .hero-trust { display: none; }
  .hero-stats { display: none; }

  .hero-meta { display: flex; gap: 14px; margin-top: 32px; align-items: center; }
  .hero-meta .avatars { display: flex; }
  .hero-meta .avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--paper); object-fit: cover; margin-left: -8px; }
  .hero-meta .avatars img:first-child { margin-left: 0; }
  .hero-meta .txt { font-size: 13px; color: var(--ink-muted); }
  .hero-meta .txt strong { color: var(--ink); font-weight: 600; }
  .hero-tagline { display: flex; gap: 16px; align-items: stretch; margin-top: 36px; max-width: 480px; }
  .hero-tagline-mark { width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 35%, transparent) 100%); flex-shrink: 0; }
  .hero-tagline-content { display: flex; flex-direction: column; gap: 6px; }
  .hero-tagline-main { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); letter-spacing: -0.015em; line-height: 1.3; }
  .hero-tagline-main em { font-family: var(--font-serif); font-style: normal; font-weight: 500; color: var(--ink-2); letter-spacing: -0.005em; font-size: 1.05em; }
  .hero-tagline-sub { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-muted); font-weight: 500; }

  .hero-photo { position: relative; width: 100%; max-width: 620px; margin-left: auto; margin-right: 0; }
  .hero-photo .hero-photo-card { position: relative; width: 100%; height: 440px; border-radius: 24px; overflow: hidden; background: linear-gradient(to bottom right, #dde7ef, #b6c6d6); display: flex; align-items: flex-end; justify-content: center; }
  .hero-photo img { position: relative; z-index: 1; width: auto; max-width: none; height: 100%; max-height: 100%; object-fit: contain; object-position: center bottom; display: block; transform: scale(1.1) translateY(8%); transform-origin: center bottom; }
  @media (min-width: 1280px) {
    .hero-photo .hero-photo-card { height: 500px; }
    .hero-photo img { transform: scale(1.15) translateY(8%); }
  }
  .hero-photo .photo-badge { position: relative; margin: -48px 0 0 32px; max-width: 360px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 24px 22px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 24px 48px -16px rgba(11,15,26,.22), 0 4px 12px rgba(11,15,26,.08); z-index: 2; }
  .hero-photo .photo-badge .badge-mark { font-family: var(--font-serif); font-style: normal; font-weight: 500; font-size: 42px; line-height: .6; color: var(--ink); margin: 2px 0 -4px; display: block; }
  .hero-photo .photo-badge .quote { font-family: var(--font-serif); font-style: normal; font-weight: 500; font-size: 16.5px; color: var(--ink); line-height: 1.4; margin: 0; padding: 0; border: 0; letter-spacing: -0.005em; text-wrap: balance; }
  .hero-photo .photo-badge .badge-author { display: flex; flex-direction: column; gap: 2px; margin-top: 2px; }
  .hero-photo .photo-badge .badge-name { font-weight: 600; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
  .hero-photo .photo-badge .badge-role { font-size: 13px; color: var(--ink-muted); letter-spacing: -0.005em; }
  @keyframes sv-quote-in {
    0% { opacity: 0; transform: translateY(8px); filter: blur(2px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

  /* SECTIONS */
  section.section { padding: clamp(64px, 8vw, 96px) 0; position: relative; }
  .section.sect-tight { padding-top: 32px; }
  .section.sect-loose { padding-top: 160px; }
  .section.sect-flush-bottom { padding-bottom: 0; }
  .section.sect-flush-top { padding-top: 0; }
  
  .flow-anchor { position: relative; }
  .flow-anchor::before { content: ""; position: absolute; left: clamp(20px, 4vw, 48px); top: -48px; width: 1px; height: 96px; background: linear-gradient(to bottom, transparent 0%, var(--accent) 50%, transparent 100%); opacity: .5; }
  
  .section-head .kicker.with-dot { position: relative; padding-left: 18px; }
  .section-head .kicker.with-dot::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
  section.section.sect-white { background: var(--paper-2); }
  section.section.sect-dark { background: var(--ink); color: #f2efe6; }
  section.section.sect-dark h2, section.section.sect-dark h3 { color: #fff; }
  section.section.sect-dark .kicker { color: rgba(242,239,230,.6); }
  section.section.sect-dark .section-head p { color: rgba(242,239,230,.72); }
  section.section.sect-dark .testim { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: #f2efe6; }
  section.section.sect-dark .testim blockquote { color: #fff; }
  section.section.sect-dark .testim blockquote::before { background: var(--accent); }
  section.section.sect-dark .testim .who-name { color: #fff; }
  section.section.sect-dark .testim .who-role { color: rgba(242,239,230,.6); }
  section.section.sect-dark .testim.featured { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
  section.section.sect-dark .testim.featured blockquote { color: var(--accent-ink); }
  section.section.sect-dark .testim.featured blockquote::before { background: var(--accent-ink); }
  section.section.sect-dark .testim.featured .who-name { color: var(--accent-ink); }
  section.section.sect-dark .testim.featured .who-role { color: rgba(8,80,80,.7); }
  .section-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; margin-bottom: 48px; align-items: end; }
  .section-head h2 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; margin: 0; text-wrap: balance; color: var(--ink); }
  .section-head p { max-width: 440px; color: var(--ink-muted); margin: 0; font-size: 17.5px; line-height: 1.55; letter-spacing: -0.005em; }

  /* LOGOS */
  .logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; background: var(--paper-2); }
  .logos-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; align-items: center; max-width: var(--max); margin: 0 auto; padding: 0 40px; }
  .logo-item { font-weight: 600; font-size: 15px; color: var(--ink-muted); text-align: center; letter-spacing: -0.01em; white-space: nowrap; }
  .logo-item .mark { display: inline-block; width: 6px; height: 6px; border-radius: 2px; background: var(--ink-muted); margin-right: 8px; vertical-align: middle; }

  /* STAT BRIDGE */
  section.stat-bridge { padding: 80px 0; background: var(--paper); }
  .stat-bridge-inner { display: flex; align-items: center; justify-content: center; gap: clamp(32px, 5vw, 80px); flex-wrap: wrap; }
  .stat-bridge-item { text-align: center; display: flex; flex-direction: column; gap: 10px; }
  .stat-bridge-num { font-family: var(--font-serif); font-style: normal; font-weight: 500; font-size: clamp(44px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
  .stat-bridge-num .plus, .stat-bridge-num .suf { color: var(--accent-ink); opacity: .7; font-size: .7em; padding-left: 2px; }
  .stat-bridge-lbl { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: var(--ink-muted); font-weight: 500; }
  .stat-bridge-div { width: 1px; height: 48px; background: var(--line); display: block; }
  @media (max-width: 720px) {
    section.stat-bridge { padding: 56px 0; }
    .stat-bridge-div { display: none; }
    .stat-bridge-inner { gap: 32px; }
  }

  /* QUOTE BRIDGE */
  section.quote-bridge { padding: 96px 0; background: var(--paper); }
  .quote-bridge .quote-bridge-rule { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .quote-bridge-line { display: block; height: 1px; background: var(--line); width: 100%; }
  .quote-bridge-text { margin: 0; font-family: var(--font-serif); font-style: normal; font-weight: 500; font-size: clamp(36px, 4vw, 54px); line-height: 1.18; letter-spacing: -0.02em; color: var(--ink-2); text-align: center; text-wrap: balance; max-width: 900px; }
  .quote-bridge-text .ital { color: var(--ink); }
  @media (max-width: 720px) {
    section.quote-bridge { padding: 0; }
    .quote-bridge .quote-bridge-rule { grid-template-columns: 1fr; gap: 0; }
    .quote-bridge-line { display: none; }
    .quote-bridge-text { position: relative; padding-top: 18px; }
    .quote-bridge-text::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 32px; height: 2px; background: var(--accent); border-radius: 2px; }
  }

  /* DESKTOP MOCKUP */
  .desktop-section { padding-bottom: clamp(64px, 8vw, 96px); }
  .desktop-frame { background: var(--paper-2); border-radius: 14px; box-shadow: 0 30px 60px rgba(12,15,34,.12), 0 0 0 1px var(--line); overflow: hidden; max-width: 1280px; margin: 56px auto 0; }
  .desktop-frame-image { background: var(--paper-2); }
  .desktop-frame-image img { display: block; width: 100%; height: auto; }

  /* DESKTOP SPLIT */
  .ds-headline { max-width: 880px; margin: 0 0 clamp(32px, 3.5vw, 48px); }
  .ds-heading { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.2; letter-spacing: -0.025em; margin: 12px 0 0; color: var(--ink); text-wrap: balance; }
  .ds-subheading { font-size: clamp(15px, 1.3vw, 17px); color: var(--ink-muted); line-height: 1.5; margin: 14px 0 0; max-width: 640px; text-wrap: balance; }
  .ds-snippet { display: flex; flex-direction: column; gap: clamp(40px, 4vw, 64px); }
  .ds-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.4vw, 48px); counter-reset: feat; }
  .ds-image-wrap { position: relative; }
  .ds-image-card { position: relative; background: #fdf6e3; border-radius: 24px; padding: clamp(20px, 2vw, 32px); display: flex; align-items: center; justify-content: center; }
  .ds-image-card img { display: block; width: 100%; height: auto; border-radius: 12px; box-shadow: 0 22px 44px -20px rgba(8,80,80,.25), 0 8px 20px -10px rgba(11,15,26,.15); }
  .ds-notif { position: absolute; left: 50%; bottom: clamp(20px, 2.4vw, 32px); transform: translateX(-30%); display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; border-radius: 999px; padding: 10px 18px 10px 12px; box-shadow: 0 14px 32px -12px rgba(8,80,80,.4); white-space: nowrap; }
  .ds-notif-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.15); color: #ffc94d; display: grid; place-items: center; flex-shrink: 0; }
  .ds-notif-text { font-size: 14px; font-weight: 500; }
  .ds-notif-text strong { font-weight: 700; }
  .ds-feat { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 22px 0 0; background: transparent; border: 0; border-top: 1px solid var(--ink); box-shadow: none; counter-increment: feat; transition: none; }
  .ds-feat::before { content: counter(feat, decimal-leading-zero); font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--ink-muted); letter-spacing: .14em; text-transform: uppercase; }
  .ds-feat:hover { transform: none; }
  .ds-feat-icon { display: none; }
  .ds-feat-body { display: flex; flex-direction: column; gap: 10px; }
  .ds-feat-title { margin: 0; font-family: var(--font-display); font-size: clamp(20px, 1.6vw, 24px); font-weight: 500; letter-spacing: -0.025em; color: var(--ink); line-height: 1.15; text-wrap: balance; }
  .ds-feat-desc { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-muted); letter-spacing: -0.005em; max-width: 30ch; }
  .desktop-chrome { background: var(--paper-3); padding: 11px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
  .desktop-chrome .dots { display: flex; gap: 6px; }
  .desktop-chrome .dots span { width: 10px; height: 10px; border-radius: 50%; }
  .desktop-chrome .dots span:nth-child(1) { background: #ff6259; }
  .desktop-chrome .dots span:nth-child(2) { background: #ffbe2e; }
  .desktop-chrome .dots span:nth-child(3) { background: #28c93f; }
  .desktop-chrome .url { flex: 1; background: #fff; border-radius: 6px; padding: 5px 12px; font-family: var(--font-mono); font-size: 11px; color: #7a7f98; text-align: center; max-width: 320px; margin: 0 auto; }
  /* DASHBOARD MOCKUP */
  .dashb-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 560px; background: #f5f6f8; }
  .dashb-side { background: #fff; border-right: 1px solid #e5e7eb; padding: 20px 14px; display: flex; flex-direction: column; gap: 2px; }
  .dashb-side-brand { display: flex; align-items: center; gap: 9px; padding: 6px 10px 18px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #1a2230; letter-spacing: -0.015em; }
  .dashb-side-brand .mk { width: 22px; height: 22px; border-radius: 6px; background: #1a2230; color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 800; }
  .dashb-side-group { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; padding: 14px 10px 6px; font-weight: 600; }
  .dashb-side-item { padding: 9px 11px; border-radius: 8px; font-size: 13px; display: flex; align-items: center; gap: 10px; color: #4b5563; cursor: default; transition: background .15s, color .15s; }
  .dashb-side-item:hover { background: #f5f6f8; color: #1a2230; }
  .dashb-side-item .ic { width: 14px; opacity: .65; text-align: center; font-size: 12px; }
  .dashb-side-item .count { margin-left: auto; font-size: 11px; background: #f0f1f4; color: #6b7280; padding: 2px 7px; border-radius: 999px; font-weight: 500; }
  .dashb-side-item.active { background: #1a2230; color: #fff; }
  .dashb-side-item.active .ic { opacity: .8; }
  .dashb-side-item.active .count { background: rgba(255,255,255,.16); color: #fff; }
  .dashb { background: #f5f6f8; padding: clamp(24px, 2.4vw, 36px); min-height: 560px; }
  .dashb-head { margin-bottom: clamp(20px, 2vw, 28px); }
  .dashb-head h4 { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.025em; line-height: 1.1; margin: 0; color: #1a2230; }
  .dashb-head p { margin: 4px 0 0; font-size: 13px; color: #6b7280; }
  .dashb-filter { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: clamp(20px, 2vw, 28px); margin-bottom: clamp(16px, 1.6vw, 22px); }
  .dashb-filter-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #1a2230; margin-bottom: 16px; letter-spacing: -0.015em; }
  .dashb-filter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 18px; align-items: end; }
  .dashb-filter-grid > .dashb-field:nth-child(1) { grid-column: 1 / 3; }
  .dashb-filter-grid > .dashb-field:nth-child(2) { grid-column: 3 / 4; }
  .dashb-filter-grid > .dashb-clear { grid-column: 4 / 5; }
  .dashb-field { display: flex; flex-direction: column; gap: 6px; }
  .dashb-field label { font-size: 12px; color: #1a2230; font-weight: 600; }
  .dashb-field input, .dashb-select { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 9px 12px; font-size: 13px; color: #1a2230; font-family: inherit; min-height: 36px; display: flex; align-items: center; justify-content: space-between; }
  .dashb-field input::placeholder { color: #9ca3af; }
  .dashb-select .chev { color: #9ca3af; font-size: 11px; }
  .dashb-clear { background: #9ca3af; color: #fff; border: 0; border-radius: 8px; padding: 0 18px; font-size: 12px; font-weight: 600; font-family: inherit; min-height: 36px; align-self: end; cursor: default; }
  .dashb-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: clamp(16px, 1.6vw, 22px); }
  .dashb-stat { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; }
  .dashb-stat-icon { width: 42px; height: 42px; border-radius: 50%; background: #f0f1f4; color: #6b7280; display: grid; place-items: center; flex-shrink: 0; }
  .dashb-stat-body .lbl { font-size: 12px; color: #6b7280; font-weight: 500; }
  .dashb-stat-body .val { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #1a2230; letter-spacing: -0.025em; line-height: 1.1; margin-top: 2px; }
  .dashb-table { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
  .dashb-tr { display: grid; grid-template-columns: 1.6fr 1.2fr 70px 70px 1fr 1.2fr 1.3fr; padding: 14px 20px; border-bottom: 1px solid #f0f1f4; font-size: 13px; color: #1a2230; align-items: center; gap: 12px; }
  .dashb-tr:last-child { border-bottom: none; }
  .dashb-th { background: #fafafb; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; padding: 11px 20px; font-weight: 600; }
  .dashb-student { display: flex; align-items: center; gap: 12px; }
  .dashb-student .av { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .dashb-student .av img { width: 100%; height: 100%; object-fit: cover; }
  .dashb-student .name, .dashb-stage .name { font-weight: 600; color: #1a2230; }
  .dashb-student .sub, .dashb-stage .sub { font-size: 11.5px; color: #6b7280; margin-top: 1px; }
  .dashb-stage .sub.muted { color: #9ca3af; font-style: italic; }
  .dashb-pill { display: inline-flex; padding: 5px 11px; border-radius: 999px; background: #f0f1f4; color: #1a2230; font-size: 11px; font-weight: 500; }
  .dashb-progress { display: flex; align-items: center; gap: 10px; }
  .dashb-progress .bar { flex: 1; height: 5px; background: #e5e7eb; border-radius: 10px; overflow: hidden; }
  .dashb-progress .bar i { display: block; height: 100%; background: #1a2230; transition: width 1.2s cubic-bezier(.2,.7,.2,1); }
  .dashb-progress .pct { font-size: 12px; font-weight: 600; color: #1a2230; font-variant-numeric: tabular-nums; }
  .cell { color: #1a2230; }

  /* STEPS */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

  /* TIMELINE */
  .timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 44px; }
  .timeline-rail { position: absolute; left: 32px; right: 32px; top: 62px; height: 1px; background: linear-gradient(90deg, transparent, var(--line) 8%, var(--line) 92%, transparent); z-index: 0; }
  .tl-step { position: relative; display: flex; flex-direction: column; gap: 22px; z-index: 1; }
  .tl-node { position: relative; width: 36px; height: 36px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--ink); letter-spacing: .04em; }
  .tl-node-ring { position: absolute; inset: -6px; border-radius: 50%; border: 1px dashed var(--line); opacity: 0; transition: opacity .3s; }
  .tl-step:hover .tl-node-ring { opacity: 1; }
  .tl-step:hover .tl-node { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
  .tl-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .25s; }
  .tl-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -26px rgba(8,80,80,.22); border-color: var(--ink); }
  .tl-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 2px; }
  .tl-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); flex-shrink: 0; }
  .tl-card:hover .tl-icon { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transition: background .2s, border-color .2s, color .2s; }
  .tl-meta { font-size: 10px; color: var(--ink-muted); white-space: nowrap; }
  .tl-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin: 2px 0 0; color: var(--ink); }
  .tl-card p { margin: 0; color: var(--ink-muted); font-size: 14.5px; line-height: 1.5; }
  .step { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 240px; transition: border-color .2s; }
  .step:hover { border-color: var(--ink); }
  .step .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-muted); }
  .step .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); }
  .step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin: 0; line-height: 1.15; color: var(--ink); }
  .step p { margin: 0; color: var(--ink-muted); font-size: 14.5px; line-height: 1.5; }

  /* AUDIENCE */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .split-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .split-1 { display: grid; grid-template-columns: minmax(0, 480px); justify-content: center; gap: 16px; }
  [data-panel][hidden] { display: none; }
  @keyframes sv-card-fly-in { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: none; } }
  [data-panel].panel-enter .audience { animation: sv-card-fly-in .45s cubic-bezier(.2,.7,.2,1) both; }
  [data-panel].panel-enter .audience:nth-child(2) { animation-delay: 70ms; }
  [data-panel].panel-enter .audience:nth-child(3) { animation-delay: 140ms; }
  [data-panel].panel-enter .audience:nth-child(4) { animation-delay: 210ms; }

  /* AUDIENCE TABS */
  .audience-head { text-align: center; max-width: 880px; margin: 0 auto clamp(28px, 3vw, 40px); }
  .audience-head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin: 0; color: var(--ink); text-wrap: balance; }
  .audience-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 0 0 clamp(32px, 4vw, 48px); }
  .audience-tab { background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 14px 28px; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--ink); cursor: pointer; transition: background .15s, color .15s, border-color .15s, transform .15s; }
  .audience-tab:hover { background: var(--paper-3); }
  .audience-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
  .audience { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; }
  .audience .image { position: relative; height: 220px; overflow: hidden; }
  .audience .image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
  .audience .image img[alt="Coaching en co-creatie"] { object-position: center 60%; }
  .audience .image .pill-top { position: absolute; top: 16px; left: 16px; background: rgba(12,15,34,.9); color: #fff; backdrop-filter: blur(8px); padding: 6px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
  .audience .body { padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
  .audience h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; margin: 0; text-wrap: balance; color: var(--ink); }
  .audience ul { list-style: none; padding: 0; margin: 4px 0 auto; }
  .audience li { display: flex; gap: 10px; padding: 9px 0; font-size: 14.5px; color: var(--ink-2); align-items: start; border-bottom: 1px solid var(--line-soft); }
  .audience li:last-child { border-bottom: none; }
  .audience li::before { content: "✓"; color: var(--accent-ink); font-weight: 700; font-size: 12px; background: var(--accent); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }

  /* DECANEN FEATURE BLOCK */
  .decanen-block { background: var(--ink); color: #f2efe6; border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; min-height: 520px; }
  .decanen-block .text { padding: 56px 52px; display: flex; flex-direction: column; justify-content: space-between; }
  .decanen-block h3 { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 20px; text-wrap: balance; color: #fff; }
  .decanen-block h3 .ital { color: var(--accent); }
  .decanen-block p { color: rgba(242,239,230,.75); margin: 0 0 26px; max-width: 440px; }
  .decanen-benefits { display: flex; flex-direction: column; gap: 0; margin: 0 0 28px; }
  .decanen-benefit { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); align-items: start; }
  .decanen-benefit:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
  .decanen-benefit .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; font-weight: 700; font-size: 12px; margin-top: 2px; }
  .decanen-benefit strong { font-weight: 600; color: #fff; }
  .decanen-benefit span { color: rgba(242,239,230,.7); font-size: 14px; display: block; margin-top: 2px; }
  .decanen-block .image { position: relative; overflow: hidden; }
  .decanen-block .image img { width: 100%; height: 100%; object-fit: cover; }

  /* INTEGRATIONS BLOCK */
  .integrations-block { background: var(--ink); color: #f2efe6; border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1.35fr 1fr; min-height: 520px; position: relative; }
  .integrations-block::before { content: ""; position: absolute; width: 440px; height: 440px; background: var(--accent); right: -140px; top: -160px; border-radius: 50%; opacity: .14; filter: blur(40px); pointer-events: none; }
  .integrations-block .text { padding: 56px 52px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; position: relative; }
  .integrations-block h3 { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 20px; text-wrap: balance; color: #fff; }
  .integrations-block h3 .ital { color: var(--accent); }
  .integrations-block p { color: rgba(242,239,230,.75); margin: 0 0 28px; max-width: 480px; }
  .integration-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .integration-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; transition: background .2s, border-color .2s; }
  .integration-card:hover { background: rgba(255,255,255,.07); border-color: rgba(128,200,200,.35); }
  .integration-card .int-logo { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
  .integration-card .int-desc { font-size: 12.5px; color: rgba(242,239,230,.65); }
  .integration-card .int-check { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-top: 6px; display: flex; align-items: center; gap: 4px; }
  .int-side { background: rgba(0,0,0,.18); border-left: 1px solid rgba(255,255,255,.08); padding: 56px 44px; display: flex; flex-direction: column; justify-content: center; gap: 36px; position: relative; }
  .int-setup { display: flex; flex-direction: column; gap: 4px; }
  .int-setup-num { font-family: var(--font-display); font-size: clamp(36px, 3.8vw, 52px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }
  .int-setup-lbl { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(242,239,230,.7); }

  /* STATS */
  .stats-panel { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 48px; display: grid; grid-template-columns: 1.1fr 2fr; gap: 56px; align-items: center; }
  .stats-panel .left h2 { font-family: var(--font-display); font-size: 40px; font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; margin: 0 0 16px; text-wrap: balance; color: var(--ink); }
  .stats-panel .left p { color: var(--ink-muted); margin: 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
  .stat-cell { background: var(--paper-2); padding: 28px; }
  .stat-cell .big { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
  .stat-cell .big em { font-style: normal; color: var(--ink); background: var(--accent); padding: 0 6px; border-radius: 6px; }
  .stat-cell .lbl { margin-top: 10px; font-size: 13px; color: var(--ink-muted); line-height: 1.4; }

  /* MATCHFIT */
  .matchfit { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 560px; color: #fff; background: var(--ink); }
  .matchfit-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .matchfit-overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(8,80,80,.94) 0%, rgba(8,80,80,.7) 42%, rgba(8,80,80,.15) 82%); z-index: 1; }
  .matchfit-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; padding: 56px 56px 40px; min-height: 560px; max-width: 640px; gap: 40px; }
  .matchfit-content h2 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 56px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; margin: 12px 0 20px; text-wrap: balance; color: #fff; }
  .matchfit-content h2 .ital { color: var(--accent); }
  .matchfit-content p { color: rgba(242,239,230,.78); margin: 0; max-width: 480px; font-size: 17.5px; line-height: 1.55; letter-spacing: -0.005em; }
  .matchfit-features { display: flex; flex-direction: column; gap: 0; }
  .mf-item { border-top: 1px solid rgba(255,255,255,.22); padding: 18px 0; font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
  .mf-item:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }

  /* TESTIM */
  .testim-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* QUOTE BAND */
  .quote-band { position: relative; width: 100%; max-width: calc(var(--max) - 24px); margin: 96px auto; min-height: 560px; display: grid; grid-template-columns: 62% 38%; overflow: hidden; border-radius: 48px 8px 48px 8px; box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 30px 80px -40px rgba(8,80,80,.35), 0 12px 24px -12px rgba(11,15,26,.15); }
  .quote-band.quote-band-mirror { grid-template-columns: 38% 62%; border-radius: 8px 48px 8px 48px; }
  .qb-panel { position: relative; background: var(--ink); color: #f2efe6; padding: clamp(56px, 7vw, 96px) clamp(44px, 5vw, 72px) clamp(48px, 6vw, 72px); display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
  .qb-photo { position: relative; overflow: hidden; background: #0a0a12; }
  .qb-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 30%; transform: scale(1.22); transform-origin: 58% 30%; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
  .quote-band:hover .qb-photo img { transform: scale(1.27); }
  .qb-kicker { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(242,239,230,.55); }
  .qb-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 2.8vw, 40px); line-height: 1.22; letter-spacing: -0.025em; margin: 24px 0 0; color: #fff; text-wrap: balance; }
  .qb-quote .qb-mark { font-family: var(--font-serif); font-size: 64px; line-height: 0; color: var(--accent); display: inline-block; vertical-align: -22px; margin-right: 6px; margin-left: -4px; font-style: normal; font-weight: 500; }
  .qb-quote .ital { color: var(--accent); font-family: var(--font-serif); font-style: normal; font-weight: 500; letter-spacing: -0.01em; }
  .qb-footer { padding-top: 28px; border-top: 1px solid rgba(242,239,230,.15); }
  .qb-author .qb-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.015em; color: #fff; }
  .qb-author .qb-role { font-size: 13.5px; color: rgba(242,239,230,.6); margin-top: 3px; }
  .qb-badge { position: absolute; right: clamp(20px, 3vw, 40px); bottom: clamp(20px, 3vw, 40px); display: flex; align-items: center; gap: 20px; padding: 16px 22px; background: rgba(11,15,26,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 16px; box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 10px 30px -10px rgba(0,0,0,.5); z-index: 3; }
  .qb-badge .qb-stat { display: flex; flex-direction: column; gap: 4px; }
  .qb-badge .qb-num { font-family: var(--font-display); font-size: 26px; font-weight: 600; line-height: 1; letter-spacing: -0.03em; color: #fff; }
  .qb-badge .qb-lbl { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(242,239,230,.65); font-weight: 500; }
  .qb-badge .qb-div { width: 1px; height: 32px; background: rgba(242,239,230,.2); }
  .quote-photo-badge .qb-stat { display: flex; flex-direction: column; gap: 2px; min-width: 100px; }
  .quote-photo-badge .qb-num { font-family: var(--font-display); font-size: 30px; font-weight: 600; line-height: 1; letter-spacing: -0.03em; color: var(--accent); }
  .quote-photo-badge .qb-lbl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.65); margin-top: 5px; }
  .quote-photo-badge .qb-divider { width: 1px; height: 36px; background: rgba(255,255,255,.18); }
  .testim { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px; display: flex; flex-direction: column; gap: 22px; }
  .testim.featured { background: var(--ink); color: #f2efe6; border-color: var(--ink); }
  .testim.featured blockquote { color: #fff; }
  .testim.featured .who-name { color: #fff; }
  .testim.featured .who-role { color: rgba(242,239,230,.6); }
  .testim blockquote { font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.4; letter-spacing: -0.02em; margin: 0; text-wrap: pretty; color: var(--ink); }
  .testim blockquote::before { content: ""; display: inline-block; width: 24px; height: 2px; background: var(--ink); vertical-align: middle; margin-right: 10px; border-radius: 2px; transform: translateY(-4px); }
  .testim.featured blockquote::before { background: var(--accent); }
  .who { display: flex; gap: 12px; align-items: center; margin-top: auto; }
  .avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .avatar img { width: 100%; height: 100%; object-fit: cover; }
  .who-name { font-weight: 600; font-size: 14px; color: var(--ink); }
  .who-role { font-size: 12.5px; color: var(--ink-muted); }

  /* FAQ */
  .faq-list { display: flex; flex-direction: column; gap: 0; margin: 0; border-top: 1px solid var(--line); }
  .faq-foot { margin-top: 24px; display: flex; align-items: center; gap: 16px; font-size: 14.5px; color: var(--ink-muted); flex-wrap: wrap; }
  .faq-foot a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; transition: border-color .2s, color .2s; }
  .faq-foot a:hover { color: var(--ink-2); border-bottom-color: var(--ink); }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q { width: 100%; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: transparent; border: 0; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); letter-spacing: -0.02em; }
  .faq-q .plus { width: 32px; height: 32px; border-radius: 50%; background: var(--paper-3); display: block; position: relative; flex-shrink: 0; font-size: 0; color: transparent; transition: background .45s cubic-bezier(.2,.7,.2,1), transform .45s cubic-bezier(.2,.7,.2,1); }
  .faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--ink); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .45s cubic-bezier(.2,.7,.2,1), background .35s ease; }
  .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq-item[data-open="true"] .plus { background: var(--accent); transform: rotate(180deg); }
  .faq-item[data-open="true"] .plus::before, .faq-item[data-open="true"] .plus::after { background: var(--accent-ink); transform: translate(-50%, -50%) rotate(0deg); }
  .faq-a { display: grid; grid-template-rows: 0fr; padding: 0 4px; transition: grid-template-rows .5s cubic-bezier(.2,.7,.2,1), padding .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease; opacity: 0; color: var(--ink-muted); font-size: 15px; }
  .faq-a > p { overflow: hidden; min-height: 0; }
  .faq-item[data-open="true"] .faq-a { grid-template-rows: 1fr; padding: 0 4px 24px; opacity: 1; }

  /* SIGNUP */
  /* DEMO CTA */
  .demo-cta { background: var(--ink); color: #f2efe6; border-radius: var(--r-xl); padding: clamp(40px, 5vw, 72px) clamp(40px, 5vw, 72px); display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 4vw, 64px); align-items: center; position: relative; overflow: hidden; box-shadow: 0 30px 80px -40px rgba(8,80,80,.4), 0 12px 24px -12px rgba(11,15,26,.18); margin: 0 calc(-1 * clamp(20px, 3vw, 40px)); }
  .demo-cta-text, .demo-cta-photo { position: relative; z-index: 1; }
  .demo-cta h2 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 16px; color: #fff; text-wrap: balance; }
  .demo-cta h2 .ital { color: var(--accent); }
  .demo-cta > .demo-cta-text p { margin: 0; color: rgba(242,239,230,.78); font-size: 16.5px; line-height: 1.55; max-width: 440px; }
  .demo-checks { list-style: none; padding: 0; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
  .demo-checks li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: #fff; font-weight: 500; }
  .demo-checks svg { color: var(--accent); flex-shrink: 0; }
  .demo-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .demo-cta-row .btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
  .demo-cta-row .btn-primary:hover { filter: brightness(1.05); }
  .demo-cta-aside { font-size: 14.5px; color: rgba(242,239,230,.7); }
  .demo-cta-photo { position: relative; align-self: end; margin-top: 24px; }
  .demo-cta-photo img { display: block; width: 100%; height: auto; border-radius: var(--r-xl); box-shadow: 0 22px 48px -24px rgba(0,0,0,.45), 0 0 0 6px rgba(255,255,255,.08); }

  /* FOOT */
  footer.site-foot { border-top: 1px solid var(--line); background: var(--paper-3); color: var(--ink-2); padding: 112px 0 56px; margin-top: 0; }
  .foot-cta { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 64px 64px 68px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: end; position: relative; overflow: hidden; margin: -80px 0 80px; }
  .foot-cta::after { content: ""; position: absolute; width: 520px; height: 520px; background: var(--accent); right: -180px; bottom: -260px; border-radius: 50%; opacity: .2; filter: blur(40px); pointer-events: none; }
  .foot-cta > * { position: relative; }
  .foot-cta .kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
  .foot-cta h2 { font-family: var(--font-display); font-size: clamp(40px, 5.4vw, 68px); font-weight: 600; letter-spacing: -0.04em; line-height: .98; margin: 0 0 18px; color: #fff; text-wrap: balance; max-width: 760px; }
  .foot-cta h2 .ital { color: var(--accent); font-family: var(--font-serif); font-style: normal; font-weight: 500; letter-spacing: -0.02em; }
  .foot-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; max-width: 460px; line-height: 1.5; }
  .foot-cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; min-width: 200px; }
  .foot-cta-actions .btn { justify-content: center; }
  .foot-cta-ghost { background: transparent !important; border-color: rgba(255,255,255,.22) !important; color: #fff !important; }
  .foot-cta-ghost:hover { background: rgba(255,255,255,.06) !important; border-color: rgba(255,255,255,.4) !important; }
  .foot-about { margin-bottom: clamp(48px, 5vw, 72px); }
  .foot-about p { color: var(--ink-muted); font-size: 15.5px; line-height: 1.55; max-width: 360px; margin: 0; }
  .foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(32px, 4vw, 56px); }
  .foot-col h5 { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin: 0 0 18px; color: var(--ink); letter-spacing: -0.005em; text-transform: none; }
  .foot-col a { display: block; text-decoration: none; color: var(--ink-muted); padding: 6px 0; font-size: 14.5px; transition: color .15s; }
  .foot-col a:hover { color: var(--ink); }
  .foot-bottom { margin-top: clamp(56px, 5vw, 80px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13.5px; color: var(--ink-muted); flex-wrap: wrap; }
  .foot-bottom a { color: var(--ink-muted); text-decoration: none; transition: color .15s; }
  .foot-bottom a:hover { color: var(--ink); }
  .foot-product { text-align: center; margin-top: clamp(32px, 3vw, 48px); font-size: 13.5px; color: var(--ink-muted); }
  .foot-product a { color: var(--ink); text-decoration: none; transition: opacity .15s; }
  .foot-product a:hover { opacity: .7; }

  @media (max-width: 980px) {
    .hero-scroll-hint { display: none; }
    .hero-inner { display: flex; flex-direction: column-reverse; gap: 28px; }
    .hero-photo { width: 100%; max-width: 560px; margin: 0 auto; }
    .hero-photo .hero-photo-card { height: 400px; border-radius: 22px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
    .hero-photo img { width: auto; max-width: none; height: 100%; max-height: 100%; object-fit: contain; object-position: center bottom; display: block; position: relative; transform: scale(1.05) translateY(4%); transform-origin: center bottom; z-index: 1; }
    .hero-footer { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; padding-top: 28px; }
    .split, .signup, .demo-cta, .section-head, .stats-panel, .decanen-block, .impact-strip { grid-template-columns: 1fr; gap: 32px; }
    .demo-cta-photo { max-width: 560px; margin: 0 auto; }
    .impact-pillars { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ds-features { grid-template-columns: 1fr; gap: 24px; }
    .ds-image-wrap { max-width: 720px; margin: 0 auto; width: 100%; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .timeline-rail { display: none; }
    .jobs, .testim-row, .split-3, .split { grid-template-columns: 1fr; }
    /* Testimonials hidden on mobile (plus the tussenregel that introduces it) */
    #testimonials { display: none; }
    section.quote-bridge:has(+ #testimonials) { display: none; }
    .qb-quote { font-size: clamp(22px, 5.5vw, 28px); }
    .qb-badge { right: 16px; bottom: 16px; padding: 12px 16px; gap: 14px; }
    .qb-badge .qb-num { font-size: 20px; }
    .matchfit-content { padding: 40px 28px 32px; max-width: none; min-height: 520px; }
    .matchfit-overlay { background: linear-gradient(180deg, rgba(8,80,80,.5) 0%, rgba(8,80,80,.94) 70%); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .logos-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-cta { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px 48px; margin: -60px 0 56px; }
    .foot-cta-actions { flex-direction: row; flex-wrap: wrap; }
    .nav-links { display: none; }
    .nav-desktop-cta { display: none; }
    .nav-hamburger { display: inline-block; }
    .decanen-block .text { padding: 40px 32px; }
    .integrations-block { grid-template-columns: 1fr; }
    .integrations-block .text { padding: 40px 32px; }
    .int-side { padding: 32px; flex-direction: row; flex-wrap: wrap; gap: 24px; border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
    .integration-grid { grid-template-columns: 1fr 1fr; }
    .demo-cta { padding: 40px 28px; }
    .stats-panel { padding: 28px; }
    .dashb-shell { grid-template-columns: 1fr; }
    .dashb-side { display: none; }
    .dashb { padding: 20px; }
    .dashb-filter-grid { grid-template-columns: repeat(2, 1fr); }
    .dashb-filter-grid > .dashb-field:nth-child(1),
    .dashb-filter-grid > .dashb-field:nth-child(2),
    .dashb-filter-grid > .dashb-field:nth-child(4),
    .dashb-filter-grid > .dashb-field:nth-child(5),
    .dashb-filter-grid > .dashb-field:nth-child(6),
    .dashb-filter-grid > .dashb-field:nth-child(7) { grid-column: auto; max-width: none; }
    .dashb-clear { grid-column: 1 / -1; }
    .dashb-stats { grid-template-columns: 1fr; }
    .dashb-tr { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; font-size: 12px; padding: 12px 14px; }
    .dashb-tr > div:nth-child(3), .dashb-tr > div:nth-child(4), .dashb-tr > div:nth-child(6) { display: none; }
  }

  @media (max-width: 720px) {
    .ds-image-wrap { display: none; }

    .audience-tabs {
      flex-wrap: nowrap;
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 4px 16px;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      scroll-padding: 16px;
    }
    .audience-tabs::-webkit-scrollbar { display: none; }
    .audience-tab { flex-shrink: 0; white-space: nowrap; }
  }

  @media (max-width: 640px) {
    /* Layout & spacing */
    .quote-band { margin: 48px 0; border-radius: 18px; }
    .qb-photo { width: 56px; height: 56px; margin: 24px 0 0 22px; }
    .qb-panel { padding: 16px 22px 24px; gap: 14px; }
    .matchfit { min-height: 460px; border-radius: 20px; }
    .matchfit-content { padding: 32px 24px 28px; gap: 28px; min-height: 460px; }
    .matchfit-content h2 { font-size: clamp(26px, 8vw, 40px); }

    /* Typography */
    h1.display { font-size: clamp(36px, 10vw, 54px); letter-spacing: -0.035em; }
    h2, .section-head h2 { font-size: clamp(28px, 8vw, 42px) !important; }
    .section-head { gap: 20px; margin-bottom: 32px; }
    .section-head p { font-size: 15.5px; }

    /* Hero */
    .hero { padding: 16px 0 32px; display: block; min-height: 0; }
    .hero .wrap { width: 100%; }
    .hero-inner { gap: 28px; }
    .hero-text { align-items: stretch; }
    .hero-text .eyebrow { display: none; }
    h1.display { margin-bottom: 14px; }
    .hero-text .lede { font-size: 16px; margin-bottom: 24px; max-width: none; }
    .hero-footer { display: none; }
    .hero-photo .photo-badge { display: none; }
    .hero-photo { border-radius: 18px; }
    .hero-ctas { display: flex; flex-direction: column; width: 100%; align-items: stretch; gap: 12px; }
    .hero-ctas .btn-primary { width: 100%; justify-content: center; padding: 15px 22px; font-size: 15px; font-weight: 600; border-radius: 14px; }
    .hero-ctas .btn:not(.btn-primary) { display: none; }
    .hero-cta-aside { text-align: center; }
    .hero-trust { display: none; }
    .hero-photo .photo-badge { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; border-radius: 12px; }
    .hero-photo .photo-badge .quote { font-size: 15px; padding-left: 12px; }

    /* Demo CTA */
    .demo-cta { padding: 32px 22px; border-radius: 18px; gap: 24px; }
    .demo-cta h2 { font-size: clamp(24px, 7.5vw, 32px); margin-bottom: 10px; }
    .demo-cta > .demo-cta-text p { font-size: 15px; max-width: none; }
    .demo-checks { margin: 22px 0 24px; gap: 12px; }
    .demo-checks li { font-size: 15px; }
    .demo-cta-row { gap: 14px; }
    .demo-cta-row .btn { width: 100%; }

    /* FAQ */
    .faq-q { font-size: 16px; padding: 18px 2px; gap: 12px; }
    .faq-q .plus { width: 28px; height: 28px; }
    .faq-foot { font-size: 13.5px; }

    /* Nav */
    .nav-inner { padding: 12px clamp(20px, 3vw, 40px); gap: 12px; }
    .nav .btn-lg { padding: 9px 14px; font-size: 12.5px; }

    /* Desktop mockup scaling */
    .desktop-frame { border-radius: 10px; margin-top: 32px; }
    .desktop-chrome { padding: 8px 10px; }
    .desktop-chrome .url { font-size: 10px; max-width: none; }
    .dashb { padding: 16px; }
    .dashb-filter { padding: 16px; }
    .dashb-filter-grid { grid-template-columns: 1fr; }
    .dashb-filter-grid > .dashb-field { grid-column: 1 / -1 !important; max-width: none !important; }
    .dashb-clear { grid-column: 1 / -1; }
    .dashb-stats { grid-template-columns: 1fr; }
    .dashb-th { display: none; }
    .dashb-tr { grid-template-columns: 1fr; padding: 12px 14px; gap: 8px; }
    .dashb-tr > div:nth-child(n+3) { display: none; }
    .dashb-tr > div:nth-child(7) { display: block; }
    .dashb-stage { grid-column: 1 / -1; padding-left: 44px; font-size: 11.5px; }

    /* Footer */
    .foot-grid { grid-template-columns: 1fr; gap: 32px; }
    .foot-about p { max-width: none; }
    .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 48px; }
    .foot-cta { padding: 32px 24px; margin: -48px 0 40px; }
    .foot-cta h2 { font-size: clamp(28px, 8vw, 44px); }

    /* AudienceSplit cards */
    .split-3 { gap: 12px; }

    /* Logos, stats */
    .logos-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stats-grid { gap: 12px; }

    /* Tussenregels weggehaald op mobiel — voelen contrived op kleine schermen */
    section.quote-bridge { display: none; }
    .section-head { margin-bottom: 28px; }
  }

  @media (max-width: 420px) {
    h1.display { font-size: clamp(32px, 11vw, 46px); }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .matchfit-content h2 { font-size: clamp(24px, 9vw, 36px); }
    .qb-quote { font-size: clamp(20px, 6vw, 26px) !important; }
    .nav .logo img { height: 28px; }
    .nav-drawer { padding-top: calc(69px + 8px); }
  }

  #tweaks-panel { position: fixed; right: 18px; bottom: 18px; z-index: 100; background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px; width: 300px; box-shadow: 0 20px 40px rgba(12,15,34,.15); display: none; overflow: hidden; }
  #tweaks-panel.open { display: block; }
  .tk-head { padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
  .tk-head h6 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; }
  .tk-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 16px; max-height: 60vh; overflow: auto; }
  .tk-row label { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; color: var(--ink-muted); }
  .tk-row .swatches { display: flex; gap: 8px; flex-wrap: wrap; }
  .tk-row .swatch { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line); cursor: pointer; }
  .tk-row .swatch[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--ink) inset; transform: scale(.94); }

  .hero-photo .photo-badge .quote { border-left-color: var(--accent) !important; }
  .matchfit-tag .tag-dot { box-shadow: 0 0 0 4px rgba(128,200,200,.25) !important; }

  /* MOTION */
  @keyframes sv-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  @keyframes sv-float-lg { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(-2deg); } }
  @keyframes sv-pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(21,122,53,.45); } 70% { box-shadow: 0 0 0 10px rgba(21,122,53,0); } 100% { box-shadow: 0 0 0 0 rgba(21,122,53,0); } }
  @keyframes sv-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes sv-shine { 0% { transform: translateX(-120%) skewX(-20deg); } 100% { transform: translateX(260%) skewX(-20deg); } }
  @keyframes sv-ticker { 0%, 16% { transform: translateY(0); opacity: 1; } 20%, 33% { transform: translateY(-100%); opacity: 1; } 37%, 50% { transform: translateY(-200%); opacity: 1; } 54%, 67% { transform: translateY(-300%); opacity: 1; } 71%, 84% { transform: translateY(-400%); opacity: 1; } 88%, 100% { transform: translateY(-500%); opacity: 1; } }
  @keyframes sv-orbit { from { transform: rotate(0) translateX(14px) rotate(0); } to { transform: rotate(360deg) translateX(14px) rotate(-360deg); } }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  }

  /* NAV */
  .logo img { transition: transform .25s ease; }
  .logo:hover img { transform: scale(1.03); }

  /* HERO */
  .hero-inner { position: relative; }
  .hero-photo { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .hero-photo .parallax-img { transition: transform .8s cubic-bezier(.2,.7,.2,1); will-change: transform; }
  .hero-photo .photo-badge { animation: sv-float 6s ease-in-out infinite; }
  .hero-float-chip { position: absolute; background: var(--paper-2); border: 1px solid var(--line); box-shadow: 0 14px 30px -16px rgba(8,80,80,.35); border-radius: 14px; padding: 10px 14px 10px 12px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); z-index: 3; }
  .hero-float-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: sv-pulse-dot 1.8s ease-out infinite; }
  .hero-float-chip strong { font-weight: 600; }
  .hero-float-chip small { color: var(--ink-muted); font-size: 11.5px; display: block; margin-top: 1px; font-family: var(--font-mono); letter-spacing: .04em; text-transform: uppercase; }
  .hero-float-chip.match-chip { top: 20px; right: 20px; animation: sv-float 7s ease-in-out infinite; }
  .hero-float-chip.rating-chip { top: 20px; left: 20px; animation: sv-float 5.5s ease-in-out infinite .5s; }
  .hero-float-chip.rating-chip .stars { color: #f0b500; letter-spacing: -1px; }

  .hero-meta .counter { display: inline-block; min-width: 2.8ch; font-variant-numeric: tabular-nums; }

  .btn-primary { position: relative; overflow: hidden; }
  .btn-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%); transform: translateX(-120%) skewX(-20deg); pointer-events: none; }
  .btn-primary:hover::after { animation: sv-shine 1.1s ease; }

  .btn-accent { transition: transform .18s ease, box-shadow .25s ease, filter .15s ease; }
  .btn-accent:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(8,80,80,.4); }

  /* LOGOS */
  .logos { overflow: hidden; }
  .logos-marquee { display: flex; gap: 48px; align-items: center; width: max-content; animation: sv-marquee 32s linear infinite; }
  .logos.paused .logos-marquee { animation-play-state: paused; }
  .logo-item { white-space: nowrap; opacity: .75; transition: opacity .2s, color .2s; }
  .logo-item:hover { opacity: 1; color: var(--ink); }

  /* STEPS */
  .step { transition: transform .25s cubic-bezier(.2,.7,.2,1), border-color .25s, box-shadow .3s; }
  .step:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(8,80,80,.25); border-color: var(--ink); }
  .step .icon { transition: transform .3s, background .25s, border-color .25s; }
  .step:hover .icon { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: rotate(-4deg) scale(1.05); }

  /* STATS count-up */
  .stat-cell { transition: background .3s, transform .3s; }
  .stat-cell:hover { background: var(--paper); }
  .stat-cell .big .num { font-variant-numeric: tabular-nums; }

  /* TESTIM */
  .testim { transition: transform .3s, box-shadow .35s, border-color .3s; }
  .testim:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -24px rgba(8,80,80,.22); }

  /* FAQ */
  .faq-q { cursor: pointer; transition: color .2s; }
  .faq-q:hover { color: var(--ink-2); }
  .faq-q:hover .plus { background: var(--line); }
  .faq-item[data-open="true"] .faq-q:hover .plus { background: var(--accent); filter: brightness(1.05); }

  .mf-item { transition: padding .25s, background .25s; cursor: default; }
  .mf-item:hover { padding-left: 12px; padding-right: 12px; background: rgba(255,255,255,.04); border-radius: 8px; }

  .audience .image img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
  .audience:hover .image img { transform: scale(1.04); }

  /* SCROLL REVEAL */
  html.js-on .hero-text > *,
  html.js-on .hero-photo,
  html.js-on .hero-photo-card,
  html.js-on .section-head,
  html.js-on .ds-headline,
  html.js-on .ds-image-card,
  html.js-on .ds-feat,
  html.js-on .audience,
  html.js-on .audience-tabs,
  html.js-on .matchfit,
  html.js-on .matchfit-top,
  html.js-on .matchfit-features,
  html.js-on .quote-bridge,
  html.js-on .quote-band,
  html.js-on .qb-panel,
  html.js-on .qb-photo,
  html.js-on .faq-item,
  html.js-on .demo-cta-text,
  html.js-on .demo-cta-photo,
  html.js-on .info-card,
  html.js-on .contact-form-card,
  html.js-on .ka-header,
  html.js-on .ka-hero-image,
  html.js-on .ka-title,
  html.js-on .ka-lede,
  html.js-on .ka-takeaways,
  html.js-on .ka-sources,
  html.js-on .ka-author,
  html.js-on .ka-byline,
  html.js-on .ka-meta,
  html.js-on .ka-related-head,
  html.js-on .ka-related-card,
  html.js-on .ag-card,
  html.js-on .ag-split-text,
  html.js-on .ag-split-image,
  html.js-on .ag-pair,
  html.js-on .ag-issue,
  html.js-on .ag-icon-item,
  html.js-on .foot-about,
  html.js-on .foot-col,
  html.js-on .foot-bottom,
  html.js-on .foot-product {
    opacity: 0;
    transform: translateY(24px); /* default = up */
    transition: opacity .7s ease-out, transform .7s ease-out, filter .7s ease-out;
    will-change: opacity, transform;
  }

  html.js-on .hero-text > *,
  html.js-on .ag-split:not(.ag-split-mirror) .ag-split-text,
  html.js-on .ag-split.ag-split-mirror .ag-split-image,
  html.js-on .matchfit-top,
  html.js-on .matchfit-features,
  html.js-on .qb-panel {
    transform: translateX(-28px);
  }

  html.js-on .hero-photo,
  html.js-on .hero-photo-card,
  html.js-on .ag-split:not(.ag-split-mirror) .ag-split-image,
  html.js-on .ag-split.ag-split-mirror .ag-split-text,
  html.js-on .demo-cta-photo,
  html.js-on .qb-photo {
    transform: translateX(28px);
  }

  html.js-on .contact-form-card,
  html.js-on .info-card,
  html.js-on .ka-related-card,
  html.js-on .ag-card,
  html.js-on .faq-item {
    transform: scale(.95);
  }

  html.js-on .ka-title,
  html.js-on .ka-lede {
    filter: blur(7px);
    transform: translateY(10px);
  }

  html.js-on .is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  [data-reveal-delay="80"]  { transition-delay:  80ms; }
  [data-reveal-delay="160"] { transition-delay: 160ms; }
  [data-reveal-delay="240"] { transition-delay: 240ms; }
  [data-reveal-delay="320"] { transition-delay: 320ms; }
  [data-reveal-delay="400"] { transition-delay: 400ms; }
  [data-reveal-delay="480"] { transition-delay: 480ms; }

  @media (prefers-reduced-motion: reduce) {
    html.js-on .hero-text > *,
    html.js-on .hero-photo,
    html.js-on .hero-photo-card,
    html.js-on .section-head,
    html.js-on .ds-headline,
    html.js-on .ds-image-card,
    html.js-on .ds-feat,
    html.js-on .audience,
    html.js-on .audience-tabs,
    html.js-on .matchfit,
    html.js-on .matchfit-top,
    html.js-on .matchfit-features,
    html.js-on .quote-bridge,
    html.js-on .quote-band,
    html.js-on .qb-panel,
    html.js-on .qb-photo,
    html.js-on .faq-item,
    html.js-on .demo-cta-text,
    html.js-on .demo-cta-photo,
    html.js-on .info-card,
    html.js-on .contact-form-card,
    html.js-on .ka-header,
    html.js-on .ka-hero-image,
    html.js-on .ka-title,
    html.js-on .ka-lede,
    html.js-on .ka-takeaways,
    html.js-on .ka-sources,
    html.js-on .ka-author,
    html.js-on .ka-byline,
    html.js-on .ka-meta,
    html.js-on .ka-related-head,
    html.js-on .ka-related-card,
    html.js-on .ag-card,
    html.js-on .ag-split-text,
    html.js-on .ag-split-image,
    html.js-on .ag-pair,
    html.js-on .ag-issue,
    html.js-on .ag-icon-item,
    html.js-on .foot-about,
    html.js-on .foot-col,
    html.js-on .foot-bottom,
    html.js-on .foot-product {
      opacity: 1; transform: none; filter: none; transition: none;
    }
  }
