/* =====================================================================
   Daily Wealth Education — site.css  (v3: editorial / luxury type system)
   Tokens → base → components → sections → responsive → motion prefs
   ===================================================================== */

:root {
  /* color */
  --paper: #f6f6f3;
  --paper-2: #edede8;
  --ink: #0c0f0d;
  --ink-2: #131614;
  --ink-3: #1a1d1b;
  --line: #dcded8;
  --hair: rgba(12,15,13,.12);
  --hair-dark: rgba(255,255,255,.10);
  --line-dark: #262b28;
  --muted: #5e635f;
  --muted-dark: #9ea49e;
  --accent: #ff4d2e;
  --accent-deep: #d63a1f;
  --accent-soft: #ffe3dc;
  --accent-ink: #7a2412;
  --accent-hi: #ff7a62;
  --sky: #7cc4ff;
  --green: #1b9a57;
  --green-soft: #d9f2e3;
  --green-hi: #6fd39a;
  --warn: #c98a12;
  --warn-hi: #e6b04a;
  --red: #c9463f;
  --red-soft: #f9dcda;
  --red-hi: #ff8b84;
  --white: #ffffff;

  /* type */
  --font-display: "Bricolage Grotesque", "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-neon: "Tilt Neon", system-ui, sans-serif;

  /* rhythm */
  --wrap: 1200px;
  --gutter: 24px;
  --radius: 12px;
  --radius-sm: 8px;
  --section: clamp(80px, 9.5vw, 140px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --lift: 0 18px 40px -22px rgba(12, 15, 13, .3);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; touch-action: manipulation; }
a, button, summary, [role="tab"] { -webkit-tap-highlight-color: transparent; }
input { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; line-height: 1.04; font-variation-settings: "opsz" 96; }
h3 { font-weight: 600; letter-spacing: -.02em; }
::selection { background: var(--accent); color: var(--white); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: 8px; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 860px; }

/* type roles */
.eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); }
.section--dark .eyebrow { color: var(--muted-dark); }
.h2 { font-size: clamp(30px, 4.4vw, 54px); max-width: 16ch; text-wrap: balance; }
.h2--wide { max-width: 22ch; }
.lede { font-size: clamp(17px, 1.3vw, 19px); color: var(--muted); max-width: 56ch; text-wrap: pretty; line-height: 1.6; }
.section--dark .lede { color: var(--muted-dark); }
/* small letterspaced caps — the label voice of the whole site (replaces monospace) */
.mono { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em; }
.mark { background: linear-gradient(transparent 60%, var(--accent-soft) 60%); padding: 0 .06em; }
.section--dark .mark { background: linear-gradient(transparent 62%, rgba(255,77,46,.35) 62%); }
/* editorial footnote */
.note { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: .01em; }
.section--dark .note { color: var(--muted-dark); }
/* serif numerals & names inside panels */
.num { font-family: var(--font-display); font-weight: 600; font-variant-numeric: lining-nums tabular-nums; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 0 26px; border-radius: 999px; font-weight: 600; font-size: 15.5px; letter-spacing: -.005em; white-space: nowrap; transition: background .18s ease, color .18s ease, transform .18s var(--ease-out), box-shadow .18s ease, border-color .18s; }
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .2s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--accent); color: var(--white); box-shadow: 0 12px 28px -12px rgba(255,77,46,.6); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-deep); }
.btn--ghost { border: 1px solid var(--hair); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.section--dark .btn--ghost { border-color: var(--hair-dark); color: var(--paper); }
.section--dark .btn--ghost:hover { border-color: var(--paper); }
.section--dark .btn--primary { background: var(--paper); color: var(--ink); }
.section--dark .btn--primary:hover { background: var(--accent); color: var(--white); }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 16.5px; }
.link { display: inline-block; padding: 8px 0; font-weight: 500; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.link:hover { color: var(--accent-deep); }
.section--dark .link:hover { color: var(--accent-hi); }

/* brand tiles — white, real marks */
.tile { display: inline-grid; place-items: center; flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--white); border: 1px solid var(--hair); box-shadow: 0 6px 16px -10px rgba(0,0,0,.35); }
.tile svg { width: 16px; height: 16px; }
.tile--md { width: 36px; height: 36px; border-radius: 10px; }
.tile--md svg { width: 19px; height: 19px; }
.tile--sm { width: 22px; height: 22px; border-radius: 6px; }
.tile--sm svg { width: 13px; height: 13px; }
.tile--hero { width: 26px; height: 26px; border-radius: 7px; }
.tile--hero svg { width: 14px; height: 14px; }
.tile--house { color: #b8562f; } .tile--work { color: #0c0f0d; } .tile--save { color: #1b7a4b; } .tile--family { color: #b8562f; }
.tile--court { color: #0c0f0d; } .tile--fee { color: #c9463f; } .tile--time { color: #c98a12; } .tile--public { color: #5e635f; }
.tile--percent { color: #c9463f; } .tile--doc { color: #0c0f0d; } .tile--scales { color: #5e635f; }
.tile--shield { color: var(--accent); } .tile--check { color: #1b7a4b; }
.section--dark .tile { border-color: rgba(255,255,255,.06); box-shadow: 0 10px 24px -12px rgba(0,0,0,.8); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 90; background: rgba(246,246,243,.84); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.nav.is-scrolled { border-color: var(--hair); }
.nav__inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; }
.logo__mark { width: 24px; height: 24px; }
.nav__links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.nav__links a { padding: 8px 0; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease-out); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__login { font-size: 14.5px; font-weight: 500; color: var(--muted); padding: 10px 12px; }
.nav__login:hover { color: var(--ink); }
.nav__cta { min-height: 42px; padding: 0 18px; font-size: 14.5px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--hair); place-items: center; background: var(--white); }
.burger svg { width: 20px; height: 20px; }
.drawer { display: none; border-bottom: 1px solid var(--hair); background: var(--paper); }
.drawer[data-open="true"] { display: block; }
.drawer nav { display: flex; flex-direction: column; padding: 8px 0 16px; }
.drawer a { padding: 14px 6px; font-weight: 500; font-size: 15px; border-bottom: 1px solid var(--hair); }
.drawer .btn { margin-top: 14px; }

/* ---------- sections ---------- */
.section { padding: var(--section) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--paper2 { background: var(--paper-2); }
.section__head { display: grid; gap: 20px; margin-bottom: clamp(44px, 5.5vw, 72px); }
.section__head .lede { margin-top: 4px; }
.section__head--split { grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; }
.section__head--center { justify-items: center; text-align: center; }
.section__head--center .h2 { max-width: 20ch; }
.section__cta { margin-top: clamp(40px, 4.5vw, 60px); display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* panel primitives — one hairline frame, rows divided by hairlines, no boxes inside boxes */
.panel { border-radius: var(--radius); border: 1px solid var(--hair); background: var(--white); padding: clamp(22px, 2.6vw, 32px); }
.section--dark .panel, .panel--dark { background: var(--ink-2); border-color: var(--hair-dark); }
.plan, .step, .tpane, .manifesto li, .vars li, .lookat li { transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .2s; }
.plan:hover, .step:hover, .vars li:hover, .lookat li:hover { transform: translateY(-3px); box-shadow: var(--lift); }

/* ---------- HERO (kept element) ---------- */
.hero { position: relative; text-align: center; padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 56px); overflow: visible; isolation: isolate; }
.hero__bg { position: absolute; inset: -80px 0 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__wash { position: absolute; border-radius: 50%; filter: blur(40px); will-change: transform; }
.hero__wash--a { width: 62vw; height: 62vw; max-width: 900px; max-height: 900px; left: -18vw; top: -20vw; background: radial-gradient(circle, rgba(255,77,46,.28), rgba(255,140,90,.10) 45%, transparent 68%); animation: wash-a 16s ease-in-out infinite; }
.hero__wash--b { width: 50vw; height: 50vw; max-width: 760px; max-height: 760px; right: -14vw; top: -10vw; background: radial-gradient(circle, rgba(124,196,255,.32), rgba(124,196,255,.10) 45%, transparent 68%); animation: wash-b 19s ease-in-out infinite; }
.hero__wash--c { width: 40vw; height: 40vw; max-width: 600px; max-height: 600px; left: 34vw; bottom: -28vw; background: radial-gradient(circle, rgba(255,205,120,.26), transparent 68%); animation: wash-a 22s ease-in-out infinite reverse; }
@keyframes wash-a { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(6%, 8%) scale(1.08); } }
@keyframes wash-b { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-7%, 9%) scale(1.06); } }
.hero__dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(12,15,13,.16) 1px, transparent 1.2px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%); }
.hero__lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; display: none; overflow: visible; }
.hero__line { stroke: rgba(12,15,13,.18); stroke-width: 1.2; fill: none; }
.hero__signal { stroke: var(--accent); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-dasharray: 18 2000; opacity: 0; filter: drop-shadow(0 0 3px rgba(255,77,46,.8)); }
.hero__signal.is-on { opacity: .8; }
.hero__tile { position: absolute; z-index: 1; display: none; width: 56px; height: 56px; margin: -28px 0 0 -28px; place-items: center; border-radius: 16px; background: var(--white); border: 1px solid var(--hair); box-shadow: 0 14px 28px -16px rgba(12,15,13,.45); animation: tile-float 11s ease-in-out infinite; }
.hero__tile svg { width: 26px; height: 26px; }
.hero__ring { position: absolute; inset: -5px; border-radius: 20px; border: 1.5px solid var(--accent); opacity: 0; pointer-events: none; }
.sign--off { filter: brightness(.12) saturate(.5); }
.reduced .sign--off, .no-js .sign--off { filter: none; }
@keyframes tile-float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, -22px); } }
.hero__inner { position: relative; z-index: 2; }
.hero__pill { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; max-width: 100%; padding: 9px 16px 9px 12px; border-radius: 999px; border: 1px solid var(--hair); background: rgba(255,255,255,.8); backdrop-filter: blur(6px); font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em; color: var(--muted); text-align: left; }
.hero__pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); flex: none; }
.hero__title { font-size: clamp(32px, 6.8vw, 76px); font-weight: 700; line-height: 1.02; letter-spacing: -.04em; max-width: 980px; margin: 0 auto 22px; }
.hero__row { display: inline-flex; width: 100%; align-items: center; justify-content: center; gap: 6px; margin-top: .1em; flex-wrap: nowrap; }
.hero__stack { display: inline-flex; flex: none; }
.hero__stack .tile { margin-left: -6px; }
.hero__stack .tile:first-child { margin-left: 0; }
.hero__ai { display: inline-flex; align-items: center; gap: 5px; min-width: 0; flex-wrap: nowrap; }
.hero__sub { font-size: clamp(16px, 1.45vw, 19px); color: var(--muted); max-width: 580px; margin: 0 auto 32px; text-wrap: pretty; line-height: 1.6; }
.hero__form { position: relative; z-index: 3; display: flex; flex-direction: column; gap: 8px; max-width: 640px; margin: 0 auto; padding: 8px; border-radius: 22px; border: 1px solid var(--hair); background: var(--white); box-shadow: 0 24px 54px -30px rgba(12,15,13,.5); }
.hero__form input { min-width: 0; width: 100%; flex: 1; border: 0; background: transparent; outline: none; padding: 12px 14px; font-size: 16px; color: var(--ink); }
.hero__form input::placeholder { color: #9aa09a; }
.hero__form svg.hero__search { display: none; width: 18px; height: 18px; color: #9aa09a; flex: none; }
.hero__note { margin-top: 18px; font-size: 13px; color: var(--muted); }
.hero__note a { display: inline-block; padding: 10px 2px; text-decoration: underline; text-underline-offset: 4px; }
.hero__note a:hover { color: var(--accent-deep); }
.ticker { position: relative; z-index: 2; margin-top: clamp(40px, 4.5vw, 56px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.ticker__track { display: flex; gap: 10px; width: max-content; animation: ticker 60s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--hair); background: rgba(255,255,255,.75); font-size: 13.5px; color: var(--muted); white-space: nowrap; }
.ticker__item svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* neon reel — kept element */
.sign { --sign-neon: var(--accent); --sign-hot: #ffe9e4; --sign-row: 1.18em; --sign-hop: .62s; display: inline-block; vertical-align: middle; position: relative; flex: none; overflow: hidden; border: .045em solid var(--sign-neon); border-radius: .3em; padding: .06em .16em .08em; background: radial-gradient(circle, rgba(255,77,46,.2) 22%, transparent 26%) 0 0 / .13em .13em, radial-gradient(circle, rgba(255,255,255,.04) 18%, transparent 24%) .065em .065em / .13em .13em, linear-gradient(#1c0906, #0e0402); box-shadow: 0 0 .06em var(--sign-neon), 0 0 .22em rgba(255,77,46,.8), 0 0 .6em rgba(255,77,46,.45), 0 0 1.2em rgba(255,77,46,.22), inset 0 0 .12em rgba(255,77,46,.9), inset 0 0 .5em rgba(160,40,20,.35); transition: width var(--sign-hop) cubic-bezier(.35,.9,.25,1); will-change: width, filter; }
.sign::before { content: ""; position: absolute; inset: 0; border-radius: .26em; pointer-events: none; background: radial-gradient(75% 130%, rgba(255,77,46,.34), rgba(120,30,10,.06) 60%, transparent 80%); }
.sign__clip { display: block; position: relative; height: var(--sign-row); overflow: hidden; overflow: clip; contain: paint; }
.sign__track { display: flex; flex-direction: column; align-items: center; will-change: transform; }
.sign__word { display: flex; align-items: center; justify-content: center; height: var(--sign-row); padding: 0 .1em; white-space: nowrap; overflow: hidden; }
.sign__glyph { font-family: var(--font-neon); font-weight: 400; font-size: .78em; line-height: 1; letter-spacing: -.01em; color: var(--sign-hot); text-shadow: 0 0 .012em #fff, 0 0 .05em var(--sign-neon), 0 0 .14em var(--sign-neon), 0 0 .35em rgba(255,77,46,.85), 0 0 .7em rgba(200,50,20,.45); }
.sign__shine { position: absolute; inset: 0; border-radius: .26em; pointer-events: none; background: linear-gradient(112deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.03) 26%, transparent 42%); }
.sign--moving { transition: width var(--sign-hop) cubic-bezier(.35,.9,.25,1), filter .2s ease-in; filter: brightness(.3) saturate(.7); }
.sign--ignite { animation: sign-ignite .9s step-end; }
.sign--steady { animation: sign-hum 3s ease-in-out infinite; }
@keyframes sign-ignite { 0% { filter: brightness(.3) saturate(.7); } 6% { filter: brightness(1.12); } 10% { filter: brightness(.35) saturate(.7); } 15% { filter: brightness(1.08); } 23% { filter: brightness(.5); } 30% { filter: brightness(1.1); } 40% { filter: brightness(.92); } 46% { filter: brightness(1.05); } 100% { filter: brightness(1); } }
@keyframes sign-hum { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(.94); } }

/* ---------- STAGE: the moment of decision ---------- */
.stage { padding-top: clamp(64px, 7vw, 100px); padding-bottom: clamp(64px, 7vw, 100px); }
.stage__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 80px); align-items: start; min-height: 560px; }
.stage__left { position: relative; }
.stage__caps { position: relative; margin-top: 28px; min-height: 160px; }
.stage__cap { position: absolute; inset: 0; opacity: 0; visibility: hidden; }
.stage__cap h3 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 12px; max-width: 14ch; }
.stage__cap p { color: var(--muted-dark); max-width: 36ch; text-wrap: pretty; }
.stage__cap.is-on { opacity: 1; visibility: visible; }
.stage__idx { display: flex; gap: 6px; margin-top: 22px; }
.stage__idx i { width: 26px; height: 1px; background: var(--hair-dark); transition: background .3s; }
.stage__idx i.is-on { background: var(--accent); }
.stage__ctl { margin-top: 22px; display: none; }
.scene { position: relative; min-height: 520px; }
.query { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 999px; background: var(--ink-2); border: 1px solid var(--hair-dark); font-size: 15px; max-width: 100%; }
.query svg { width: 16px; height: 16px; color: var(--muted-dark); flex: none; }
.query__text { white-space: nowrap; overflow: hidden; }
.query__caret { width: 1px; height: 1em; background: var(--accent); animation: caret 1s step-end infinite; }
@keyframes caret { 50% { opacity: 0; } }
.answers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.answer { padding: 16px 18px 14px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--hair-dark); opacity: 0; transform: translateY(12px); }
.answer__head { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted-dark); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--hair-dark); }
.answer__head strong { color: var(--paper); font-weight: 500; }
.answer__head .mono { font-size: 11.5px; color: var(--muted-dark); }
.answer__list { display: grid; }
.answer__list li { display: flex; gap: 10px; align-items: baseline; font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -.01em; padding: 5px 0; opacity: 0; transform: translateX(-6px); }
.answer__list li .mono { font-size: 12px; color: var(--muted-dark); min-width: 14px; }
.tally { margin-top: 20px; display: grid; border-top: 1px solid var(--hair-dark); }
.trow { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 14px; padding: 13px 8px; border-bottom: 1px solid var(--hair-dark); font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -.01em; opacity: 0; transform: translateY(8px); position: relative; }
.trow .mono { font-size: 12.5px; color: var(--muted-dark); }
.trow__bar { position: absolute; left: 0; top: 4px; bottom: 4px; width: 0; background: rgba(255,255,255,.035); pointer-events: none; }
.trow__count { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-dark); }
.trow--you { color: var(--muted-dark); border-bottom-style: dashed; }
.trow--you.is-named { color: var(--paper); background: rgba(255,77,46,.07); border-bottom-style: solid; }
.trow--you.is-named::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--accent); }
.trow--you.is-named .trow__count { color: var(--accent-hi); }
.gaps { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; font-size: 13px; border: 1px solid var(--hair-dark); background: transparent; opacity: 0; transform: scale(.94); color: #d8dcd8; }
.chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--red-hi); flex: none; transition: background .3s; }
.chip.is-fixed i { background: var(--green-hi); }
.chip.is-fixed { border-color: rgba(111,211,154,.4); }
.stage__final { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; opacity: 0; visibility: hidden; pointer-events: none; }
.stage__final .big { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.stage__final .big span { display: inline-block; }
.stage__note { margin-top: 24px; }

/* ---------- THEN / NOW ---------- */
.thennow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: stretch; }
.panel__label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--hair); }
.panel__label .mono { color: var(--muted); }
.results { display: grid; gap: 10px; }
.result { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: center; font-size: 13.5px; color: var(--muted); }
.result i { height: 7px; border-radius: 4px; background: var(--paper-2); display: block; }
.result .mono { color: #b1b6b0; }
.result:nth-child(n+6) { opacity: .55; }
.result:nth-child(n+9) { opacity: .3; }
.chat { display: grid; gap: 14px; }
.bubble { justify-self: end; max-width: 82%; padding: 12px 16px; border-radius: 18px 18px 4px 18px; background: var(--ink); color: var(--paper); font-size: 14.5px; }
.bubble--ai { justify-self: start; border-radius: 18px 18px 18px 4px; background: var(--paper-2); color: var(--ink); max-width: 100%; }
.shortlist { display: grid; margin-top: 10px; border-top: 1px solid var(--hair); }
.shortlist li { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; padding: 9px 4px; border-bottom: 1px solid var(--hair); }
.shortlist li .mono { font-weight: 400; color: var(--muted); }
.shortlist li b { font-family: var(--font-mono); font-weight: 500; color: var(--accent-deep); min-width: 14px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: clamp(40px, 4.5vw, 64px); padding-top: 32px; border-top: 1px solid var(--hair); }
.fact { display: grid; gap: 8px; }
.fact strong { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.fact p { color: var(--muted); font-size: 15px; max-width: 30ch; }

/* ---------- AUDIT ---------- */
.audit { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.biz { border-radius: var(--radius); border: 1px solid var(--hair-dark); background: var(--ink-2); padding: 26px 26px 18px; }
.biz__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--hair-dark); }
.biz__name { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.biz__meta { color: var(--muted-dark); font-size: 13.5px; margin-top: 6px; }
.badge { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--hair-dark); color: var(--muted-dark); white-space: nowrap; }
.badge--accent { border-color: rgba(255,122,98,.5); color: var(--accent-hi); }
.tabs { display: grid; }
.tab { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 14px; text-align: left; padding: 15px 10px 15px 0; border-bottom: 1px solid var(--hair-dark); color: var(--muted-dark); min-height: 52px; position: relative; transition: color .2s; }
.tab:last-child { border-bottom: 0; }
.tab .mono { color: inherit; }
.tab > span:nth-child(2) { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.tab:hover { color: var(--paper); }
.tab[aria-selected="true"] { color: var(--paper); }
.tab[aria-selected="true"] .mono { color: var(--accent-hi); }
.tab__prog { width: 38px; height: 1px; background: var(--hair-dark); overflow: hidden; }
.tab__prog i { display: block; height: 100%; width: 0; background: var(--accent); }
.panes { position: relative; border-radius: var(--radius); border: 1px solid var(--hair-dark); background: var(--ink-2); padding: clamp(22px, 2.6vw, 32px); min-height: 440px; }
.pane { display: none; }
.pane.is-on { display: block; }
.pane__title { font-family: var(--font-mono); font-size: 12px; color: var(--muted-dark); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--hair-dark); }
.surfaces { display: grid; }
.srow { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 16px; padding: 16px 4px; border-bottom: 1px solid var(--hair-dark); }
.srow:last-child { border-bottom: 0; }
.srow--missing { border-bottom-style: dashed; }
.srow__name { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -.01em; line-height: 1.05; }
.srow__q { display: block; font-size: 13px; color: var(--muted-dark); margin-top: 5px; }
/* status — serif italic, quiet dot */
.status { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0; display: inline-flex; align-items: center; gap: 8px; }
.status i { width: 5px; height: 5px; border-radius: 50%; }
.status--named { color: var(--green-hi); } .status--named i { background: var(--green-hi); }
.status--missing { color: var(--red-hi); } .status--missing i { background: var(--red-hi); }
.status--weak { color: var(--warn-hi); } .status--weak i { background: var(--warn-hi); }
.bars { display: grid; }
.bar { display: grid; grid-template-columns: 160px 1fr 56px; align-items: center; gap: 16px; font-family: var(--font-display); font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; padding: 13px 4px; border-bottom: 1px solid var(--hair-dark); }
.bar:last-child { border-bottom: 0; }
.bar__track { height: 4px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar__fill { height: 100%; width: 0; background: var(--muted-dark); }
.bar--you .bar__fill { background: var(--accent); }
.bar--you .bar__name { color: var(--accent-hi); font-weight: 600; }
.bar__val { font-family: var(--font-mono); font-size: 13px; text-align: right; color: var(--muted-dark); }
.found { display: grid; }
.found li { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; padding: 14px 4px; border-bottom: 1px solid var(--hair-dark); font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -.01em; }
.found li:last-child { border-bottom: 0; }
.found li svg { width: 16px; height: 16px; color: var(--red-hi); margin-top: 6px; }
.found li span { font-family: var(--font-body); font-weight: 400; color: var(--muted-dark); display: block; font-size: 13.5px; margin-top: 3px; }
.plan4 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.plan4 li { padding: 18px 4px; border-bottom: 1px solid var(--hair-dark); }
.plan4 b { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 6px; }
.plan4 b::before { content: attr(data-n); font-family: var(--font-mono); color: var(--accent-hi); font-weight: 500; margin-right: 10px; font-size: 12.5px; }
.plan4 p { color: var(--muted-dark); font-size: 14px; }

/* ---------- INSTEAD ---------- */
.instead { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.instead__query { margin-bottom: 18px; }
.rank { display: grid; border-top: 1px solid var(--hair); }
.rrow { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 16px; text-align: left; width: 100%; padding: 18px 12px 18px 6px; border-bottom: 1px solid var(--hair); background: transparent; min-height: 64px; position: relative; transition: background .2s, padding .25s var(--ease-out); }
.rrow::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 2px; background: transparent; transition: background .2s; }
.rrow:hover { background: rgba(12,15,13,.03); }
.rrow[aria-selected="true"] { background: rgba(12,15,13,.04); padding-left: 14px; }
.rrow[aria-selected="true"]::before { background: var(--ink); }
.rrow__pos { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--muted); line-height: 1; display: grid; }
.rrow__pos small { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); margin-top: 5px; font-weight: 500; }
.rrow__name { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.rrow__name small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); margin-top: 5px; letter-spacing: 0; }
.rrow__share { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.rrow--you { background: rgba(255,77,46,.06); }
.rrow--you::before { background: var(--accent); }
.rrow--you[aria-selected="true"]::before { background: var(--accent); }
.rrow--you .rrow__pos { color: var(--accent-deep); }
.rrow--you .rrow__share { color: var(--accent-deep); }
.why { position: sticky; top: 96px; }
.why__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.1; }
.why__sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--hair); }
.meters { display: grid; gap: 14px; }
.meter { display: grid; grid-template-columns: 180px 1fr 40px; gap: 14px; align-items: center; font-size: 14px; }
.meter__track { height: 3px; background: var(--paper-2); overflow: hidden; }
.meter__fill { height: 100%; width: 0; background: var(--ink); }
.meter--low .meter__fill { background: var(--red); }
.meter--mid .meter__fill { background: var(--warn); }
.meter__val { font-family: var(--font-mono); font-size: 12.5px; text-align: right; color: var(--muted); }
.why__improve { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hair); }
.why__improve h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.why__improve li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; padding: 7px 0; }
.why__improve li::before { content: "—"; color: var(--accent-deep); }

/* ---------- FIX IT ---------- */
.fixit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.fixcol { border-radius: var(--radius); padding: clamp(24px, 3.2vw, 40px); border: 1px solid var(--hair); background: var(--white); }
.fixcol--us { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.fixcol__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.fixcol--us .fixcol__label { color: var(--accent-hi); }
.verbs { display: grid; gap: 4px; }
.verbs li { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: clamp(24px, 3vw, 40px); font-weight: 700; letter-spacing: -.03em; line-height: 1.15; }
.verbs li svg { width: 22px; height: 22px; flex: none; color: var(--accent); }
.fixcol--them .verbs li { color: var(--muted); }
.fixcol--them .verbs li svg { color: var(--line); }
.fixcol__foot { margin-top: 26px; font-size: 14.5px; color: var(--muted); max-width: 34ch; }
.fixcol--us .fixcol__foot { color: var(--muted-dark); }
.fixit__stmt { margin-top: clamp(28px, 3vw, 44px); font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px); font-weight: 500; letter-spacing: -.02em; max-width: 30ch; }

/* ---------- ENGINE (kept element) ---------- */
.engine { position: relative; width: 100%; max-width: 760px; aspect-ratio: 760 / 580; margin: 0 auto clamp(40px, 5vw, 64px); }
.engine__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.engine__base { stroke: rgba(255,255,255,.16); stroke-width: 1.5; fill: none; }
.engine__flow { stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 4 16; fill: none; filter: drop-shadow(0 0 4px rgba(255,77,46,.7)); opacity: 0; }
.engine__flow.is-on { opacity: 1; animation: flow-dash 2.4s linear infinite; }
@keyframes flow-dash { to { stroke-dashoffset: -200px; } }
.engine__tile { position: absolute; top: 15.9%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--white); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 12px 26px -12px rgba(0,0,0,.8), 0 0 0 6px rgba(255,255,255,.04); }
.engine__tile .tile { border: 0; box-shadow: none; background: transparent; width: 22px; height: 22px; }
.engine__tile .tile svg { width: 22px; height: 22px; }
.engine__pill { position: absolute; top: 60.7%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; padding: 9px 20px; border-radius: 999px; background: var(--paper); color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 14px; box-shadow: 0 12px 30px -10px rgba(0,0,0,.6); }
.engine__core { position: absolute; top: 77.6%; left: 50%; transform: translate(-50%, -50%); width: 78px; height: 78px; display: grid; place-items: center; }
.engine__glow { position: absolute; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(255,77,46,.45), transparent 70%); opacity: 0; }
.engine__glow.is-on { animation: pulse-glow 3.4s ease-in-out infinite; }
@keyframes pulse-glow { 0%, 100% { opacity: .4; } 50% { opacity: .95; } }
.engine__coreBox { position: relative; width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center; background: linear-gradient(150deg, #ff7a62, #d63a1f); color: var(--white); box-shadow: 0 18px 42px -12px rgba(255,77,46,.8); }
.engine__coreBox svg { width: 30px; height: 30px; }
.engine__bottom { position: absolute; top: 91.5%; left: 50%; transform: translate(-50%, -50%); display: flex; gap: 9px; }
.engine__bottom .tile { width: 36px; height: 36px; border-radius: 11px; }
.engine__bottom .tile svg { width: 19px; height: 19px; }
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.step { padding: 22px 18px 20px; border-radius: var(--radius); display: grid; gap: 10px; align-content: start; border: 1px solid var(--hair); background: var(--white); color: var(--ink); }
.step:nth-child(even) { background: var(--ink-2); color: var(--paper); border-color: var(--hair-dark); }
.step__n { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--accent); }
.step b { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -.01em; line-height: 1.25; }
.step p { font-size: 13.5px; color: var(--muted); }
.step:nth-child(even) p { color: var(--muted-dark); }
.step--managed { outline: 1px dashed rgba(255,77,46,.6); outline-offset: -1px; }

/* ---------- LAYERS ---------- */
.layers { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.stack { position: relative; display: grid; border-top: 1px solid var(--hair); }
.scan { position: absolute; left: -8px; right: -8px; height: 1px; background: var(--accent); box-shadow: 0 0 12px var(--accent); top: 0; opacity: 0; pointer-events: none; z-index: 2; }
.layer { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 16px; text-align: left; width: 100%; padding: 15px 8px; border-bottom: 1px solid var(--hair); background: transparent; min-height: 54px; transition: background .2s, padding .2s var(--ease-out); }
.layer:hover, .layer[aria-selected="true"] { background: rgba(12,15,13,.035); padding-left: 14px; }
.layer__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); transition: background .35s; }
.layer[data-state="ok"] .layer__dot { background: var(--warn); }
.layer[data-state="strong"] .layer__dot { background: var(--green); }
.layer[data-state="fixed"] .layer__dot { background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.layer__name { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -.01em; }
.layer__state { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.layer[data-state="fixed"] .layer__state { color: var(--green); }
.layer__detail { position: sticky; top: 96px; border-radius: var(--radius); border: 1px solid var(--hair); background: var(--white); padding: clamp(22px, 2.6vw, 32px); }
.layer__detail h3 { font-size: 23px; margin-bottom: 10px; }
.layer__detail p { color: var(--muted); font-size: 15px; }
.layer__detail ul { margin-top: 18px; display: grid; border-top: 1px solid var(--hair); }
.layer__detail li { display: flex; gap: 12px; font-size: 14.5px; align-items: baseline; padding: 9px 0; border-bottom: 1px solid var(--hair); }
.layer__detail li::before { content: "—"; color: var(--accent-deep); flex: none; }
.layer__legend { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.layer__legend span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.layer__legend i { width: 6px; height: 6px; border-radius: 50%; }

/* ---------- MANAGED ---------- */
.managed { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.managed .h2 { max-width: 15ch; }
.managed__body p + p { margin-top: 14px; }
.order { border-radius: var(--radius); border: 1px solid var(--hair-dark); background: var(--ink-2); padding: 0; overflow: hidden; }
.order__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--hair-dark); font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-dark); }
.order__head b { color: var(--paper); font-weight: 500; }
.order__list { display: grid; }
.order__row { display: grid; grid-template-columns: 20px 1fr auto; gap: 16px; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--hair-dark); font-size: 14.5px; }
.order__row:last-child { border-bottom: 0; }
.order__box { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #4a4f4b; display: grid; place-items: center; }
.order__box svg { width: 10px; height: 10px; color: var(--white); opacity: 0; transform: scale(.4); }
.order__row.is-done .order__box { background: var(--accent); border-color: var(--accent); }
.order__row.is-done .order__box svg { opacity: 1; transform: scale(1); transition: transform .25s var(--ease-out), opacity .2s; }
.order__row .mono { color: var(--muted-dark); }
.order__foot { padding: 14px 22px; background: var(--ink-3); font-size: 13px; color: var(--muted-dark); }

/* ---------- BEFORE / AFTER ---------- */
.ba { border-radius: var(--radius); border: 1px solid var(--hair); background: var(--white); padding: clamp(24px, 3.2vw, 44px); }
.ba__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.seg { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--paper-2); }
.seg button { min-height: 44px; padding: 0 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--muted); transition: background .2s, color .2s; }
.seg button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.ba__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 48px); }
.stat { display: grid; gap: 12px; }
.stat__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.stat__num { font-family: var(--font-display); font-size: clamp(44px, 6vw, 84px); font-weight: 700; letter-spacing: -.045em; line-height: .95; font-variant-numeric: tabular-nums; }
.stat__num small { font-size: .42em; color: var(--muted); font-weight: 500; letter-spacing: -.01em; margin-left: 4px; }
.stat__track { height: 3px; background: var(--paper-2); overflow: hidden; }
.stat__fill { height: 100%; width: 0; background: var(--ink); }
.stat--you .stat__fill { background: var(--accent); }
.stat--comp .stat__fill { background: var(--muted); }
.stat__hint { font-size: 13.5px; color: var(--muted); }

/* ---------- MATTERS ---------- */
.matters { text-align: left; }
.matters__big { font-size: clamp(34px, 6vw, 84px); font-weight: 700; letter-spacing: -.045em; line-height: .98; max-width: 14ch; }
.matters__text { margin-top: clamp(28px, 3vw, 44px); font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 34px); font-weight: 500; letter-spacing: -.025em; line-height: 1.25; max-width: 30ch; }
.matters__text .w { display: inline-block; opacity: .18; }
.matters__side { display: grid; gap: 8px; margin-top: 36px; font-size: 15px; color: var(--muted-dark); max-width: 36ch; }

/* ---------- QUERY BOARD ---------- */
.rest { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.board { border-radius: var(--radius); border: 1px solid var(--hair); background: var(--white); overflow: hidden; box-shadow: var(--lift); }
.board__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--hair-dark); background: var(--ink); color: var(--paper); }
.board__head .board__title { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.board__head .board__title span { color: var(--muted-dark); font-weight: 400; }
.live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--green-hi); }
.live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green-hi); animation: live 1.4s ease-in-out infinite; }
@keyframes live { 50% { opacity: .3; } }
.qrow { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--hair); }
.qrow:last-child { border-bottom: 0; }
.qrow__q { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -.01em; line-height: 1.1; }
.qrow__q small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.qrow__s { display: flex; gap: 6px; align-items: center; }
.qrow__s .tile--sm { opacity: .3; filter: grayscale(1); transition: opacity .3s, filter .3s; }
.qrow__s .tile--sm.is-on { opacity: 1; filter: none; }
.qrow .status { margin-left: 10px; min-width: 88px; justify-content: flex-end; }
.qrow .status--named { color: var(--green); } .qrow .status--named i { background: var(--green); }
.qrow .status--missing { color: var(--red); } .qrow .status--missing i { background: var(--red); }
.qrow .status--weak { color: var(--warn); } .qrow .status--weak i { background: var(--warn); }
.lookat { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lookat li { padding: 12px 14px; border-radius: 10px; background: var(--white); border: 1px solid var(--hair); font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.lookat li span { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 2px; }

/* ---------- TYPES ---------- */
.types__tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.types__tabs button { min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--hair); background: var(--white); font-weight: 500; font-size: 14.5px; transition: background .2s, color .2s, border-color .2s; }
.types__tabs button[aria-selected="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.types__tabs button:hover { border-color: var(--ink); }
.tpane { display: none; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 44px); border-radius: var(--radius); border: 1px solid var(--hair); background: var(--white); padding: clamp(22px, 3.2vw, 40px); }
.tpane.is-on { display: grid; }
.tpane h3 { font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 10px; }
.tpane p { color: var(--muted); max-width: 40ch; }
.tpane__for { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.tpane__for span { font-family: var(--font-mono); font-size: 12px; padding: 5px 9px; border-radius: 6px; background: var(--paper-2); }
.qlist { display: grid; gap: 8px; align-content: start; }
.qlist li { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 999px; background: var(--paper); border: 1px solid var(--hair); font-size: 14.5px; }
.qlist li svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* ---------- MULTI ---------- */
.multi { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.locs { display: grid; border-top: 1px solid var(--hair-dark); }
.loc { display: grid; grid-template-columns: 150px 1fr 64px; align-items: center; gap: 16px; padding: 16px 8px; border-bottom: 1px solid var(--hair-dark); font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -.01em; transition: background .3s; position: relative; }
.loc__track { height: 3px; background: rgba(255,255,255,.08); overflow: hidden; position: relative; }
.loc__fill { height: 100%; width: 0; background: var(--muted-dark); }
.loc__avg { position: absolute; top: -4px; bottom: -4px; width: 1px; background: var(--accent); opacity: 0; }
.loc__val { font-family: var(--font-mono); font-weight: 400; font-size: 13px; text-align: right; color: var(--muted-dark); }
.loc.is-flag { background: rgba(201,70,63,.08); }
.loc.is-flag .loc__fill { background: var(--red-hi); }
.loc.is-flag .loc__val { color: var(--red-hi); }
.loc__note { font-family: var(--font-mono); font-weight: 400; font-size: 12px; color: var(--red-hi); display: none; grid-column: 1 / -1; }
.loc.is-flag .loc__note { display: block; }
.multi__ctl { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.multi__avg { margin-top: 14px; }

/* ---------- MANIFESTO ---------- */
.manifesto { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.manifesto li { padding: clamp(24px, 3.4vw, 44px); border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); display: grid; gap: 12px; align-content: start; }
.manifesto li:nth-child(2n) { border-right: 0; }
.manifesto li:nth-last-child(-n+2) { border-bottom: 0; }
.manifesto b { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; letter-spacing: -.03em; line-height: 1.1; }
.manifesto p { color: var(--muted); font-size: 15px; max-width: 40ch; }
.manifesto li.is-accent { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.manifesto li.is-accent p { color: var(--muted-dark); }
.manifesto li.is-accent b { color: var(--accent-hi); }

/* ---------- METHOD ---------- */
.method { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.vars { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vars li { padding: 16px 18px; border-radius: 10px; border: 1px solid var(--hair); background: var(--white); }
.vars b { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 3px; }
.vars p { color: var(--muted); font-size: 13.5px; }
.matrix { border-radius: var(--radius); border: 1px solid var(--hair); background: var(--white); padding: 24px; }
.matrix__head { display: grid; grid-template-columns: 130px repeat(4, 1fr); gap: 8px; margin-bottom: 10px; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--hair); }
.matrix__head .tile { justify-self: center; }
.matrix__head .mono { color: var(--muted); }
.matrix__row { display: grid; grid-template-columns: 130px repeat(4, 1fr); gap: 8px; align-items: center; margin-bottom: 8px; }
.matrix__q { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cell { height: 26px; border-radius: 4px; background: var(--paper-2); position: relative; }
.cell::after { content: ""; position: absolute; inset: 0; border-radius: 4px; opacity: 0; transform: scale(.6); background: var(--paper-2); }
.cell[data-v="1"]::after { background: var(--green); }
.cell[data-v="0"]::after { background: var(--red-soft); border: 1px dashed var(--red); }
.cell[data-v="w"]::after { background: var(--warn); }
.cell.is-on::after { opacity: 1; transform: scale(1); transition: transform .3s var(--ease-out), opacity .2s; }
.matrix__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hair); }
.matrix__score { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.matrix__score b { color: var(--ink); font-weight: 500; }

/* ---------- PRICING ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.plan { border-radius: var(--radius); border: 1px solid var(--hair); background: var(--white); padding: 30px 26px 26px; display: grid; gap: 18px; align-content: start; position: relative; }
.plan--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.plan__tag { position: absolute; top: -12px; left: 26px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--accent); color: var(--white); }
.plan__for { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.plan--featured .plan__for { color: var(--accent-hi); }
.plan__name { font-family: var(--font-display); font-size: 27px; font-weight: 600; letter-spacing: -.025em; line-height: 1; }
.plan__desc { color: var(--muted); font-size: 14.5px; min-height: 3.2em; }
.plan--featured .plan__desc { color: var(--muted-dark); }
.plan__price { font-family: var(--font-display); font-size: 42px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.plan__price small { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-left: 6px; }
.plan--featured .plan__price small { color: var(--muted-dark); }
.plan__price small { white-space: nowrap; }
.plan .btn { width: 100%; }
.plan--featured .btn--primary { background: var(--paper); color: var(--ink); }
.plan--featured .btn--primary:hover { background: var(--accent); color: var(--white); }
.plan__list { display: grid; padding-top: 6px; border-top: 1px solid var(--hair); }
.plan--featured .plan__list { border-color: var(--hair-dark); }
.plan__list li { display: flex; gap: 12px; align-items: baseline; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--hair); }
.plan--featured .plan__list li { border-color: var(--hair-dark); }
.plan__list li:last-child { border-bottom: 0; }
.plan__list li::before { content: "—"; color: var(--accent); flex: none; }
.plan__list .plan__inh { color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; }
.plan__list .plan__inh::before { display: none; }
.plans__note { margin-top: 22px; }

/* ---------- ANALYZER ---------- */
.analyzer { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.form { display: grid; gap: 16px; border-radius: var(--radius); border: 1px solid var(--hair-dark); background: var(--ink-2); padding: clamp(22px, 2.8vw, 32px); }
.field { display: grid; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--muted-dark); }
.field label span { color: var(--muted-dark); font-weight: 400; }
.field input { width: 100%; min-height: 50px; padding: 0 14px; border-radius: 8px; border: 1px solid var(--hair-dark); background: var(--ink); color: var(--paper); outline: none; transition: border-color .2s; }
.field input::placeholder { color: #6f756f; }
.field input:focus { border-color: var(--accent); }
.field .err { display: none; font-size: 13px; color: var(--red-hi); }
.field.is-invalid .err { display: block; }
.field.is-invalid input { border-color: var(--red); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__foot { font-size: 12.5px; color: var(--muted-dark); }
.progress { display: grid; }
.progress li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: center; font-size: 14.5px; color: var(--muted-dark); opacity: .5; padding: 10px 0; border-bottom: 1px solid var(--hair-dark); }
.progress li:last-child { border-bottom: 0; }
.progress li.is-on { opacity: 1; color: var(--paper); }
.progress li.is-done { opacity: 1; }
.progress li i { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #4a4f4b; display: grid; place-items: center; }
.progress li.is-on i { border-color: var(--accent); border-top-color: transparent; animation: spin .8s linear infinite; }
.progress li.is-done i { border-color: var(--green); background: var(--green); }
.progress li.is-done i::after { content: ""; width: 5px; height: 5px; background: var(--ink); border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
.preview { border-radius: var(--radius); border: 1px solid var(--hair-dark); background: var(--ink-2); padding: clamp(22px, 2.8vw, 32px); display: grid; gap: 18px; }
.preview__state { display: none; }
.preview__state.is-on { display: grid; gap: 18px; }
.preview__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--hair-dark); }
.preview__title { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.preview__title small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13.5px; color: var(--muted-dark); margin-top: 5px; }
.preview__empty { display: grid; gap: 12px; color: var(--muted-dark); font-size: 15px; padding: 4px 0; }
.preview__empty .mono { color: var(--accent-hi); }
.mini { display: grid; }
.mini__row { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--hair-dark); font-size: 14.5px; }
.mini__row:last-child { border-bottom: 0; }
.mini__row .mono { color: var(--muted-dark); }
.mini__row.is-blur { filter: blur(4px); opacity: .5; }
.preview__cta { display: grid; gap: 12px; padding-top: 18px; border-top: 1px solid var(--hair-dark); }
.preview__cta .field input { background: var(--ink); }
.done { display: grid; gap: 12px; padding: 8px 0; }
.done b { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.done p { color: var(--muted-dark); font-size: 15px; }
.done .check { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; }
.done .check svg { width: 20px; height: 20px; color: var(--white); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.faq__list { display: grid; border-top: 1px solid var(--hair); }
.faq__item { border-bottom: 1px solid var(--hair); background: transparent; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; font-weight: 600; font-size: 16px; min-height: 60px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { width: 16px; height: 16px; flex: none; color: var(--accent-deep); transition: transform .25s var(--ease-out); }
.faq__item[open] summary svg { transform: rotate(45deg); }
.faq__item div { padding: 0 4px 22px; color: var(--muted); font-size: 15px; max-width: 62ch; }

/* ---------- FINAL ---------- */
.final { text-align: center; padding: clamp(90px, 11vw, 150px) 0; overflow: hidden; }
.final::before { content: ""; position: absolute; left: 50%; top: 50%; width: 900px; height: 500px; transform: translate(-50%, -50%); background: radial-gradient(ellipse, rgba(255,77,46,.16), transparent 65%); pointer-events: none; }
.final .wrap { position: relative; }
.final .h2 { margin: 0 auto 18px; max-width: 18ch; }
.final .lede { margin: 0 auto 32px; }
.final__cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 72px 0 30px; border-top: 1px solid var(--hair-dark); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { color: var(--muted-dark); font-size: 14px; max-width: 32ch; margin-top: 14px; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 16px; font-weight: 500; }
.footer__col ul { display: grid; gap: 2px; }
.footer__col a { display: inline-block; min-width: 44px; padding: 11px 0; font-size: 14.5px; color: #cfd4cf; }
.footer__col a:hover { color: var(--accent-hi); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--hair-dark); font-size: 13px; color: var(--muted-dark); }

/* ---------- CONSENT ---------- */
.consent { position: fixed; left: 20px; bottom: 20px; z-index: 120; width: min(440px, calc(100% - 40px)); }
.consent[hidden] { display: none; }
.consent__card { background: var(--white); border: 1px solid var(--hair); border-radius: 16px; padding: 22px 22px 20px; box-shadow: 0 30px 60px -30px rgba(12,15,13,.5), 0 2px 8px -4px rgba(12,15,13,.15); }
.consent__view[hidden] { display: none; }
.consent__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.consent__mark { width: 22px; height: 22px; flex: none; }
.consent__title { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -.02em; line-height: 1.15; }
.consent__body { font-size: 14px; color: var(--muted); line-height: 1.55; }
.consent__policy { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.consent__policy:hover { color: var(--accent-deep); }
.consent__actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.consent__actions .btn { min-height: 44px; padding: 0 18px; font-size: 14px; }
.consent__link { min-height: 44px; padding: 0 6px; font-size: 13.5px; font-weight: 500; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; margin-left: auto; }
.consent__link:hover { color: var(--ink); }
.consent__list { display: grid; border-top: 1px solid var(--hair); margin-top: 6px; }
.consent__row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--hair); }
.consent__row b { display: block; font-size: 14.5px; font-weight: 600; }
.consent__row span:not(.sr-only) { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.consent__always { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--green); white-space: nowrap; }
.switch { position: relative; display: inline-block; width: 46px; height: 28px; flex: none; cursor: pointer; }
.switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.switch i { position: absolute; inset: 0; border-radius: 999px; background: var(--line); transition: background .2s; }
.switch i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 6px rgba(12,15,13,.25); transition: transform .22s var(--ease-out); }
.switch input:checked + i { background: var(--accent); }
.switch input:checked + i::after { transform: translateX(18px); }
.switch input:focus-visible + i { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 767px) {
  .consent { left: 0; right: 0; bottom: 0; width: 100%; }
  .consent__card { border-radius: 18px 18px 0 0; border-bottom: 0; padding: 20px 18px calc(18px + env(safe-area-inset-bottom, 0px)); }
  .consent__actions .btn { flex: 1 1 40%; }
  .consent__link { margin-left: 0; width: 100%; text-align: center; }
}

/* ---------- reveal defaults ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); }
.no-js [data-reveal], .reduced [data-reveal] { opacity: 1; transform: none; }
.split-line { display: block; overflow: hidden; }

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .hero__form { flex-direction: row; align-items: center; border-radius: 999px; padding: 8px 8px 8px 20px; }
  .hero__form svg.hero__search { display: block; }
  .hero__stack .tile { width: 50px; height: 50px; border-radius: 14px; margin-left: -12px; }
  .hero__stack .tile svg { width: 24px; height: 24px; }
  .hero__stack .tile:first-child { margin-left: 0; }
  .hero__row { gap: 14px; }
  .hero__ai { gap: 10px; }
  .engine__tile { width: 50px; height: 50px; border-radius: 14px; }
  .engine__tile .tile, .engine__tile .tile svg { width: 26px; height: 26px; }
}
@media (min-width: 768px) {
  .engine__tile { width: 60px; height: 60px; border-radius: 16px; }
  .engine__tile .tile, .engine__tile .tile svg { width: 30px; height: 30px; }
}
@media (min-width: 960px) {
  .hero__lines { display: block; }
  .hero__tile { display: grid; }
  .stage__ctl { display: none; }
}
@media (max-width: 1023px) {
  .nav__links, .nav__login { display: none; }
  .burger { display: grid; }
  .nav__cta { display: none; }
  .stage__grid { grid-template-columns: 1fr; min-height: 0; }
  .stage__caps { min-height: 140px; }
  .stage__ctl { display: flex; gap: 8px; }
  .scene { min-height: 0; }
  .plans { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section__head--split { grid-template-columns: 1fr; }
  .audit, .instead, .layers, .managed, .rest, .multi, .method, .analyzer, .faq { grid-template-columns: 1fr; }
  .why, .layer__detail { position: static; }
}
@media (max-width: 767px) {
  :root { --gutter: 18px; }
  .btn { white-space: normal; max-width: 100%; text-align: center; line-height: 1.2; padding-top: 12px; padding-bottom: 12px; height: auto; }
  .section__cta .btn, .final__cta .btn { width: 100%; }
  .nav__inner { height: 62px; }
  .hero__sub { font-size: 16px; }
  .hero__wash--a { width: 120vw; height: 120vw; left: -50vw; top: -40vw; }
  .hero__wash--b { width: 100vw; height: 100vw; right: -50vw; top: -20vw; }
  .answers { gap: 8px; }
  .answer { padding: 12px 12px 10px; }
  .answer__head { font-size: 12px; gap: 7px; margin-bottom: 6px; }
  .answer__list li { font-size: 13.5px; padding: 4px 0; }
  .trow { font-size: 15px; grid-template-columns: 28px 1fr auto; }
  .scene { min-height: 0; }
  .shortlist li { flex-wrap: wrap; }
  .shortlist li .mono { flex: 1 1 100%; padding-left: 26px; }
  .panel__label { flex-direction: column; align-items: flex-start; gap: 4px; }
  .thennow, .fixit, .manifesto, .vars, .plan4, .form__row, .tpane { grid-template-columns: 1fr; }
  .manifesto li { border-right: 0; }
  .manifesto li:nth-last-child(2) { border-bottom: 1px solid var(--hair); }
  .facts { grid-template-columns: 1fr; gap: 20px; }
  .ba__grid { grid-template-columns: 1fr; }
  .stat__num { font-size: 52px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .lookat { grid-template-columns: 1fr 1fr; }
  .bar { grid-template-columns: 110px 1fr 48px; font-size: 14.5px; }
  .meter { grid-template-columns: 120px 1fr 36px; }
  .loc { grid-template-columns: 100px 1fr 52px; font-size: 15px; }
  .rrow { grid-template-columns: 44px 1fr auto; }
  .rrow__pos { font-size: 19px; }
  .rrow__name { font-size: 17px; }
  .rrow__share { font-size: 18px; }
  .srow { grid-template-columns: 36px 1fr auto; gap: 12px; }
  .srow__name { font-size: 16px; }
  .matrix__head, .matrix__row { grid-template-columns: 104px repeat(4, 1fr); gap: 6px; }
  .matrix { padding: 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .engine__pill { font-size: 12px; padding: 7px 12px; }
  .engine__core { width: 60px; height: 60px; }
  .engine__coreBox { width: 56px; height: 56px; border-radius: 16px; }
  .engine__glow { width: 110px; height: 110px; }
  .verbs li { font-size: 24px; }
  .qrow { grid-template-columns: 1fr; gap: 8px; }
  .qrow .status { justify-content: flex-start; margin-left: 0; }
}

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__tile, .hero__wash, .engine__flow, .engine__glow, .live i, .query__caret, .sign--steady, .sign--ignite, .ticker__track { animation: none !important; }
  .ticker__track { flex-wrap: wrap; width: auto; }
  .engine__flow, .engine__glow { opacity: 1; }
  .sign { transition: none; }
  .sign--moving { filter: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .btn, .rrow, .tab, .layer, .plan, .step { transition: none; }
  .plan:hover, .step:hover { transform: none; }
}
