/* ════════════════════════════════════════════════════════════════
   VERIDOM — /logistics
   "The map draws itself."

   One fixed WebGL field sits behind the whole document. The page
   opens three windows onto it — the hero, the evidence band, the
   close — and between them the field keeps evolving, so each window
   shows the operation further along: scattered, then traced, then
   sealed, then ordered.

   The page inverts with it. Parchment while the problem is being
   described; Vault from the moment the first brief arrives.

   Same tokens as veridom.io. Gold behaves as a seal, not decoration.
   Green appears once, on a verified state. Never blue.
   ════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #08090B;
  --deep:       #0E1015;
  --surface:    #141720;
  --card:       #1A1E28;
  --border:     #262C3A;
  --rail:       #323A4E;

  --parchment:  #F5EED8;
  --cream:      #FAF6EC;
  --rule:       #dcd6c8;

  --gold:       #B8892A;
  --gold-lt:    #D4A84B;
  --gold-dim:   #7A5A1A;

  --green:      #3D9E6A;

  --text:       #1A1E28;
  --text-soft:  #4C4C46;
  --muted:      #6B6558;
  --white:      #F0EDE6;
  --warm:       #CDC5B8;
  --silver:     #9A9285;
  --dim:        #5C5650;

  --serif:  'Playfair Display', Georgia, serif;
  --body:   'Lora', Georgia, serif;
  --mono:   'JetBrains Mono', 'Courier New', monospace;
  --sans:   'Jost', system-ui, sans-serif;

  --pad:  clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: 1280px;
}

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
html:not(.js-on) { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
.container { max-width: 1280px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ═══════════════ THE STAGE ═══════════════ */
.stage { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.stage-bg { position: absolute; inset: 0; background: var(--parchment); }
.stage-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.4s var(--ease); }
.stage-canvas.lit { opacity: 1; }
.stage-grain {
  position: absolute; inset: 0; opacity: .55;
  background:
    radial-gradient(circle at 14% 18%, rgba(184,137,42,.05) 0, transparent 46%),
    radial-gradient(circle at 86% 74%, rgba(184,137,42,.035) 0, transparent 42%);
}

/* every section paints over the stage except the three windows */
main > section, main > .ticker { position: relative; z-index: 2; background: var(--parchment); }
main > section[data-window] { background: transparent; }

/* ═══════════════ PROGRESS ═══════════════ */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 90; pointer-events: none; background: rgba(26,30,40,.07); }
.progress i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-dim), var(--gold-lt)); }

/* ═══════════════ PRELOADER ═══════════════ */
.pre { position: fixed; inset: 0; z-index: 120; background: var(--parchment); display: grid; place-items: center; }
html:not(.js-on) .pre, html:not(.js-on) .wipe { display: none; }
.pre-inner { text-align: center; width: min(300px, 74vw); }
.pre-hex { margin: 0 auto 26px; }
.pre-hex .hx { stroke-dasharray: 320; stroke-dashoffset: 320; }
.pre-hex .hx-dot { opacity: 0; }
.pre-line { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--mono); font-size: 8.5px; letter-spacing: .28em; color: var(--muted); margin-bottom: 12px; }
.pre-count { color: var(--gold); }
.pre-rail { height: 1px; background: var(--rule); overflow: hidden; }
.pre-rail i { display: block; height: 100%; width: 0%; background: var(--gold); }

.wipe { position: fixed; inset: 0; z-index: 119; background: var(--ink); transform: scaleY(0); transform-origin: bottom; pointer-events: none; }

/* ═══════════════ CURSOR ═══════════════ */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .cursor {
    display: grid; place-items: center;
    position: fixed; top: 0; left: 0; width: 34px; height: 34px; margin: -17px 0 0 -17px;
    z-index: 110; pointer-events: none; will-change: transform;
    transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease);
  }
  .cursor i { position: absolute; inset: 0; border: 1px solid var(--gold); border-radius: 50%; transition: background .3s var(--ease), border-color .3s; }
  .cursor u {
    font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink); text-decoration: none; opacity: 0; transition: opacity .25s; white-space: nowrap;
  }
  .cursor.hot { width: 78px; height: 78px; margin: -39px 0 0 -39px; }
  .cursor.hot i { background: var(--gold); border-color: var(--gold); }
  .cursor.hot u { opacity: 1; }
}

/* ═══════════════ HEADER ═══════════════ */
.lnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 85;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad); color: var(--text);
  transition: background .5s var(--ease), border-color .5s, padding .4s var(--ease), color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.lnav.stuck { background: rgba(245,238,216,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--rule); padding-top: 12px; padding-bottom: 12px; }
.lnav.on-dark { color: var(--white); }
.lnav.on-dark.stuck { background: rgba(8,9,11,.82); border-bottom-color: var(--border); }
.lnav-logo { display: flex; align-items: center; gap: 11px; min-height: 44px; padding: 4px 2px; color: var(--gold); }
.lnav-wordmark {
  font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: .17em;
  color: currentColor; display: block; line-height: 1;
}
.lnav.on-dark .lnav-wordmark, .lnav .lnav-wordmark { color: inherit; }
.lnav-logo .lnav-wordmark { color: var(--text); }
.lnav.on-dark .lnav-logo .lnav-wordmark { color: var(--white); }
.lnav-wordmark em {
  display: block; font-family: var(--mono); font-style: normal; font-weight: 400;
  font-size: 6.5px; letter-spacing: .34em; color: var(--gold); margin-top: 4px;
}
.lnav-link {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid currentColor; padding: 12px 18px; min-height: 44px;
  display: inline-flex; align-items: center; will-change: transform;
  transition: background .35s var(--ease), color .35s;
}
.lnav-link:hover { background: var(--gold); color: var(--ink); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  padding: 19px 30px; min-height: 52px; overflow: hidden; will-change: transform;
  border: 1px solid var(--gold);
}
.btn span { position: relative; z-index: 2; transition: color .4s var(--ease); }
.btn::before { content: ''; position: absolute; inset: 0; z-index: 1; background: var(--gold-lt); transform: translateY(101%); transition: transform .5s var(--ease); }
.btn:hover::before { transform: translateY(0); }
.btn-solid { background: var(--gold); }
.btn-solid span { color: var(--ink); }
.btn-line span { color: var(--text); }
.btn-line:hover span { color: var(--ink); }
[data-act="3"] .btn-line span, [data-window] .btn-line span, .pane .btn-line span { color: var(--white); }
.btn-lg { padding: 22px 36px; font-size: 11px; }

/* ═══════════════ HERO ═══════════════ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 130px 0 130px; }
.hero-inner { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; }
.hero-eyebrow span { font-family: var(--mono); font-size: 9px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); }
.eb-rule { display: block; width: 0; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-title { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 8.2vw, 108px); line-height: .99; letter-spacing: -.032em; }
.hl { display: block; overflow: hidden; }
.ht-word { display: inline-block; }
.ht-char { display: inline-block; will-change: transform; }
.hl-gold { color: var(--gold-dim); font-style: italic; font-weight: 500; }

.hero-foot { display: grid; gap: 30px; margin-top: 44px; max-width: 620px; }
.hero-sub { font-size: clamp(15px, 1.45vw, 17.5px); color: var(--text-soft); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.hero-note {
  position: absolute; right: var(--pad); bottom: 116px; z-index: 3;
  font-family: var(--sans); font-weight: 300; font-size: 13px; line-height: 1.75;
  color: var(--muted); text-align: right; border-right: 1px solid var(--gold); padding-right: 15px;
  display: none;
}
.scrollcue { position: absolute; bottom: 34px; left: var(--pad); z-index: 3; display: flex; align-items: center; gap: 14px; }
.sc-label { font-family: var(--mono); font-size: 7.5px; letter-spacing: .38em; color: var(--muted); }
.sc-rail { display: block; width: 66px; height: 1px; background: var(--rule); overflow: hidden; }
.sc-rail i { display: block; height: 100%; width: 40%; background: var(--gold); animation: cue 2.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateX(-100%); } 100% { transform: translateX(250%); } }

/* ═══════════════ TICKER ═══════════════ */
.ticker { overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 17px 0; }
.ticker-track { display: flex; align-items: center; gap: 26px; white-space: nowrap; width: max-content; will-change: transform; }
.ticker-track span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .26em; color: var(--text-soft); }
.ticker-track i { color: var(--gold); font-style: normal; }

/* ═══════════════ SECTION INDEX ═══════════════ */
.strip-index { font-family: var(--mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; }
.strip-index.on-dark { color: var(--gold-lt); }

/* ═══════════════ FRAME-TAKE ═══════════════ */
.strip { padding: clamp(72px, 10vw, 150px) 0; background: var(--cream) !important; border-bottom: 1px solid var(--rule); }
.strip-grid { display: grid; gap: 34px; }
.strip-lead { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 4.6vw, 60px); line-height: 1.1; letter-spacing: -.026em; max-width: 17ch; margin-bottom: 30px; }
.strip-q { font-family: var(--sans); font-weight: 300; font-size: clamp(16px, 1.9vw, 22px); line-height: 1.55; margin-bottom: 24px; max-width: 46ch; }
.strip-q em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--gold-dim); }
.strip-body { color: var(--text-soft); max-width: 60ch; font-size: 16.5px; }

/* ═══════════════ THE CONDITION ═══════════════ */
.strip-close {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(19px, 2.3vw, 26px); line-height: 1.35;
  color: var(--text); max-width: 34ch; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid var(--rule);
}
.conds { list-style: none; margin-top: 38px; display: grid; gap: 0; }
.conds li {
  display: flex; gap: 18px; padding: 22px 0;
  border-top: 1px solid var(--rule); transition: padding-left .4s var(--ease);
}
.conds li:last-child { border-bottom: 1px solid var(--rule); }
.conds li:hover { padding-left: 10px; }
.cd-k { font-family: var(--mono); font-size: 10px; color: var(--gold); flex-shrink: 0; padding-top: 5px; }
.conds strong { display: block; font-family: var(--sans); font-weight: 400; font-size: 16.5px; margin-bottom: 4px; }
.conds p { font-size: 15px; line-height: 1.6; color: var(--text-soft); max-width: 52ch; }

/* ═══════════════ THE FAILURE CHAIN ═══════════════ */
.failure {
  margin-top: 56px; padding: 34px 0 0; border-top: 2px solid var(--gold);
  max-width: 64ch;
}
.failure p:first-child b {
  font-family: var(--serif); font-weight: 600; font-size: clamp(21px, 2.7vw, 31px);
  line-height: 1.18; letter-spacing: -.02em; display: block; margin-bottom: 8px;
}
.failure p { color: var(--text-soft); font-size: 16.5px; }
.failure p + p { margin-top: 1.05em; }

/* ═══════════════ FIRST WORKFLOW PACK ═══════════════ */
.pack { padding: clamp(56px, 8vw, 118px) 0; }
.pack-title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 4vw, 50px); line-height: 1.05; letter-spacing: -.026em; margin-bottom: 20px; max-width: 20ch; }
.pack-sub { max-width: 58ch; font-size: 16.5px; }
.chain { list-style: none; display: grid; gap: 10px; margin: 40px 0 26px; counter-reset: ch; }
.chain li {
  counter-increment: ch; position: relative;
  border: 1px solid var(--border); border-left: 2px solid var(--gold);
  padding: 16px 18px 16px 52px; background: rgba(20,23,32,.5);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.chain li::before {
  content: counter(ch, decimal-leading-zero);
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 10px; color: var(--gold);
}
.chain li:hover { border-color: var(--gold-dim); background: rgba(26,30,40,.75); }
.chain span { font-family: var(--sans); font-weight: 300; font-size: 16px; color: var(--white); }
.pack-note { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--gold-lt); line-height: 1.8; max-width: 52ch; }

/* ═══════════════ HERO BADGE ═══════════════ */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-dim);
  margin-top: 4px;
}
.hero-badge i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  flex-shrink: 0; box-shadow: 0 0 0 0 rgba(61,158,106,.55);
  animation: live 2.6s var(--ease) infinite;
}
@keyframes live {
  0%   { box-shadow: 0 0 0 0 rgba(61,158,106,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(61,158,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,158,106,0); }
}

/* ═══════════════ FOUNDING PROGRAMME ═══════════════ */
.stands-cta { margin-top: 30px; }

/* ═══════════════ THE TWO DESKS ═══════════════ */
.desks { display: grid; gap: 20px; margin: 42px 0 34px; }
.desk {
  background: var(--surface); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); padding: 32px 26px 30px;
  transition: border-color .45s var(--ease), transform .5s var(--ease);
}
.desk:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.desk-k { font-family: var(--mono); font-size: 9px; letter-spacing: .26em; color: var(--gold); margin-bottom: 16px; }
.desk h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(23px, 2.6vw, 32px); line-height: 1.1; color: var(--white); margin-bottom: 12px; }
.desk-for { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--warm) !important; margin-bottom: 16px; }
.desk-q {
  font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 23px);
  color: var(--gold-lt) !important; margin-bottom: 18px;
  padding-left: 16px; border-left: 2px solid var(--gold-dim);
}
.desk > p { font-size: 15.5px; line-height: 1.68; }
.desk-list { list-style: none; margin-top: 22px; border-top: 1px solid var(--border); }
.desk-list li {
  position: relative; padding: 11px 0 11px 22px;
  font-family: var(--sans); font-weight: 300; font-size: 14.5px;
  color: var(--silver); border-bottom: 1px solid rgba(38,44,58,.55); line-height: 1.5;
}
.desk-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.desk-list b { color: var(--white); font-weight: 500; }
.desk-choose {
  font-size: 16px; max-width: 66ch; padding: 22px 24px;
  border: 1px dashed var(--border); color: var(--silver) !important;
}
.desk-choose b { color: var(--white); }
.desk-choose i { color: var(--gold-lt); font-style: italic; }

.desk h3 a { color: inherit; transition: color .3s var(--ease); }
.desk h3 a:hover { color: var(--gold-lt); }
.desk-shot {
  width: 100%; height: auto; display: block; margin: 22px 0 4px;
  border: 1px solid var(--border);
  transition: border-color .45s var(--ease);
}
.desk:hover .desk-shot { border-color: var(--gold-dim); }
.desk-cap {
  font-family: var(--sans); font-weight: 300; font-size: 12.5px;
  color: var(--dim) !important; max-width: 66ch; margin-bottom: 18px;
}
.desk-more {
  display: inline-flex; align-items: center; min-height: 44px; margin-top: 18px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lt); border-bottom: 1px solid rgba(212,168,75,.35);
  transition: border-color .3s var(--ease);
}
.desk-more:hover { border-bottom-color: var(--gold-lt); }

/* ═══════════════ THE PROMISE ═══════════════ */
.promise { padding: 0 0 clamp(56px, 8vw, 112px); }
.promise-panel {
  border: 1px solid var(--gold-dim); border-top: 2px solid var(--gold);
  background: linear-gradient(155deg, rgba(26,30,40,.9), rgba(8,9,11,.96));
  padding: clamp(30px, 5vw, 60px);
}
.promise-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.06; letter-spacing: -.026em; color: var(--white);
  margin-bottom: 24px; max-width: 24ch;
}
.promise-panel p { color: var(--silver); max-width: 62ch; font-size: 16.5px; }
.promise-panel p + p { margin-top: 1.05em; }
.promise-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin: 36px 0 0; background: var(--border); border: 1px solid var(--border);
}
.promise-grid div { background: var(--ink); padding: 22px 18px; text-align: center; }
.promise-grid b {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 5vw, 54px); line-height: 1; color: var(--gold-lt); margin-bottom: 8px;
}
.promise-grid span {
  font-family: var(--mono); font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--silver);
}

/* ═══════════════ WHERE THIS STANDS ═══════════════ */
.stands { padding: 0 0 clamp(56px, 8vw, 110px); }
.stands-panel {
  border: 1px solid var(--gold-dim); border-top: 2px solid var(--gold);
  background: linear-gradient(160deg, rgba(26,30,40,.86), rgba(8,9,11,.94));
  padding: clamp(30px, 5vw, 58px);
}
.stands-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(23px, 3.3vw, 40px);
  line-height: 1.08; letter-spacing: -.024em; color: var(--white);
  margin-bottom: 24px; max-width: 22ch;
}
.stands-panel p { color: var(--silver); max-width: 62ch; font-size: 16.5px; }
.stands-panel p + p { margin-top: 1.05em; }
.stands-panel p:last-child { color: var(--warm); }

/* ═══════════════ DIAGNOSTIC ═══════════════ */
.diag { padding: clamp(72px, 10vw, 150px) 0; }
.diag-head { max-width: 780px; margin-bottom: 46px; }
.diag-title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 5vw, 62px); line-height: 1.05; letter-spacing: -.028em; margin-bottom: 18px; }
.diag-sub { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

.deck { position: relative; display: grid; gap: 22px; }
.deck-meter { position: relative; width: 44px; height: 44px; flex-shrink: 0; }
.deck-meter svg { width: 44px; height: 44px; transform: rotate(-90deg); }
.dm-bg { fill: none; stroke: var(--rule); stroke-width: 1.5; }
.dm-fg { fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-dasharray: 119.4; stroke-dashoffset: 119.4; }
.deck-meter span { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; color: var(--gold-dim); }

.deck-stack { position: relative; min-height: 330px; }
.card {
  position: absolute; inset: 0 auto auto 0; width: 100%;
  background: var(--cream); border: 1px solid var(--rule); border-top: 2px solid var(--gold);
  padding: clamp(30px, 4.5vw, 54px); opacity: 0; visibility: hidden;
  box-shadow: 0 34px 70px -44px rgba(26,30,40,.5);
}
html:not(.js-on) .card { position: relative; opacity: 1; visibility: visible; margin-bottom: 16px; }
html:not(.js-on) .deck-stack { min-height: 0; }
.card.is-live { opacity: 1; visibility: visible; }
.card-n { font-family: var(--mono); font-size: 9px; letter-spacing: .26em; color: var(--gold); margin-bottom: 22px; }
.card-q { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3.8vw, 46px); line-height: 1.12; letter-spacing: -.022em; margin-bottom: 34px; max-width: 20ch; }
.card-a { display: flex; flex-wrap: wrap; gap: 12px; }
.opt {
  position: relative; overflow: hidden;
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 22px; min-height: 48px; border: 1px solid var(--rule); color: var(--text-soft);
  transition: border-color .35s var(--ease), color .35s;
}
.opt span { position: relative; z-index: 2; transition: color .35s var(--ease); }
.opt::before { content: ''; position: absolute; inset: 0; z-index: 1; background: var(--gold); transform: translateY(101%); transition: transform .45s var(--ease); }
.opt:hover { border-color: var(--gold); }
.opt:hover::before { transform: translateY(0); }
.opt:hover span { color: var(--ink); }

.card-out { background: var(--ink); border-color: var(--gold); }
.res-score { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.res-score b { font-family: var(--serif); font-weight: 600; font-size: clamp(56px, 11vw, 116px); line-height: .82; color: var(--gold-lt); }
.res-score span { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--silver); line-height: 2; }
.res-bar { height: 2px; background: rgba(205,197,184,.18); margin-bottom: 26px; }
.res-bar i { display: block; height: 100%; width: 0%; background: var(--gold-lt); }
.res-copy { font-family: var(--serif); font-size: clamp(18px, 2.4vw, 27px); line-height: 1.36; color: var(--white); max-width: 40ch; margin-bottom: 26px; }
.res-again { font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); border-bottom: 1px solid currentColor; padding-bottom: 4px; min-height: 44px; }

.diag-prose { margin-top: 56px; max-width: 62ch; color: var(--text-soft); font-size: 16.5px; }
.diag-prose p + p { margin-top: 1.1em; }

/* ═══════════════ DARK ACT ═══════════════ */
[data-act="3"] { background: var(--ink) !important; color: var(--warm); }
[data-act="3"] h2, [data-act="3"] h3, [data-act="3"] strong { color: var(--white); }
[data-act="3"] p { color: var(--silver); }

/* ═══════════════ BRIEF ═══════════════ */
.brief { padding: clamp(72px, 10vw, 150px) 0; overflow: hidden; }
.brief-grid { display: grid; gap: 56px; align-items: center; }
.brief-title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3.9vw, 50px); line-height: 1.06; letter-spacing: -.026em; margin-bottom: 26px; max-width: 17ch; }
.brief-copy p { max-width: 46ch; font-size: 16px; }
.brief-copy p + p { margin-top: 1.05em; }

.phone {
  position: relative; width: min(360px, 100%); margin: 0 auto;
  background: #0B0D11; border: 1px solid #23283a; border-radius: 34px;
  padding: 12px; box-shadow: 0 50px 110px -50px rgba(0,0,0,.95), 0 0 0 1px rgba(184,137,42,.12);
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 20px; background: #0B0D11; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-screen { background: #0d0f13; border-radius: 24px; overflow: hidden; padding: 34px 0 0; }
.bc-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid #1b1f2b; }
.bc-avatar { width: 22px; height: 24px; flex-shrink: 0; }
.bc-who { flex: 1; font-family: var(--mono); font-size: 8.5px; letter-spacing: .2em; color: var(--warm); line-height: 1.5; }
.bc-who em { display: block; font-style: normal; font-size: 7px; letter-spacing: .16em; color: var(--dim); }
.bc-time { font-family: var(--mono); font-size: 8px; color: var(--dim); }
.bc-body { padding: 20px 16px 24px; font-family: var(--mono); font-size: 12px; line-height: 1.95; color: var(--warm); }
html.js-on .bc-l { opacity: 0; }
.bc-greet { color: var(--white); margin-bottom: .8em; }
.bc-r { display: flex; gap: 11px; align-items: baseline; }
.bc-r .n { min-width: 2ch; text-align: right; font-weight: 500; font-variant-numeric: tabular-nums; }
.n.ok { color: var(--green); }
.n.ex { color: var(--gold-lt); }
.n.dec { color: var(--white); }
.bc-sp { height: .7em; }
.bc-typing { display: flex; gap: 4px; padding-top: 8px; }
.bc-typing i { width: 4px; height: 4px; border-radius: 50%; background: var(--dim); animation: blink 1.35s infinite; }
.bc-typing i:nth-child(2) { animation-delay: .22s; }
.bc-typing i:nth-child(3) { animation-delay: .44s; }
@keyframes blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }
.brief-cap { font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--dim) !important; margin-top: 18px; max-width: 40ch; text-align: center; margin-left: auto; margin-right: auto; }

/* ═══════════════ WORKFLOW GALLERY ═══════════════ */
.flows { padding: clamp(64px, 8vw, 110px) 0 clamp(72px, 9vw, 130px); overflow: hidden; }
.flows-head { margin-bottom: 44px; }
.flows-title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.028em; margin-bottom: 20px; }
.flows-frame { max-width: 54ch; font-size: 16px; }
.flows-hint { display: none; font-family: var(--mono); font-size: 9px; letter-spacing: .28em; color: var(--gold-lt); margin-top: 22px; }

.rail { display: grid; gap: 18px; padding: 0 var(--pad); }
.pane {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); padding: 34px 26px 32px;
  transition: border-color .45s var(--ease), transform .55s var(--ease);
}
.pane-lead { border-top-width: 3px; }
.pane:hover { border-color: var(--gold-dim); }
.pane-n { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--gold); display: block; margin-bottom: 18px; }
.pane h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2.1vw, 27px); line-height: 1.15; color: var(--white); margin-bottom: 14px; }
.pane p { font-size: 15px; line-height: 1.68; color: var(--silver); }
.pane-tag { display: inline-block; margin-top: 20px; font-family: var(--mono); font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); border: 1px solid var(--border); padding: 6px 10px; }
.pane-end { background: linear-gradient(160deg, #191d27, #0d0f14); display: flex; flex-direction: column; }
.pane-end .btn { margin-top: 24px; align-self: flex-start; }

/* ═══════════════ STEPS ═══════════════ */
.steps { padding: clamp(64px, 8vw, 120px) 0; }
.steprail { display: none; }
.stepgrid { display: grid; gap: 40px; }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--border); }
.step-node { position: absolute; top: -5px; left: 0; width: 9px; height: 9px; background: var(--ink); border: 1px solid var(--gold); border-radius: 50%; }
.step-n { font-family: var(--mono); font-size: 9.5px; letter-spacing: .24em; color: var(--gold); display: block; margin-bottom: 16px; }
.step h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2.1vw, 26px); line-height: 1.16; margin-bottom: 14px; }
.step p { font-size: 15.5px; line-height: 1.7; }

/* ═══════════════ KEEN ═══════════════ */
.keen { padding: clamp(64px, 8vw, 130px) 0; }
.keen-title { font-family: var(--serif); font-weight: 600; font-size: clamp(27px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -.028em; margin-bottom: 48px; max-width: 20ch; }
.keen-grid { display: grid; gap: 52px; }
.keen-copy p { max-width: 56ch; font-size: 16.5px; }
.keen-copy p + p { margin-top: 1.05em; }
.ladder { list-style: none; display: grid; gap: 0; }
.ladder li { display: flex; gap: 20px; padding: 26px 0; border-top: 1px solid var(--border); transition: padding-left .4s var(--ease); }
.ladder li:last-child { border-bottom: 1px solid var(--border); }
.ladder li:hover { padding-left: 10px; }
.ld-k { font-family: var(--mono); font-size: 10px; color: var(--gold); flex-shrink: 0; padding-top: 5px; }
.ladder strong { display: block; font-family: var(--sans); font-weight: 400; font-size: 16px; margin-bottom: 6px; }
.ladder p { font-size: 14.5px; line-height: 1.65; }

/* ═══════════════ EVIDENCE (window) ═══════════════ */
.ev { padding: clamp(96px, 15vw, 220px) 0; color: var(--warm); }
/* The unlit state must still be comfortably readable on Vault — the
   sweep is emphasis, not a legibility gate. Silver clears AA at this
   size; lighting a word takes it to white. */
.ev-quote {
  font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 7vw, 96px);
  line-height: 1.03; letter-spacing: -.034em; color: var(--silver); max-width: 15ch; margin-bottom: 52px;
}
.ev-quote .w { color: var(--silver); transition: color .45s var(--ease); }
.ev-quote .w.on { color: var(--white); }
.ev-body { max-width: 58ch; }
.ev-body p { color: var(--silver); font-size: 16.5px; }
.ev-body p + p { margin-top: 1.05em; }

/* ═══════════════ WHAT YOU GET ═══════════════ */
.gets { padding: clamp(72px, 10vw, 150px) 0; }
.gets-title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.028em; margin-bottom: 44px; }
.getlist { list-style: none; }
.getlist li { display: flex; gap: 22px; padding: 28px 0; border-top: 1px solid var(--rule); transition: padding-left .45s var(--ease); }
.getlist li:last-child { border-bottom: 1px solid var(--rule); }
.getlist li:hover { padding-left: 12px; }
.g-n { font-family: var(--mono); font-size: 10px; color: var(--gold); flex-shrink: 0; padding-top: 6px; }
.getlist strong { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(18px, 2vw, 23px); margin-bottom: 8px; }
.getlist p { font-size: 15.5px; color: var(--text-soft); line-height: 1.65; max-width: 56ch; }

/* ═══════════════ FAQ ═══════════════ */
.faq { padding: clamp(64px, 9vw, 140px) 0; }
.faq-grid { display: grid; gap: 44px; }
.faq-title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 4.2vw, 52px); line-height: 1.04; letter-spacing: -.028em; margin-bottom: 20px; }
.faq-note { font-size: 15px; color: var(--text-soft); max-width: 34ch; }

.faq-list { border-top: 1px solid var(--rule); }
.qa { border-bottom: 1px solid var(--rule); }
.qa summary {
  display: flex; align-items: flex-start; gap: 18px; cursor: pointer;
  padding: 24px 0; list-style: none; position: relative;
  transition: padding-left .4s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { padding-left: 8px; }
.qa-k { font-family: var(--mono); font-size: 10px; color: var(--gold); flex-shrink: 0; padding-top: 6px; }
.qa-q {
  flex: 1; font-family: var(--serif); font-weight: 500;
  font-size: clamp(17px, 2vw, 23px); line-height: 1.3; color: var(--text);
}
.qa-x { position: relative; width: 14px; height: 14px; flex-shrink: 0; margin-top: 8px; }
.qa-x::before, .qa-x::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform .4s var(--ease), opacity .3s;
}
.qa-x::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.qa-x::after  { left: 6px; top: 0; height: 14px; width: 1.5px; }
.qa[open] .qa-x::after { transform: rotate(90deg); opacity: 0; }
.qa[open] .qa-q { color: var(--gold-dim); }
.qa-a { overflow: hidden; }
.qa-a p {
  font-size: 16px; line-height: 1.72; color: var(--text-soft);
  max-width: 62ch; padding: 0 0 28px 28px;
}

/* ═══════════════ CTA (window) ═══════════════ */
.cta { padding: clamp(96px, 14vw, 210px) 0 clamp(72px, 10vw, 140px); color: var(--warm); text-align: center; }
.cta-eyebrow { font-family: var(--mono); font-size: 9px; letter-spacing: .34em; color: var(--gold-lt); margin-bottom: 30px; }
.cta-title { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 8vw, 108px); line-height: .98; letter-spacing: -.034em; color: var(--white); margin-bottom: 30px; }
.cta-copy { max-width: 50ch; margin: 0 auto; color: var(--silver); font-size: 16.5px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.cta-meta { font-family: var(--mono); font-size: 9.5px; letter-spacing: .22em; color: var(--dim); margin-top: 34px; }
.bridge { font-size: 13.5px; color: var(--dim); max-width: 56ch; margin: clamp(56px, 8vw, 96px) auto 0; line-height: 1.75; }
.bridge a { color: var(--gold-lt); border-bottom: 1px solid rgba(212,168,75,.4); }
.bridge a:hover { border-bottom-color: var(--gold-lt); }

/* ═══════════════ FOOTER (site standard) ═══════════════ */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--border); background: var(--ink); padding: clamp(56px, 7vw, 90px) 0 0; color: var(--warm); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 64px); padding-bottom: clamp(48px, 6vw, 72px); }
.footer-mark { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-wordmark { font-family: var(--serif); font-weight: 700; letter-spacing: .16em; font-size: 19px; color: var(--cream); }
.footer-desc { font-family: var(--sans); font-size: 13.5px; color: var(--silver); line-height: 1.75; max-width: 340px; }
.footer-col h4 { font-family: var(--mono); font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; font-family: var(--sans); font-size: 14px; color: var(--silver); padding: 5px 0; transition: color .3s, padding-left .3s var(--ease); }
.footer-col a:hover { color: var(--gold-lt); padding-left: 6px; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 26px; padding-bottom: 30px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; color: var(--muted); line-height: 1.7;
}
.footer-fine { max-width: 460px; text-align: right; line-height: 1.7; }

/* ═══════════════ GUIDE PAGES ═══════════════ */
.hero-short { min-height: auto; height: auto; padding: 150px 0 clamp(60px, 8vw, 110px); }
.hero-short .hero-title { font-size: clamp(31px, 5.6vw, 70px); }
.hero-short .hero-inner { flex: none; }
.narrowish { max-width: 900px; }

/* ═══════════════ CAPABILITY AREAS ═══════════════ */
.caps { padding: clamp(56px, 8vw, 118px) 0; }
.caparea {
  border-top: 1px solid var(--border); padding: 34px 0 30px;
  transition: border-color .45s var(--ease);
}
.caparea:first-of-type { margin-top: 42px; }
.caparea:last-of-type { border-bottom: 1px solid var(--border); }
.caparea:hover { border-top-color: var(--gold-dim); }
.caparea-k { font-family: var(--mono); font-size: 9px; letter-spacing: .26em; color: var(--gold); margin-bottom: 14px; }
.caparea h3 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(23px, 3vw, 34px);
  line-height: 1.1; color: var(--white); margin-bottom: 12px;
}
.caparea-lead {
  font-family: var(--sans); font-weight: 300; font-size: clamp(15.5px, 1.7vw, 18px);
  color: var(--warm) !important; max-width: 56ch; margin-bottom: 22px;
}
.caplist { list-style: none; display: grid; gap: 0; }
.caplist li {
  position: relative; padding: 15px 0 15px 24px;
  font-size: 15.5px; line-height: 1.66; color: var(--silver);
  border-top: 1px solid rgba(38,44,58,.6);
}
.caplist li::before { content: '+'; position: absolute; left: 0; top: 15px; color: var(--gold); font-family: var(--mono); font-size: 12px; }
.caplist b { color: var(--white); font-weight: 500; }
.caplist a { color: var(--gold-lt); border-bottom: 1px solid rgba(212,168,75,.35); }
.caps-foot {
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  color: var(--silver) !important; max-width: 60ch; margin-top: 30px;
}

/* ═══════════════ AUTHORITY LADDER ═══════════════ */
.authority-rule {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(18px, 2.2vw, 25px); line-height: 1.36; color: var(--text);
  max-width: 44ch; margin: 0 0 34px; padding-left: 18px;
  border-left: 2px solid var(--gold);
}
#authority .getlist li { align-items: flex-start; }
#authority .g-n { display: none; }
#authority .getlist strong {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-dim); font-weight: 500; margin-bottom: 8px;
}
#authority .getlist p { font-size: 16px; color: var(--text-soft); }
.authority-foot {
  margin-top: 30px; padding: 24px 26px; max-width: 66ch;
  border: 1px dashed var(--rule); background: var(--cream);
  font-size: 15.5px; line-height: 1.68; color: var(--text-soft);
}

/* ═══════════════ PRODUCT MEDIA ═══════════════ */
.shot {
  margin: 34px 0 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,.8);
}
[data-stage="light"] .shot { border-color: var(--rule); background: var(--cream); box-shadow: 0 34px 70px -46px rgba(26,30,40,.45); }
.shot img { width: 100%; height: auto; display: block; }
.shot figcaption {
  font-family: var(--sans); font-weight: 300; font-size: 13.5px; line-height: 1.65;
  color: var(--silver); padding: 16px 20px; border-top: 1px solid var(--border);
}
[data-stage="light"] .shot figcaption { color: var(--muted); border-top-color: var(--rule); }

.shotband { padding: clamp(56px, 8vw, 110px) 0; }

.filmband { padding: clamp(56px, 8vw, 112px) 0; }
.film {
  margin: 34px 0 16px; max-width: 620px;
  border: 1px solid var(--gold-dim); background: #0b0d11;
  box-shadow: 0 50px 110px -50px rgba(0,0,0,.95);
}
.film video { width: 100%; height: auto; display: block; }
.film-cap {
  font-family: var(--sans); font-weight: 300; font-size: 13px;
  color: var(--dim) !important; max-width: 58ch;
}

/* Footer links match the site exactly on desktop. On touch widths they
   grow to a 44px target — the reader is on a phone, from WhatsApp.
   (The same adjustment is worth making to the main site footer.) */
@media (max-width: 959px) {
  .footer-col a { padding: 11px 0; min-height: 44px; display: flex; align-items: center; }
}

/* ═══════════════ REVEAL STATES (JS only) ═══════════════ */
html.js-on .reveal, html.js-on .reveal-card { opacity: 0; }

/* ════════════════════════════════════════════════════════════════
   MOBILE — its own design, not a squeezed desktop.

   The audit that prompted this: on desktop, headings run 50–96px
   against 18px body — a 3–5:1 ratio. Squeezed to 375px they collapsed
   to 26–28px against 17px, barely 1.6:1, so every section read at the
   same pitch and the page became a wall. The WebGL motif never loads
   on a phone either, so mobile had no signature visual at all.

   Three corrections: restore the typographic ratio, give the phone
   the motif in ~1KB of SVG, and turn the 2,023px stack of workflow
   cards into a swipeable gallery.
   ════════════════════════════════════════════════════════════════ */
.hero-motif { display: none; }
.rail-dots  { display: none; }

@media (max-width: 859px) {

  /* ── hierarchy ───────────────────────────────────────────────
     Headings up, body down a touch with more leading. Ratio moves
     from ~1.6:1 to ~2.4:1 so the eye gets a reason to stop.        */
  body { font-size: 16.5px; line-height: 1.78; }

  .hero-title { font-size: 35px; letter-spacing: -.028em; line-height: 1.04; }
  .strip-lead { font-size: 34px; line-height: 1.08; letter-spacing: -.024em; }
  .diag-title,
  .flows-title,
  .gets-title  { font-size: 37px; line-height: 1.04; letter-spacing: -.026em; }
  .brief-title,
  .keen-title,
  .pack-title,
  .stands-title,
  .promise-title,
  .faq-title   { font-size: 33px; line-height: 1.07; letter-spacing: -.024em; }
  .desk h3 { font-size: 26px; }
  .caparea h3 { font-size: 25px; }
  .caparea-lead { font-size: 16px; }
  .caplist li { font-size: 15px; }
  .authority-rule { font-size: 19px; }
  .authority-foot { padding: 20px 18px; font-size: 15px; }
  .shot figcaption { font-size: 12.5px; padding: 14px 16px; }
  .shot { margin: 26px 0 30px; }
  .desk-q { font-size: 19px; }
  .desk > p, .desk-choose { font-size: 15.5px; }
  .promise-grid b { font-size: 38px; }
  .strip-close { font-size: 21px; }
  .failure p:first-child b { font-size: 24px; }
  .conds p, .chain span, .pack-sub, .stands-panel p { font-size: 15.5px; }
  .ev-quote    { font-size: 40px; line-height: 1.06; letter-spacing: -.03em; max-width: 13ch; }
  .cta-title   { font-size: 40px; line-height: 1.0; }
  .card-q      { font-size: 27px; line-height: 1.16; }
  .qa-q        { font-size: 18.5px; }
  .getlist strong, .pane h3, .step h3 { font-size: 21px; line-height: 1.2; }

  /* body copy sits narrower and quieter so heads carry the page */
  .strip-body, .diag-prose, .keen-copy p, .ev-body p,
  .brief-copy p, .flows-frame, .cta-copy, .hero-sub { font-size: 16px; }

  /* ── lead paragraphs ─────────────────────────────────────────
     Runs of three identical paragraphs were the main offender.
     The first of each run now carries visible weight, so a block
     becomes an opening statement plus its support.                */
  .diag-prose p:first-child,
  .keen-copy p:first-child,
  .ev-body p:first-child,
  .brief-copy p:first-child,
  .strip-body {
    font-family: var(--sans); font-weight: 300;
    font-size: 19px; line-height: 1.6; color: var(--text);
  }
  [data-act="3"] .brief-copy p:first-child,
  [data-act="3"] .keen-copy p:first-child,
  .ev-body p:first-child { color: var(--white); }

  /* and the supporting paragraphs get air between them */
  .diag-prose p + p, .keen-copy p + p, .ev-body p + p { margin-top: 1.35em; }
  .diag-prose p + p, .keen-copy p + p {
    padding-top: 1.35em; border-top: 1px solid var(--rule);
  }
  [data-act="3"] .keen-copy p + p { border-top-color: var(--border); }

  /* ── section index becomes a marker, not a caption ──────────── */
  .strip-index {
    font-size: 9.5px; letter-spacing: .32em;
    padding-bottom: 14px; margin-bottom: 26px;
    border-bottom: 1px solid var(--rule); display: block;
  }
  .strip-index.on-dark { border-bottom-color: var(--border); }

  /* ── hero ────────────────────────────────────────────────────
     Rebuilt as one screen. It was 1,251px tall against an 812px
     viewport: the motif sat as a stacked block mid-page and the
     scroll cue fell 400px below the fold. Now the hero fills the
     screen exactly, content is pinned top and bottom, and the
     artwork sits behind as a layer rather than in the flow.       */
  .hero {
    min-height: 100svh; height: 100svh;
    padding: 104px 0 74px;
    display: flex; flex-direction: column; justify-content: space-between;
    align-items: stretch;
  }
  .hero-inner {
    position: relative; z-index: 2;      /* type sits above the artwork layer */
    flex: 1; display: flex; flex-direction: column; justify-content: center;
  }
  .hero-eyebrow { margin-bottom: 22px; }
  .hero-title { margin-bottom: 0; }
  .hero-foot { margin-top: auto; padding-top: 26px; gap: 18px; }
  .hero-sub {
    font-size: 15px; line-height: 1.62; color: var(--text-soft);
    max-width: 40ch;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; min-height: 50px; padding: 15px 22px; }
  .hero-short { padding: 118px 0 64px; }
  .hero-short .hero-title { font-size: 33px; }
  .hero-badge { font-size: 8.5px; letter-spacing: .17em; margin-top: 2px; }
  .stands-cta .btn { width: 100%; }

  /* artwork layer, not a block in the flow */
  .hero-motif {
    display: block; position: absolute; left: 0; right: 0; bottom: 38%;
    z-index: 0; opacity: .55; pointer-events: none;
    transition: opacity .9s var(--ease);
  }
  .hero-motif svg { width: 100%; height: auto; overflow: visible; }
  /* once the real field is running, the placeholder steps aside */
  html.field-on .hero-motif { opacity: 0; }
  .mo-dust circle { fill: var(--text); opacity: .16; }
  .mo-path {
    stroke: var(--gold); stroke-width: 1.4; fill: none; stroke-linecap: round;
    stroke-dasharray: 620; stroke-dashoffset: 620;
    animation: draw 5.2s cubic-bezier(.5,0,.2,1) infinite;
  }
  .mo-nodes circle {
    fill: none; stroke: var(--gold); stroke-width: 1.3;
    opacity: 0; animation: seal 5.2s cubic-bezier(.5,0,.2,1) infinite;
  }
  .mo-nodes circle:nth-child(1) { animation-delay: .15s; }
  .mo-nodes circle:nth-child(2) { animation-delay: .95s; }
  .mo-nodes circle:nth-child(3) { animation-delay: 1.75s; }
  .mo-nodes circle:nth-child(4) { animation-delay: 2.55s; }
  .mo-nodes circle:nth-child(5) { animation-delay: 3.3s; }
  @keyframes draw {
    0%   { stroke-dashoffset: 620; }
    62%  { stroke-dashoffset: 0; }
    88%  { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
  }
  @keyframes seal {
    0%, 4%  { opacity: 0; r: 3.4; stroke: var(--gold); }
    10%     { opacity: 1; r: 6;   stroke: var(--gold-lt); }
    18%, 84% { opacity: 1; r: 3.4; stroke: var(--green); }
    100%    { opacity: 0; r: 3.4; stroke: var(--green); }
  }

  /* ── workflow gallery: swipeable, not a 2,023px wall ────────── */
  .flows { padding: 64px 0 56px; }
  .flows-head { margin-bottom: 28px; }
  .flows-hint { display: block; margin-top: 18px; font-size: 8.5px; }

  .rail {
    display: flex; gap: 14px; width: auto; padding: 4px var(--pad) 6px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .rail::-webkit-scrollbar { display: none; }
  .pane {
    width: 79vw; max-width: 320px; flex: 0 0 auto;
    scroll-snap-align: center; padding: 28px 22px 26px;
  }
  .pane p { font-size: 15px; }
  .pane-end .btn { width: 100%; }

  .rail-dots { display: flex; gap: 7px; justify-content: center; margin-top: 24px; }
  .rail-dots i {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border); transition: background .3s var(--ease), width .3s var(--ease);
  }
  .rail-dots i.on { background: var(--gold); width: 18px; border-radius: 3px; }

  /* ── steps become a timeline you can follow ──────────────────── */
  .stepgrid { gap: 0; }
  .step {
    position: relative; border-top: 0;
    padding: 0 0 34px 30px; margin-left: 4px;
  }
  .step::before {
    content: ''; position: absolute; left: 0; top: 8px; bottom: -8px;
    width: 1px; background: var(--border);
  }
  .step:last-child::before { display: none; }
  .step:last-child { padding-bottom: 0; }
  .step-node { top: 5px; left: -4px; width: 9px; height: 9px; opacity: 1; transform: none; }
  .step-n { margin-bottom: 10px; }

  /* ── lists get room to breathe ───────────────────────────────── */
  .getlist li, .ladder li { padding: 24px 0; gap: 16px; }
  .getlist p, .ladder p { font-size: 15.5px; }
  .qa summary { padding: 21px 0; gap: 14px; }
  .qa-a p { padding-left: 0; padding-bottom: 24px; font-size: 15.5px; }

  /* ── evidence gets the room it deserves ──────────────────────── */
  .ev { padding: 92px 0; }
  .ev-quote { margin-bottom: 40px; }

  /* ── cta ─────────────────────────────────────────────────────── */
  .cta-actions .btn { width: 100%; }
  .cta { text-align: left; }
  .cta-copy { margin: 0; }
  .cta-actions { justify-content: flex-start; }
  .bridge { margin-left: 0; }

  /* ── diagnostic ──────────────────────────────────────────────── */
  .deck-stack { min-height: 300px; }
  .card { padding: 28px 22px 26px; }
  .card-a { flex-direction: column; }
  .opt { width: 100%; }
  .res-score b { font-size: 74px; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (min-width: 700px) {
  .rail { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  body { font-size: 18px; }
  .hero-note { display: block; }
  .strip-grid { grid-template-columns: 200px 1fr; gap: 60px; }
  .strip-index { margin-bottom: 0; }
  .brief-grid { grid-template-columns: 1.05fr .95fr; gap: 72px; }
  .keen-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
  .desks { grid-template-columns: 1fr 1fr; gap: 24px; }
  .promise-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 68px; align-items: start; }
  .faq-head { position: sticky; top: 120px; }
  .stepgrid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .steprail { display: block; position: relative; height: 2px; margin-bottom: -1px; }
  .steprail svg { width: 100%; height: 2px; overflow: visible; }
  .steprail line { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
  .step { border-top-color: transparent; }
  .deck { grid-template-columns: 44px 1fr; gap: 30px; align-items: start; }
  .deck-stack { min-height: 380px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }

  /* horizontal gallery */
  .flows { padding: 0; }
  .flows-pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 90px 0; overflow: hidden; }
  .flows-hint { display: block; }
  .rail { display: flex; gap: 26px; width: max-content; padding: 0 var(--pad); will-change: transform; }
  .pane { width: 400px; flex-shrink: 0; padding: 42px 34px 38px; }
}

@media (min-width: 1200px) {
  .pane { width: 440px; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html.js-on .reveal, html.js-on .reveal-card, html.js-on .bc-l { opacity: 1 !important; }
  .stage-canvas { display: none; }
  .pre, .wipe, .scrollcue { display: none; }
  .ev-quote { color: var(--white); }
  .ev-quote .w { color: var(--white); }
  .flows-pin { min-height: 0; }
  .rail { display: grid; grid-template-columns: 1fr 1fr; width: auto; }
  .pane { width: auto; }
  .card { position: relative; opacity: 1; visibility: visible; margin-bottom: 16px; }
  .deck-stack { min-height: 0; }
}

@media print {
  .stage, .pre, .wipe, .cursor, .progress, .scrollcue, .ticker { display: none !important; }
  html.js-on .reveal, html.js-on .reveal-card, html.js-on .bc-l { opacity: 1 !important; }
  .card { position: relative; opacity: 1; visibility: visible; }
}
