@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Spline+Sans+Mono:wght@400;500;600;700&display=swap');

    /* ================================================
       AI READY PRO — COMP A: "HET DOSSIER"
       A light editorial instrument. The page reads like
       the audit worksheet itself: ruled lines, measured
       numbers, numbered findings, marginal mono labels.
       Brand kept: Manrope · teal #0F766E · warm cream.
       Mono (Spline Sans Mono) is MEANINGFUL only — used
       for measurements, scores, dossier metadata, indices.
       ================================================ */
    :root {
      /* surfaces — warm paper base kept from brand */
      --paper:      #FAF9F6;
      --surface:    #FFFFFF;
      --panel:      #F1EEE6;   /* slightly inked worksheet panel */

      /* ink ramp — all AA-verified on paper/white */
      --ink:        #14201D;   /* near-black headings */
      --body:       #2E3A36;   /* body copy */
      --muted:      #566159;   /* secondary, ≥4.5:1 on paper */

      /* brand teal — structural accent: rules, key marks */
      --teal:       #0F766E;
      --teal-700:   #0C5E57;
      --teal-900:   #0A332F;   /* deep teal committed block */
      --teal-050:   rgba(15,118,110,0.055);
      --teal-120:   rgba(15,118,110,0.13);

      /* amber — measurement highlight: scores / "Middel" / hours-back */
      --amber:      #B45309;
      --amber-700:  #92400E;
      --amber-050:  rgba(180,83,9,0.085);
      --amber-120:  rgba(180,83,9,0.18);

      /* warm hairlines — the worksheet motif, used liberally */
      --line:       #E3DDCF;
      --line-2:     #D4CDBA;

      --shadow-sm: 0 1px 2px rgba(20,32,29,0.05);
      --shadow-md: 0 16px 44px -26px rgba(20,32,29,0.30), 0 4px 12px -8px rgba(20,32,29,0.10);
      --shadow-lg: 0 38px 84px -42px rgba(10,51,47,0.42), 0 8px 24px -16px rgba(20,32,29,0.16);

      --r-sm: 6px; --r-md: 10px; --r-lg: 16px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);

      /* semantic z-scale */
      --z-base: 1; --z-raised: 10; --z-sticky: 100; --z-overlay: 200;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Manrope', system-ui, -apple-system, sans-serif;
      background: var(--paper);
      color: var(--body);
      line-height: 1.62;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    strong { color: var(--ink); font-weight: 700; }
    ::selection { background: var(--teal); color: #fff; }
    :focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

    /* mono — measurements / metadata / indices ONLY */
    .mono { font-family: 'Spline Sans Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }

    .wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }

    h1, h2, h3 { color: var(--ink); letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; }

    /* ---------- buttons ---------- */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 9px;
      padding: 14px 24px; border-radius: var(--r-sm);
      font-size: 0.97rem; font-weight: 700; letter-spacing: -0.01em;
      border: 1px solid transparent; cursor: pointer;
      transition: transform .25s var(--ease), background .2s, border-color .2s, box-shadow .25s var(--ease), color .2s;
    }
    .btn svg { width: 17px; height: 17px; }
    .btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 22px -14px rgba(15,118,110,.85); }
    .btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(15,118,110,.85); }
    .btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
    .btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
    .btn-ghost svg { transition: transform .3s var(--ease); }
    .btn-ghost:hover svg { transform: translateX(3px); }
    .btn-light { background: #fff; color: var(--teal-900); }
    .btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -18px rgba(0,0,0,.5); }

    /* ---------- header: thin precise dossier bar ---------- */
    header {
      position: fixed; inset: 0 0 auto 0; z-index: var(--z-sticky);
      transition: background .3s, border-color .3s, box-shadow .3s;
      border-bottom: 1px solid transparent;
    }
    header.scrolled {
      background: rgba(250,249,246,0.88);
      backdrop-filter: saturate(1.3) blur(10px);
      -webkit-backdrop-filter: saturate(1.3) blur(10px);
      border-bottom-color: var(--line-2);
    }
    .head-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .brand { display: inline-flex; align-items: baseline; gap: 10px; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.035em; color: var(--ink); }
    .brand .pre { font-family: 'Spline Sans Mono', monospace; font-weight: 600; font-size: 0.72rem; letter-spacing: 0; color: var(--teal); transform: translateY(-1px); }
    nav.main { display: flex; align-items: center; gap: 28px; }
    nav.main .links { display: flex; align-items: center; gap: 24px; }
    nav.main a.link { font-size: 0.9rem; font-weight: 600; color: var(--muted); transition: color .15s; }
    nav.main a.link:hover { color: var(--ink); }
    nav.main .nav-cta { padding: 9px 18px; font-size: 0.88rem; }
    .head-stamp { font-family: 'Spline Sans Mono', monospace; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.02em; color: var(--muted); border: 1px solid var(--line-2); border-radius: 4px; padding: 4px 9px; }

    /* ---------- shared section bits ---------- */
    section { padding: clamp(60px, 8vw, 104px) 0; position: relative; }

    /* worksheet label: thin teal rule + mono code. Used where it earns it, not everywhere. */
    .label { display: inline-flex; align-items: center; gap: 11px; font-family: 'Spline Sans Mono', monospace; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--teal); text-transform: uppercase; }
    .label::before { content:""; width: 26px; height: 2px; background: var(--teal); border-radius: 2px; }

    .h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); font-weight: 800; }
    .deck { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 58ch; line-height: 1.55; }

    /* reveal — visible by default; only hidden once .js confirms it can reveal */
    .reveal { opacity: 1; transform: none; }
    .js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    .js .reveal.in { opacity: 1; transform: none; }
    .reveal[data-d="1"]{ transition-delay:.07s } .reveal[data-d="2"]{ transition-delay:.14s }
    .reveal[data-d="3"]{ transition-delay:.21s } .reveal[data-d="4"]{ transition-delay:.28s }

    /* ================= HERO ================= */
    .hero { padding-top: 128px; padding-bottom: clamp(52px, 7vw, 96px); }
    .hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 5vw, 68px); align-items: center; }

    .hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-family: 'Spline Sans Mono', monospace; font-size: 0.76rem; color: var(--muted); margin-bottom: 26px; }
    .hero-meta .seg { display: inline-flex; align-items: center; gap: 7px; }
    .hero-meta .k { color: var(--muted); }
    .hero-meta .v { color: var(--ink); font-weight: 600; }
    .hero-meta .div { width: 1px; height: 13px; background: var(--line-2); }
    .hero-meta .price { color: var(--teal); font-weight: 700; }

    .hero h1 { font-size: clamp(2.3rem, 5.3vw, 3.7rem); font-weight: 800; letter-spacing: -0.038em; }
    .hero h1 .u { color: var(--teal); }
    .hero-sub { margin-top: 22px; font-size: clamp(1.04rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 42ch; line-height: 1.55; }
    .hero-lead { margin-top: 16px; font-size: 1.06rem; font-weight: 700; color: var(--ink); max-width: 40ch; }
    .hero-lead .when { color: var(--teal); }
    .hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-reassure { margin-top: 20px; display:flex; align-items:center; gap: 9px; font-size: 0.9rem; color: var(--muted); }
    .hero-reassure svg { width: 16px; height: 16px; color: var(--teal); flex:0 0 auto; }

    /* ---- THE DOSSIER SHEET — the signature object ---- */
    .sheet-stack { position: relative; }
    .sheet-stack::before { /* a second sheet peeking behind */
      content:""; position:absolute; inset: 16px -12px -12px 22px; z-index: var(--z-base);
      background: var(--panel); border: 1px solid var(--line);
      border-radius: var(--r-lg); transform: rotate(1.8deg);
    }
    .sheet {
      position: relative; z-index: var(--z-raised); background: var(--surface);
      border: 1px solid var(--line-2); border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg); overflow: hidden;
    }
    .sheet-head {
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding: 13px 18px; border-bottom: 1px solid var(--line);
      font-family: 'Spline Sans Mono', monospace; font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.03em; color: var(--muted); background: var(--panel);
    }
    .sheet-head .doc { color: var(--ink); }
    .sheet-head .due { color: var(--teal); border: 1px solid var(--teal-120); background: var(--teal-050); padding: 3px 9px; border-radius: 999px; letter-spacing: 0.02em; }
    .sheet-body { padding: 20px 22px 22px; }

    /* meta rows under header */
    .sheet-rule { display:flex; align-items:baseline; justify-content:space-between; gap:14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
    .sheet-rule:first-of-type { padding-top: 2px; }
    .sheet-rule .rk { font-family:'Spline Sans Mono',monospace; font-size:0.72rem; color: var(--muted); letter-spacing:0.02em; }
    .sheet-rule .rv { font-size: 0.94rem; font-weight: 700; color: var(--ink); }

    /* hours ledger — measured before/after */
    .ledger { margin-top: 18px; }
    .ledger-h { font-family:'Spline Sans Mono',monospace; font-size:0.7rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color: var(--muted); margin-bottom: 14px; }
    .hrow { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 12px; margin-bottom: 12px; }
    .hrow .hk { font-family:'Spline Sans Mono',monospace; font-size:0.74rem; color: var(--muted); }
    .htrack { height: 9px; border-radius: 999px; background: var(--panel); overflow: hidden; }
    .hfill { display: block; height: 100%; border-radius: 999px; width: 0; transition: width 1.1s var(--ease); }
    .hfill.now { background: var(--line-2); }
    .hfill.after { background: linear-gradient(90deg, var(--teal-700), var(--teal)); }
    .hrow .hv { font-family:'Spline Sans Mono',monospace; font-size:0.82rem; font-weight:700; color: var(--ink); white-space: nowrap; }
    .reclaim { margin-top: 6px; display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 11px 14px; border-radius: var(--r-sm); background: var(--amber-050); border: 1px solid var(--amber-120); }
    .reclaim .rl { font-size: 0.84rem; font-weight: 700; color: var(--ink); }
    .reclaim .rn { font-family:'Spline Sans Mono',monospace; font-size: 0.98rem; font-weight: 700; color: var(--amber-700); }

    /* ranked findings */
    .findings { margin-top: 22px; border-top: 1px solid var(--line); }
    .finding { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
    .finding:last-child { border-bottom: 0; }
    .finding .fno { font-family:'Spline Sans Mono',monospace; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
    .finding .fname { font-size: 0.94rem; font-weight: 700; color: var(--ink); }
    .pill { font-family:'Spline Sans Mono',monospace; font-size: 0.68rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.02em; }
    .pill.hi  { color: #fff; background: var(--teal); }
    .pill.mid { color: var(--amber-700); background: var(--amber-050); border: 1px solid var(--amber-120); }

    .quickwin { margin-top: 18px; padding: 14px 15px; border-radius: var(--r-sm); background: var(--teal-050); border: 1px solid var(--teal-120); }
    .quickwin .qh { display:flex; align-items:center; gap:8px; font-family:'Spline Sans Mono',monospace; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); }
    .quickwin .qh svg { width:14px;height:14px; }
    .quickwin p { margin-top: 7px; font-size: 0.9rem; color: var(--body); line-height: 1.5; }

    /* ---------- trust strip ---------- */
    .trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
    .trust .wrap { padding-top: 24px; padding-bottom: 24px; }
    .trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .trust-item { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; font-weight: 600; color: var(--body); }
    .trust-item svg { width: 19px; height: 19px; color: var(--teal); flex: 0 0 auto; }

    /* ================= PROBLEM (ruled numbered worksheet) ================= */
    .problem { background: var(--paper); }
    .problem-head { max-width: 32ch; }
    .problem-head h2 { margin-top: 16px; }
    .problem-list { margin-top: 46px; border-top: 1px solid var(--line-2); }
    .prob {
      display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start;
      padding: 30px 0; border-bottom: 1px solid var(--line);
      transition: padding-left .35s var(--ease);
    }
    .prob:hover { padding-left: 10px; }
    .prob-no { font-family:'Spline Sans Mono',monospace; font-size: 1.05rem; font-weight: 700; color: var(--teal); padding-top: 3px; }
    .prob-body { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px 40px; align-items: baseline; }
    .prob-body h3 { font-size: 1.24rem; font-weight: 800; }
    .prob-body p { font-size: 1rem; color: var(--muted); line-height: 1.55; }

    /* ================= SOLUTION ================= */
    .solution { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
    .sol-copy h2 { margin-top: 16px; }
    .sol-copy > p.lead { margin-top: 14px; font-size: 1.1rem; color: var(--muted); }
    .checklist { margin: 26px 0 30px; display: grid; gap: 0; border-top: 1px solid var(--line); }
    .checklist li { list-style: none; display: flex; align-items: center; gap: 14px; font-size: 1.0rem; font-weight: 600; color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line); }
    .checklist .tick { width: 24px; height: 24px; flex: 0 0 auto; border-radius: 6px; background: var(--teal); display: grid; place-items: center; }
    .checklist .tick svg { width: 14px; height: 14px; color: #fff; }
    .checklist .ci { margin-left: auto; font-family:'Spline Sans Mono',monospace; font-size: 0.72rem; color: var(--muted); }

    /* solution preview reuses the sheet/dossier system */
    .sol-preview { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-md); }
    .sol-preview .pv-head { display:flex; align-items:center; justify-content:space-between; gap:12px; font-family:'Spline Sans Mono',monospace; font-size:0.7rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color: var(--muted); padding-bottom: 14px; border-bottom: 1px solid var(--line); }
    .sol-preview .findings { margin-top: 8px; }

    /* ================= PROCESS (real 4-step ruled timeline) ================= */
    .process { background: var(--paper); }
    .proc-rail { margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; }
    .proc-line { position: absolute; top: 22px; left: 6%; right: 6%; height: 2px; background: var(--line-2); z-index: var(--z-base); }
    .proc-line::after { content:""; position:absolute; inset:0 auto 0 0; width: var(--p, 0%); background: var(--teal); transition: width 1.4s var(--ease); }
    .step { position: relative; z-index: var(--z-raised); padding: 0 14px; }
    .step-dot {
      width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
      background: var(--surface); border: 2px solid var(--teal); color: var(--teal);
      font-family:'Spline Sans Mono',monospace; font-weight: 700; font-size: 1.0rem; margin-bottom: 18px;
      box-shadow: 0 0 0 6px var(--paper);
    }
    .step.active .step-dot { background: var(--teal); color: #fff; }
    .step h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 7px; }
    .step p { font-size: 0.95rem; color: var(--muted); line-height: 1.5; }
    .step .opt { display:inline-block; margin-top:9px; font-family:'Spline Sans Mono',monospace; font-size:0.68rem; font-weight:600; letter-spacing:0.02em; color: var(--amber-700); background: var(--amber-050); border: 1px solid var(--amber-120); padding:3px 9px; border-radius:999px; }

    /* ================= EXAMPLES (dossier case files) ================= */
    .examples { background: var(--surface); border-top: 1px solid var(--line); }
    .ex-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .ex {
      position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line-2);
      border-radius: var(--r-md); padding: 0; overflow: hidden;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
    }
    .ex:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-120); }
    .ex-tab { display:flex; align-items:center; justify-content:space-between; gap:10px; padding: 12px 22px; border-bottom: 1px solid var(--line); font-family:'Spline Sans Mono',monospace; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); background: var(--surface); }
    .ex-tab .cn { color: var(--teal); }
    .ex-inner { padding: 22px 22px 22px; display:flex; flex-direction:column; flex:1; }
    .ex-tag { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); }
    .ex h3 { font-size: 1.18rem; font-weight: 800; margin: 9px 0 10px; }
    .ex p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }
    .ex-more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 700; color: var(--teal); }
    .ex-more svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
    .ex:hover .ex-more svg { transform: translateX(3px); }

    /* ================= START CTA ================= */
    .startcta { background: var(--paper); }
    .startcta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
    .startcta h2 { font-size: clamp(1.8rem, 3.6vw, 2.55rem); font-weight: 800; }
    .startcta p.lead { margin: 16px 0 28px; font-size: 1.1rem; color: var(--muted); max-width: 46ch; }
    .deliver { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 26px 28px; box-shadow: var(--shadow-md); }
    .deliver .dh { display:flex; align-items:center; justify-content:space-between; font-family:'Spline Sans Mono',monospace; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
    .deliver ul { list-style: none; display: grid; gap: 0; }
    .deliver li { display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 600; color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line); }
    .deliver li:last-child { border-bottom: 0; }
    .deliver li svg { width: 19px; height: 19px; color: var(--teal); flex: 0 0 auto; }
    .deliver li .ln { margin-left: auto; font-family:'Spline Sans Mono',monospace; font-size: 0.72rem; color: var(--muted); }

    /* ================= IMPLEMENTATIE — committed deep teal block ================= */
    .implement { background: var(--teal-900); color: #fff; overflow: hidden; }
    .implement::before { content:""; position:absolute; inset:0; pointer-events:none;
      background:
        radial-gradient(560px 300px at 80% -12%, rgba(255,255,255,.08), transparent 70%),
        radial-gradient(420px 260px at 6% 120%, rgba(15,118,110,.5), transparent 70%);
    }
    .implement .wrap { position: relative; z-index: var(--z-raised); }
    .impl-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(28px,5vw,56px); align-items: center; }
    .implement .label { color: #fff; }
    .implement .label::before { background: rgba(255,255,255,.5); }
    .implement h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.85rem); font-weight: 800; line-height: 1.05; }
    .implement p { margin-top: 16px; font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.55; max-width: 44ch; }
    .impl-action { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
    .impl-action .price { font-family:'Spline Sans Mono',monospace; font-size: 0.9rem; color: rgba(255,255,255,.72); }
    .impl-action .price b { color: #fff; font-weight: 700; font-size: 1.0rem; }

    /* ================= EERLIJK — signed dossier notes ================= */
    .honest { background: var(--surface); border-top: 1px solid var(--line); }
    .honest-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,64px); align-items: start; }
    .honest-intro h2 { font-size: clamp(1.8rem,3.6vw,2.5rem); font-weight: 800; margin-top: 16px; }
    .honest-intro p { margin-top: 16px; font-size: 1.04rem; color: var(--muted); line-height: 1.6; max-width: 42ch; }
    .promises { display: grid; gap: 16px; }
    .promise { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 24px; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-md); }
    .promise .pno { font-family:'Spline Sans Mono',monospace; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); white-space: nowrap; padding-top: 3px; }
    .promise h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 7px; }
    .promise p { font-size: 0.98rem; color: var(--muted); line-height: 1.58; }
    .promise .sig { margin-top: 12px; display:flex; align-items:center; gap:8px; font-family:'Spline Sans Mono',monospace; font-size: 0.7rem; color: var(--muted); }
    .promise .sig svg { width: 14px; height: 14px; color: var(--teal); }
    .promise.warranty { background: var(--teal-050); border-color: var(--teal-120); }
    .promise.warranty .pno { color: var(--teal-700); }
    .promise.warranty .refund { font-family:'Spline Sans Mono',monospace; font-weight: 700; color: var(--teal-700); }

    /* ================= FAQ ================= */
    .faq { background: var(--paper); }
    .faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px,4vw,56px); align-items: start; }
    .faq-aside h2 { font-size: clamp(1.8rem,3.4vw,2.4rem); font-weight: 800; margin-top: 14px; }
    .faq-aside p { margin-top: 14px; font-size: 1rem; color: var(--muted); }
    .faq-aside .ask { margin-top: 18px; display:inline-flex; align-items:center; gap:8px; font-weight:700; color: var(--teal); font-size: 0.95rem; }
    .faq-list { border-top: 1px solid var(--line-2); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 18px;
      padding: 22px 4px; font-family: inherit; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
    .faq-ico { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
    .faq-ico::before, .faq-ico::after { content:""; position:absolute; background: var(--teal); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
    .faq-ico::before { top: 9px; left: 2px; width: 16px; height: 2px; }
    .faq-ico::after  { top: 2px; left: 9px; width: 2px; height: 16px; }
    .faq-item.open .faq-ico::after { transform: scaleY(0); opacity: 0; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
    .faq-item.open .faq-a { max-height: 600px; }
    .faq-a-inner { padding: 0 4px 24px; font-size: 1rem; color: var(--muted); line-height: 1.65; max-width: 64ch; }
    .faq-a a { color: var(--teal); font-weight: 700; }

    /* ================= FOOTER ================= */
    footer { background: var(--teal-900); color: rgba(255,255,255,.72); padding: 68px 0 34px; }
    .foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
    .foot-brand .brand { color: #fff; }
    .foot-brand .brand .pre { color: rgba(255,255,255,.55); }
    .foot-desc { margin-top: 14px; font-size: 0.95rem; color: rgba(255,255,255,.6); max-width: 30ch; line-height: 1.55; }
    .foot-h { font-family:'Spline Sans Mono',monospace; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
    .foot-col { display: flex; flex-direction: column; gap: 11px; }
    .foot-col a { font-size: 0.95rem; color: rgba(255,255,255,.72); transition: color .15s; width: fit-content; }
    .foot-col a:hover { color: #fff; }
    .foot-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 0.84rem; color: rgba(255,255,255,.5); display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-family:'Spline Sans Mono',monospace; }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 940px) {
      .hero-grid, .sol-grid, .startcta-grid, .impl-grid, .honest-grid, .faq-grid { grid-template-columns: 1fr; }
      .hero { padding-top: 112px; }
      .sheet-stack { max-width: 470px; }
      .sol-grid .sol-preview, .startcta-grid .deliver { order: -1; }
      .honest-grid { gap: 36px; }
      .impl-action { flex-direction: row; align-items: center; flex-wrap: wrap; }
      .trust-row { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
      .ex-grid { grid-template-columns: 1fr 1fr; }
      .proc-rail { grid-template-columns: 1fr 1fr; gap: 32px 8px; }
      .proc-line { display: none; }
      .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 620px) {
      body { font-size: 16px; }
      .wrap { padding: 0 20px; }
      nav.main .links, .head-stamp { display: none; }
      .hero-meta { gap: 10px; }
      .prob-body { grid-template-columns: 1fr; gap: 8px; }
      .prob { grid-template-columns: 44px 1fr; gap: 16px; }
      .ex-grid { grid-template-columns: 1fr; }
      .trust-row { grid-template-columns: 1fr; }
      .proc-rail { grid-template-columns: 1fr; gap: 26px; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .hero-actions .btn { flex: 1 1 auto; }
      .hrow { grid-template-columns: 78px 1fr auto; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto !important; }
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
      .hfill, .proc-line::after { transition: none !important; }
      .btn:hover, .ex:hover, .prob:hover { transform: none !important; }
    }
.foot-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; transition: color .15s; }
.foot-bottom a:hover { color: #fff; }
