/* ============================================================================
   GRIDSEND SUPPLY — Home v2 (App-forward)
   Shared stylesheet. Hero block is preserved verbatim from the live site.
   Below the hero: three toggleable directions for A/B comparison.
============================================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button, input { font-family: inherit; border: none; background: none; }
a { text-decoration: none; }

/* ── TOKENS ── */
:root {
  --firmament:      #0A0F23;
  --firmament-lift: #111829;
  --firmament-high: #18213a;
  --autumn:         #FAE4CF;
  --autumn-75:      rgba(250, 228, 207, 0.75);
  --autumn-50:      rgba(250, 228, 207, 0.5);
  --autumn-30:      rgba(250, 228, 207, 0.3);
  --autumn-15:      rgba(250, 228, 207, 0.15);
  --autumn-08:      rgba(250, 228, 207, 0.08);
  --brass:          #B8860B;
  --brass-light:    #D4A017;
  --brass-30:       rgba(184, 134, 11, 0.3);
  --brass-12:       rgba(184, 134, 11, 0.12);
  /* very sparing 4th-color reserve (brand-approved muted ember) */
  --ember:          #C04A1A;
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── BASE ── */
html { scroll-behavior: smooth; background: var(--firmament); }
body {
  background: var(--firmament);
  color: var(--autumn);
  font-family: 'Cormorant Garamond', 'Gloock', Georgia, serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
::selection { background: var(--brass); color: var(--firmament); }

/* ── REVEAL CLASSES ── */
.rv        { opacity: 0; transform: translateY(20px);  transition: opacity 700ms ease-out, transform 700ms ease-out; }
.rv-left   { opacity: 0; transform: translateX(-48px); transition: opacity 700ms ease-out, transform 700ms ease-out; }
.rv-right  { opacity: 0; transform: translateX(48px);  transition: opacity 700ms ease-out, transform 700ms ease-out; }
.rv-scale  { opacity: 0; transform: scale(0.92);       transition: opacity 700ms ease-out, transform 700ms ease-out; }
.rv.in, .rv-left.in, .rv-right.in, .rv-scale.in { opacity: 1; transform: none; }

/* ── SAFARI FONT-ECHO FIX (proven live-page recipe, commit d3fd908) ──
   On Safari desktop, heavy Gloock glyphs ghost/double ("echo trail") when they
   sit on a composited section layer (isolation/translateZ) AND reveal via a .rv
   transform. The cure is per-heading rasterization stabilization, NOT removing
   the section layer. The hero .hl already carries this quartet; every other
   Gloock heading needs it too. font-synthesis:none + grayscale smoothing force a
   single deterministic glyph raster so no offset copy is stranded. */
.nav-mark,
.sec-hed,
.demo-step .step-hed,
.flex-statement,
.flex-num,
.nots-head .h,
.not-cell .n-no,
.get-app .price-tag,
.get-app .ga-hed,
.store-btn .st-big,
.jd-hed,
.trust-name,
.footer-wm,
.vehicle-hero .big,
.mode-cell .m-hed,
.eco-stage .eco-name,
.sever-line-txt {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

/* ── SHARED TYPE HELPERS ── */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 13px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass);
}
.eyebrow-quiet { color: var(--autumn-50); }
.sec-hed {
  font-family: 'Gloock', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--autumn);
}
.sec-hed.italic { font-family: 'Gloock', Georgia, serif; font-style: normal; }
.lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.5; color: var(--autumn-75);
}
.body-lg {
  font-size: 21px; line-height: 1.72; color: var(--autumn-75);
}
.body-lg p + p { margin-top: 16px; }
.hairline { display:block; width:44px; height:1px; background:var(--brass); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 350ms ease, transform 350ms ease;
}
.nav.bg   { background: rgba(10,15,35,0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav.hide { transform: translateY(-100%); }
.nav-mark { font-family: 'Gloock', Georgia, serif; font-size: 15px; letter-spacing: 0.04em; color: var(--autumn); }
.nav-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 400; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); border: 1px solid var(--brass);
  border-radius: 3px; padding: 9px 22px; cursor: pointer; white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}
.nav-btn:hover { background: var(--brass); color: var(--firmament); }

/* ════════════════════════════════════════════════════════════════════
   HERO — PRESERVED VERBATIM FROM LIVE SITE. Do not restyle.
   (Only the CTA row swaps per direction, handled below.)
   ════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 32px 120px;
  position: relative;
  background: radial-gradient(ellipse 80% 55% at 50% 46%, #1a2344 0%, var(--firmament) 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(250,228,207,0.18) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 13%, rgba(250,228,207,0.12) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 72%, rgba(184,134,11,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 78%, rgba(250,228,207,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, rgba(250,228,207,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 8%,  rgba(250,228,207,0.1)  0%, transparent 100%),
    radial-gradient(1px 1px at 72% 38%, rgba(250,228,207,0.08) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; width: 100%; position: relative; isolation: isolate; transform: translateZ(0); }
.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--autumn-50);
  opacity: 0; animation: a-fade 500ms ease 200ms forwards;
}
.hero-hed { margin-top: 40px; display: flex; flex-direction: column; align-items: center; }
.hl {
  display: block;
  font-family: 'Gloock', Georgia, serif;
  font-size: clamp(3.8rem, 9vw, 10.5rem);
  line-height: 0.96; color: var(--autumn);
  letter-spacing: -0.02em;
  opacity: 0; transform: translateY(16px);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; font-synthesis: none;
  -webkit-text-stroke: 2px var(--autumn);
}
.hl:nth-child(1) { animation: a-up 550ms ease-out 310ms forwards; }
.hl:nth-child(2) { animation: a-up 550ms ease-out 420ms forwards; }
.hl:nth-child(3) {
  animation: a-up-skew 550ms ease-out 530ms forwards;
  color: var(--brass-light); -webkit-text-stroke: 2px var(--brass-light);
}
.hero-rule {
  display: block; width: 44px; height: 1px;
  background: var(--brass); margin: 36px auto 0;
  transform: scaleX(0); transform-origin: center;
  animation: a-scale 450ms ease 680ms forwards;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--autumn-75); font-style: italic; line-height: 1.55;
  margin-top: 28px; opacity: 0; animation: a-fade 500ms ease 800ms forwards;
}
.cycle-text { display: inline-block; opacity: 1; transform: translateY(0); transition: opacity 260ms ease, transform 260ms ease; }
.cycle-text.ct-exit { opacity: 0; transform: translateY(14px); filter: blur(7px); transition: opacity 220ms ease, transform 220ms ease; }
.cycle-text.ct-enter { opacity: 0; transform: translateY(-14px); filter: blur(7px); transition: none; }

/* Hero CTA row — base button styles (shared); variants toggled per direction */
.hero-cta-row {
  margin-top: 44px; display: none;
  align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: a-fade 500ms ease 950ms forwards;
}
.hero-cta {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--firmament); background: var(--brass);
  padding: 15px 36px; border-radius: 2px; white-space: nowrap;
  cursor: pointer; transition: background 200ms ease;
}
.hero-cta:hover { background: var(--brass-light); }
.hero-cta .price { font-size: 11px; letter-spacing: 0.12em; opacity: 0.75; }
.hero-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--autumn-75); background: transparent;
  border: 1px solid var(--autumn-15);
  padding: 14px 28px; border-radius: 2px; white-space: nowrap;
  cursor: pointer; transition: border-color 200ms ease, color 200ms ease;
}
.hero-cta-ghost:hover { color: var(--autumn); border-color: var(--brass-30); }
.hero-cta-sub {
  display: block; width: 100%;
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--autumn-30);
  margin-top: 14px;
}
.scroll-ind { position: absolute; bottom: 44px; left: 50%; color: var(--brass); opacity: 0; }
.scroll-ind.show { animation: a-fade 400ms ease forwards, ind-bob 2.6s ease-in-out 400ms infinite; }
.scroll-ind.hide { opacity: 0 !important; animation: none !important; pointer-events: none; }
.scroll-ind svg { width: 18px; height: 18px; }

@keyframes a-fade  { to { opacity: 1; } }
@keyframes a-up    { to { opacity: 1; transform: translateY(0); } }
@keyframes a-up-skew { to { opacity: 1; transform: skewX(-8deg); } }
@keyframes a-scale { to { transform: scaleX(1); } }
@keyframes ind-bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; } }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--firmament-lift);
  border-top: 1px solid var(--brass-12);
  border-bottom: 1px solid var(--brass-12);
  padding: 18px 0; overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 32s linear infinite; }
.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--autumn-50); white-space: nowrap; padding: 0 32px;
}
.marquee-dot { color: var(--brass); margin: 0 4px; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════════════
   DIRECTION SWITCHER (A/B compare control — chrome, not content)
   ════════════════════════════════════════════════════════════════════ */
.switcher {
  position: fixed; z-index: 400;
  left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 4px;
  background: rgba(10,15,35,0.86);
  border: 1px solid var(--brass-30);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 6px; border-radius: 3px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.switcher-label {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 9px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--autumn-30);
  padding: 0 10px 0 8px; white-space: nowrap;
}
.switcher-btn {
  font-family: 'Outfit', sans-serif; font-weight: 400; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--autumn-50); background: transparent;
  padding: 9px 16px; border-radius: 2px; cursor: pointer;
  transition: color 180ms ease, background 180ms ease; white-space: nowrap;
}
.switcher-btn:hover { color: var(--autumn); }
.switcher-btn.active { color: var(--firmament); background: var(--brass); }
.switcher-num { opacity: 0.6; margin-right: 6px; }
@media (max-width: 640px) {
  .switcher-label { display: none; }
  .switcher-btn { padding: 9px 11px; font-size: 9px; letter-spacing: 0.1em; }
}

/* Direction visibility — only the active act renders */
.act { display: none; }
body.dir-1 .act-1,
body.dir-2 .act-2,
body.dir-3 .act-3 { display: block; }
/* Hero CTA variants */
.hero-cta-row[data-dir] { display: none; }
body.dir-1 .hero-cta-row[data-dir="1"],
body.dir-2 .hero-cta-row[data-dir="2"],
body.dir-3 .hero-cta-row[data-dir="3"] { display: flex; }

/* ── SECTION SCAFFOLD ── */
/* Safari font-echo fix: give each text section its own opaque, NON-GPU-composited
   layer (isolation:isolate creates a stacking context WITHOUT GPU compositing, so
   subpixel antialiasing is preserved and Gloock text stops ghosting/doubling).
   translateZ(0) added on NON-sticky sections to match the live page's proven
   .offer-section/.capture-section recipe. Never put a transform on .demo — it has a
   position:sticky child and a transformed ancestor breaks sticky. */
.section { padding: 120px 48px; background: var(--firmament); isolation: isolate; transform: translateZ(0); }
.section-lift { background: var(--firmament-lift); }
.wrap { max-width: 1180px; margin: 0 auto; }
.wrap-narrow { max-width: 920px; margin: 0 auto; }
.intro-block { max-width: 760px; }
.intro-block .eyebrow { margin-bottom: 22px; }
.intro-block .sec-hed { margin-bottom: 26px; }

/* ════════════════════════════════════════════════════════════════════
   APP PHONE MOCKUP (used by Dir 1 + Dir 2)
   ════════════════════════════════════════════════════════════════════ */
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: #05080f;
  border: 1px solid rgba(250,228,207,0.14);
  border-radius: 42px; padding: 11px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), inset 0 0 0 2px rgba(0,0,0,0.6);
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  background: var(--firmament); border-radius: 32px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; background: #05080f; border-radius: 0 0 14px 14px; z-index: 6;
}
.status-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px 6px; font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 0.04em; color: var(--autumn-75); z-index: 5;
}
.status-right { display: flex; align-items: center; gap: 6px; }
.status-right svg { width: 15px; height: 12px; stroke: var(--autumn-75); fill: none; stroke-width: 1.4; }
.status-mode {
  font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass); border: 1px solid var(--brass-30); border-radius: 2px;
  padding: 2px 6px; transition: color 300ms ease, border-color 300ms ease;
}
.phone.offline .status-mode { color: var(--brass-light); border-color: var(--brass); }

/* App header inside the screen */
.app-head {
  padding: 8px 20px 14px; border-bottom: 1px solid var(--autumn-08);
}
.app-tabs { display: flex; gap: 18px; }
.app-tab {
  font-family: 'Outfit', sans-serif; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--autumn-30); padding-bottom: 8px;
  border-bottom: 1.5px solid transparent; transition: color 300ms ease, border-color 300ms ease;
}
.app-tab.on { color: var(--autumn); border-color: var(--brass); }

/* Conversation area */
.app-body { flex: 1; padding: 16px 18px; overflow: hidden; position: relative; }
.app-screen { position: absolute; inset: 0; padding: 16px 18px; opacity: 0; transition: opacity 400ms ease; pointer-events: none; }
.app-screen.on { opacity: 1; pointer-events: auto; }

.msg-q {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: 15px; color: var(--autumn); line-height: 1.45;
  background: var(--firmament-high); border-radius: 12px 12px 4px 12px;
  padding: 10px 13px; margin-left: auto; max-width: 80%; margin-bottom: 14px;
}
.msg-a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14.5px; color: var(--autumn-75); line-height: 1.55;
  border-left: 1.5px solid var(--brass); padding-left: 12px; max-width: 96%;
}
.msg-a strong { color: var(--autumn); font-weight: 600; }
.cite-head {
  font-family: 'Outfit', sans-serif; font-size: 8.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass); margin: 14px 0 8px;
}
.cite {
  font-family: 'Outfit', sans-serif; font-size: 10px; letter-spacing: 0.02em;
  color: var(--autumn-50); padding: 5px 0; border-top: 1px solid var(--autumn-08);
  display: flex; gap: 8px; align-items: baseline;
}
.cite::before { content: '\00B7'; color: var(--brass); }
.refusal {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: 14px; color: var(--autumn-50); line-height: 1.5;
  border-left: 1.5px solid var(--autumn-15); padding-left: 12px;
}
/* vision screen */
.vision-photo {
  width: 100%; height: 150px; border-radius: 12px; margin-bottom: 12px;
  background: linear-gradient(150deg, #243042, #0e1426 70%);
  position: relative; overflow: hidden;
  border: 1px solid var(--autumn-08);
}
.vision-photo::after {
  content: 'PHOTO'; position: absolute; right: 10px; bottom: 8px;
  font-family: 'Outfit', sans-serif; font-size: 8px; letter-spacing: 0.2em; color: var(--autumn-30);
}
.vision-photo.has-photo { background-size: cover; background-position: center; }
.vision-photo.has-photo::after { content: ''; }
.app-inputbar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-top: 1px solid var(--autumn-08);
}
.app-inputbar .field {
  flex: 1; font-family: 'Outfit', sans-serif; font-size: 10px; letter-spacing: 0.04em;
  color: var(--autumn-30); border: 1px solid var(--autumn-08); border-radius: 999px; padding: 8px 14px;
}
.app-inputbar .mic { width: 28px; height: 28px; border-radius: 999px; background: var(--brass); flex-shrink: 0; display: grid; place-items: center; }
.app-inputbar .mic svg { width: 13px; height: 13px; stroke: var(--firmament); fill: none; stroke-width: 1.6; }

/* ════════════════════════════════════════════════════════════════════
   DIRECTION 1 — FIELD DEMO (sticky phone + stepped copy)
   ════════════════════════════════════════════════════════════════════ */
.demo { position: relative; background: var(--firmament); isolation: isolate; } /* isolation only — sticky child, no transform */
.demo-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.demo-phone-col { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; }
.demo-steps { padding: 18vh 0; }
.demo-step { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; max-width: 460px; }
.demo-step .step-num {
  font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.28em;
  color: var(--brass); margin-bottom: 18px;
}
.demo-step .step-hed {
  font-family: 'Gloock', Georgia, serif; font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08; color: var(--autumn); margin-bottom: 22px; letter-spacing: -0.01em;
}
.demo-step .step-body { font-size: 20px; line-height: 1.7; color: rgba(250, 228, 207, 0.92); }
.demo-step .step-body em { color: var(--autumn); font-style: italic; }
@media (max-width: 900px) {
  .demo { padding: 0 24px; }
  .demo-grid { grid-template-columns: 1fr; gap: 0; }
  .demo-phone-col { position: sticky; height: auto; padding: 40px 0 12px; top: auto; }
  .demo-steps { padding: 0 0 40px; }
  .demo-step { min-height: auto; padding: 48px 0; max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════
   DIRECTION 2 — THE OFFLINE MOMENT (no-cloud sever)
   ════════════════════════════════════════════════════════════════════ */
.sever { position: relative; height: 320vh; background: var(--firmament); }
.sever-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sever-stage { position: relative; width: 340px; max-width: 88vw; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
/* the cloud / grid node */
.grid-node {
  position: absolute; top: 8vh; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.grid-node .ring {
  width: 92px; height: 92px; border-radius: 999px;
  border: 1px solid var(--autumn-30);
  display: grid; place-items: center;
  position: relative;
}
.grid-node .ring svg { width: 40px; height: 40px; stroke: var(--autumn-50); fill: none; stroke-width: 1.3; }
.grid-node .ring::before {
  content: ''; position: absolute; inset: -10px; border-radius: 999px;
  border: 1px solid var(--autumn-08);
}
.grid-node .cap {
  font-family: 'Outfit', sans-serif; font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--autumn-50);
}
/* connection line */
.sever-line { position: absolute; top: calc(8vh + 102px); left: 50%; transform: translateX(-50%); width: 1px; height: 26vh; overflow: visible; }
.sever-line .seg { position: absolute; left: 0; width: 1px; background: linear-gradient(var(--brass), var(--brass-30)); }
.sever-pulse {
  position: absolute; left: -2px; width: 5px; height: 5px; border-radius: 999px; background: var(--brass-light);
  box-shadow: 0 0 8px var(--brass-light);
}
/* phone */
.sever-phone { position: absolute; bottom: 8vh; left: 50%; transform: translateX(-50%); }
.sever-phone .phone { width: 220px; }
.sever-phone .phone-screen { background: #070b18; }
.sever-answer { padding: 60px 14px 0; opacity: 0; transition: opacity 600ms ease; }
.sever-answer.lit { opacity: 1; }
.sever-answer .a-q {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 13px;
  color: var(--autumn); background: var(--firmament-high); border-radius: 10px 10px 3px 10px;
  padding: 8px 11px; margin-left: auto; max-width: 78%; margin-bottom: 12px;
}
.sever-answer .a-a {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; color: var(--autumn-75);
  line-height: 1.5; border-left: 1.5px solid var(--brass); padding-left: 10px;
}
/* editorial copy that steps through the sever */
.sever-copy { position: absolute; left: 0; right: 0; text-align: center; padding: 0 28px; pointer-events: none; }
.sever-copy.top { top: 12vh; }
.sever-copy.bottom { bottom: 14vh; }
.sever-line-txt {
  font-family: 'Gloock', Georgia, serif; font-style: normal;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.15; color: var(--autumn);
  text-shadow: 0 2px 28px rgba(10,15,35,0.95);
  opacity: 0; transition: opacity 500ms ease, transform 500ms ease; transform: translateY(12px);
}
.sever-line-txt.show { opacity: 1; transform: none; }
.sever-line-txt em { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; color: var(--brass-light); }
.sever-tag {
  font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--brass); margin-top: 18px; opacity: 0; transition: opacity 500ms ease;
}
.sever-tag.show { opacity: 1; }
@media (max-width: 640px) {
  .sever-line-txt { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* ════════════════════════════════════════════════════════════════════
   DIRECTION 3 — THE VEHICLE (editorial + ecosystem)
   ════════════════════════════════════════════════════════════════════ */
.vehicle-hero { max-width: 980px; margin: 0 auto; text-align: center; }
.vehicle-hero .big {
  font-family: 'Gloock', Georgia, serif; font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1.04; letter-spacing: -0.02em; color: var(--autumn); margin: 26px 0;
}
.vehicle-hero .big em { color: var(--brass-light); font-style: italic; font-family: 'Cormorant Garamond', Georgia, serif; }
.vehicle-hero .lead { max-width: 680px; margin: 0 auto; }

/* two modes split */
.modes-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--autumn-08); margin-top: 80px; border: 1px solid var(--autumn-08); }
.mode-cell { background: var(--firmament); padding: 48px 44px; }
.mode-cell .m-tag { font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.mode-cell .m-hed { font-family: 'Gloock', Georgia, serif; font-size: 1.9rem; color: var(--autumn); margin-bottom: 16px; }
.mode-cell .m-body { font-size: 18px; line-height: 1.65; color: var(--autumn-75); }
@media (max-width: 760px) { .modes-split { grid-template-columns: 1fr; } }

/* sourced answer card (grounded, not guessed) */
.answer-card {
  max-width: 760px; margin: 70px auto 0; background: var(--firmament-lift);
  border: 1px solid var(--autumn-08); border-radius: 10px; padding: 30px 32px;
}
.answer-card .ac-q {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 21px;
  color: var(--autumn); margin-bottom: 18px;
}
.answer-card .ac-a { font-size: 18px; line-height: 1.65; color: var(--autumn-75); border-left: 2px solid var(--brass); padding-left: 18px; }
.answer-card .ac-a strong { color: var(--autumn); font-weight: 600; }
.answer-card .ac-cites { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--autumn-08); }
.answer-card .ac-cites .cite-head { margin-top: 0; }
.answer-card .ac-cites .cite { font-size: 12px; }

/* ecosystem path */
.ecosystem { margin-top: 30px; }
.eco-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--autumn-08); }
.eco-stage { padding: 40px 34px; border-right: 1px solid var(--autumn-08); position: relative; }
.eco-stage:last-child { border-right: none; }
.eco-stage .eco-state {
  font-family: 'Outfit', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.eco-stage.future .eco-state { color: var(--autumn-30); }
.eco-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brass); }
.eco-stage.future .eco-dot { background: var(--autumn-30); }
.eco-stage .eco-name { font-family: 'Gloock', Georgia, serif; font-size: 1.7rem; color: var(--autumn); margin-bottom: 12px; }
.eco-stage.future .eco-name { color: var(--autumn-50); }
.eco-stage .eco-body { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 16px; line-height: 1.55; color: var(--autumn-50); }
@media (max-width: 760px) { .eco-row { grid-template-columns: 1fr; } .eco-stage { border-right: none; border-bottom: 1px solid var(--autumn-08); } .eco-stage:last-child { border-bottom: none; } }

/* ════════════════════════════════════════════════════════════════════
   SHARED — ENGINEERING FLEX BAND (the loud, earned win)
   ════════════════════════════════════════════════════════════════════ */
.flex-band { background: var(--firmament-lift); padding: 110px 48px; border-top: 1px solid var(--brass-12); border-bottom: 1px solid var(--brass-12); isolation: isolate; transform: translateZ(0); }
.flex-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.flex-inner .eyebrow { margin-bottom: 26px; }
.flex-statement {
  font-family: 'Gloock', Georgia, serif; font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.14; letter-spacing: -0.01em; color: var(--autumn); max-width: 920px; margin: 0 auto 14px;
  text-wrap: balance;
}
.flex-statement .hot { color: var(--brass-light); }
.flex-sub { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 20px; color: var(--autumn-50); max-width: 620px; margin: 0 auto; }
.flex-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; }
.flex-stat { padding: 0 36px; border-right: 1px solid var(--autumn-08); }
.flex-stat:last-child { border-right: none; }
.flex-num { font-family: 'Gloock', Georgia, serif; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; color: var(--autumn); }
.flex-num .unit { font-size: 0.4em; color: var(--brass); }
.flex-label { font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--autumn-50); margin-top: 14px; }
@media (max-width: 760px) { .flex-stats { grid-template-columns: 1fr; gap: 40px; } .flex-stat { border-right: none; } }

/* ════════════════════════════════════════════════════════════════════
   SHARED — ANTI-FEATURES ("what you don't get")
   ════════════════════════════════════════════════════════════════════ */
.nots { padding: 110px 48px; background: var(--firmament); isolation: isolate; transform: translateZ(0); }
.nots-inner { max-width: 1080px; margin: 0 auto; }
.nots-head { text-align: center; margin-bottom: 60px; }
.nots-head .eyebrow { margin-bottom: 20px; }
.nots-head .h { font-family: 'Gloock', Georgia, serif; font-size: clamp(2rem, 3.6vw, 3.2rem); color: var(--autumn); letter-spacing: -0.01em; }
.nots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--autumn-08); border: 1px solid var(--autumn-08); }
.not-cell { background: var(--firmament); padding: 34px 26px; }
.not-cell .n-no { font-family: 'Gloock', Georgia, serif; font-size: 1.5rem; color: var(--autumn); margin-bottom: 10px; }
.not-cell .n-body { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 15px; line-height: 1.55; color: var(--autumn-50); }
@media (max-width: 900px) { .nots-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .nots-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════════
   SHARED — GET THE APP (store CTA)
   ════════════════════════════════════════════════════════════════════ */
.get-app { padding: 120px 48px; text-align: center; background: var(--firmament); isolation: isolate; transform: translateZ(0); }
.get-app-inner { max-width: 720px; margin: 0 auto; }
.get-app .price-tag { font-family: 'Gloock', Georgia, serif; font-size: clamp(3.4rem, 7vw, 6rem); color: var(--autumn); line-height: 1; }
.get-app .price-tag .cents { color: var(--brass-light); }
.get-app .price-note { font-family: 'Outfit', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--autumn-50); margin-top: 16px; }
.get-app .ga-hed { font-family: 'Gloock', Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); color: var(--autumn); line-height: 1.08; margin: 30px 0 18px; letter-spacing: -0.01em; }
.get-app .ga-sub { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 21px; color: var(--autumn-75); max-width: 540px; margin: 0 auto 44px; }
.store-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 13px;
  background: var(--brass); color: var(--firmament);
  padding: 14px 26px; border-radius: 3px; min-width: 220px; cursor: pointer;
  transition: background 200ms ease;
}
.store-btn:hover { background: var(--brass-light); }
.store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .st-text { text-align: left; line-height: 1.1; }
.store-btn .st-small { font-family: 'Outfit', sans-serif; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; display: block; }
.store-btn .st-big { font-family: 'Gloock', Georgia, serif; font-size: 18px; display: block; margin-top: 2px; }
.store-btn.coming {
  background: transparent; color: var(--autumn-50);
  border: 1px solid var(--autumn-15); cursor: default;
}
.store-btn.coming svg { stroke: var(--autumn-50); fill: none; }
.store-btn.coming:hover { background: transparent; }
.store-btn.apple svg { fill: var(--firmament); }
.ga-fine { font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.06em; color: var(--autumn-30); margin-top: 30px; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════════════
   SHARED — JUMP DRIVE TEASER + WAITLIST
   ════════════════════════════════════════════════════════════════════ */
.jd { background: radial-gradient(120% 95% at 70% 44%, #15203a 0%, #0e1529 48%, var(--firmament) 80%); padding: 130px 48px; border-top: 1px solid var(--autumn-08); overflow: hidden; isolation: isolate; transform: translateZ(0); }
.jd-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }
.jd-photo-col { display: flex; justify-content: center; position: relative; isolation: isolate; }
.jd-photo-col::before {
  content: ''; position: absolute; left: 50%; top: 48%; transform: translate(-50%, -50%);
  width: 115%; height: 90%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 52% 46%, rgba(184,134,11,0.12) 0%, rgba(24,33,58,0.5) 32%, transparent 68%);
  filter: blur(6px);
}
.jd-photo {
  width: 100%; max-width: 600px; position: relative; z-index: 1;
  filter: drop-shadow(0 38px 46px rgba(0,0,0,0.5)) drop-shadow(0 12px 18px rgba(0,0,0,0.4));
}
.jd-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.jd-eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brass); box-shadow: 0 0 0 0 var(--brass-30); animation: jd-pulse 2.4s ease-out infinite; }
@keyframes jd-pulse { 0% { box-shadow: 0 0 0 0 rgba(184,134,11,0.5); } 100% { box-shadow: 0 0 0 12px rgba(184,134,11,0); } }
.jd-eyebrow span { font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); }
.jd-hed { font-family: 'Gloock', Georgia, serif; font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--autumn); margin-bottom: 26px; }
.jd-body { font-size: 21px; line-height: 1.72; color: var(--autumn-75); margin-bottom: 18px; }
.jd-quiet { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 17px; color: var(--autumn-50); line-height: 1.6; padding: 16px 0 10px; border-top: 1px solid var(--autumn-08); margin: 28px 0 30px; }
/* waitlist form */
.jd-form { max-width: 460px; }
.form-label-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.form-input {
  display: block; width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(250,228,207,0.2); color: var(--autumn);
  font-family: 'Outfit', sans-serif; font-weight: 400; font-size: 16px;
  padding: 16px 4px; outline: none; border-radius: 0; -webkit-appearance: none;
  margin-bottom: 16px; transition: border-color 200ms, box-shadow 200ms;
}
.form-input::placeholder { font-weight: 300; font-size: 14px; color: rgba(250,228,207,0.28); }
.form-input:focus { border-color: var(--brass); box-shadow: 0 1px 0 0 rgba(184,134,11,0.38); }
.form-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 52px; background: var(--brass); color: var(--firmament);
  border: none; border-radius: 0; font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: filter 200ms;
}
.form-btn:hover:not(:disabled) { filter: brightness(1.12); }
.form-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.btn-spin { width: 13px; height: 13px; border: 2px solid rgba(10,15,35,0.25); border-top-color: var(--firmament); border-radius: 50%; animation: spin 0.7s linear infinite; display: none; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-btn.loading .btn-spin { display: block; }
.form-btn.loading .btn-text { display: none; }
.form-success { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 18px; color: var(--autumn-75); padding: 18px 0; display: none; }
.form-success.show { display: block; }
.form-note { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 14px; letter-spacing: 0.1em; color: rgba(250,228,207,0.28); margin-top: 16px; }
@media (max-width: 900px) {
  .jd-inner { grid-template-columns: 1fr; gap: 48px; }
  .jd-photo-col { order: -1; }
}

/* ── TRUST ── */
.trust-section { background: var(--firmament-lift); padding: 96px 48px; isolation: isolate; transform: translateZ(0); }
.trust-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 44px; }
.trust-item { display: flex; flex-direction: column; gap: 14px; }
.trust-bar { display: block; width: 2px; height: 22px; background: var(--brass); flex-shrink: 0; }
.trust-name { font-family: 'Gloock', Georgia, serif; font-size: 25px; color: var(--autumn); line-height: 1.25; }
.trust-body { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 20px; color: var(--autumn-50); line-height: 1.6; }
@media (max-width: 1024px) { .trust-inner { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .trust-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ── FOOTER ── */
.footer { background: var(--firmament); padding: 48px 48px 40px; isolation: isolate; transform: translateZ(0); }
.footer-top { width: 100%; height: 1px; background: rgba(184,134,11,0.14); margin-bottom: 40px; }
.footer-disc { max-width: 760px; margin: 0 auto 40px; text-align: center; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 14px; line-height: 1.6; color: var(--autumn-30); }
.footer-row { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; margin-bottom: 24px; }
.footer-wm { font-family: 'Gloock', Georgia, serif; font-size: 18px; color: var(--autumn-50); }
.footer-tag { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 17px; color: rgba(250,228,207,0.3); text-align: center; }
.footer-url { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 14px; letter-spacing: 0.15em; color: rgba(250,228,207,0.3); text-align: right; }
.footer-mid { width:100%; height:1px; background: var(--autumn-08); margin-bottom:24px; }
.footer-copy { font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,228,207,0.18); text-align: center; }
@media (max-width: 768px) { .footer-row { grid-template-columns: 1fr; gap: 10px; } .footer-tag, .footer-url { text-align: left; } }

/* ── GLOBAL RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .section { padding: 80px 24px; }
  .flex-band, .nots, .get-app { padding: 80px 24px; }
  .jd { padding: 88px 24px; }
  .trust-section { padding: 72px 24px; }
  .footer { padding: 36px 24px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hl, .hero-eyebrow, .hero-sub, .hero-rule, .hero-cta-row { opacity: 1 !important; transform: none !important; }
  .hl:nth-child(3) { transform: skewX(-8deg) !important; }
  .sever-line-txt, .sever-tag, .sever-answer { opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════════════════════════════════════════
   FIELD DEMO — POLISH
   ════════════════════════════════════════════════════════════════════ */
.read-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  z-index: 300; pointer-events: none;
}
.demo-phone-col { isolation: isolate; }
.demo-phone-col::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 360px; height: 470px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184,134,11,0.13) 0%, transparent 66%);
  filter: blur(8px); z-index: 0; pointer-events: none;
}
.demo-phone-col .phone { position: relative; z-index: 1; }
.phone.reveal { opacity: 0; }
.phone.reveal.lit { opacity: 1; transition: opacity 850ms var(--ease-out); }
.phone.lit { animation: phoneFloat 7s ease-in-out 0.9s infinite; }
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* app-screen content slides up as it activates; citations stagger in */
.app-screen { transform: translateY(8px); }
.app-screen.on { transform: none; transition: opacity 420ms ease, transform 520ms var(--ease-out); }
.app-screen.on .cite { animation: citeIn 520ms var(--ease-out) backwards; }
.app-screen.on .cite:nth-of-type(1) { animation-delay: 170ms; }
.app-screen.on .cite:nth-of-type(2) { animation-delay: 280ms; }
@keyframes citeIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }

/* blinking input caret */
.app-inputbar .caret {
  display: inline-block; width: 1px; height: 12px; background: var(--brass);
  margin-left: 2px; vertical-align: -2px; animation: caretBlink 1.1s step-end infinite;
}
@keyframes caretBlink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }

/* scroll-synced step focus (only once JS is live, so no-JS shows all steps) */
body.demo-ready .demo-step { opacity: 0.32; transition: opacity 500ms var(--ease-out); }
body.demo-ready .demo-step.is-active { opacity: 1; }
.demo-step .step-num { display: flex; align-items: center; }
.demo-step .step-num::before {
  content: ''; width: 0; height: 1px; background: var(--brass); margin-right: 0;
  transition: width 520ms var(--ease-out), margin-right 520ms var(--ease-out);
}
.demo-step.is-active .step-num::before { width: 26px; margin-right: 14px; }

@media (max-width: 900px) {
  body.demo-ready .demo-step { opacity: 1; }
  .phone.lit { animation: none; }
  .demo-phone-col::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .phone.lit { animation: none !important; }
  .app-inputbar .caret { animation: none !important; }
  .app-screen { transform: none !important; }
  body.demo-ready .demo-step { opacity: 1 !important; }
}

/* print: hide chrome */
@media print { .read-progress, .nav, .scroll-ind { display: none !important; } }
