:root {
  /* =========================================================
     DESIGN TOKENS
     Two backgrounds only. Exceptions: --ink (dark sections),
     --accent (coral highlights), --paper (parchment letter),
     and the interactive map element.
     ========================================================= */

  /* ---- Surfaces ---- */
  --bg:          #fef7ef;    /* page / default surface (cream) */
  --card:        #ffffff;    /* elevated surface (cards, forms) */
  --ink:         #141414;    /* dark contrast surface + primary text */

  /* ---- Typographic color ---- */
  --ink-2:       #2a2a2a;    /* body copy */
  --muted:       #7a736d;    /* secondary / meta text */
  --ink-inv:     #ffffff;    /* inverse text on dark / accent surfaces */

  /* ---- Line / border ---- */
  --line:        #ece3d6;

  /* ---- Accent (coral) ---- */
  --accent:      #ff6b47;
  --accent-2:    #ff8a6a;
  --accent-grad: linear-gradient(135deg, #ff8b6a 0%, #ff5a37 100%);

  /* ---- Shadows ---- */
  --shadow-sm:   0 4px 24px rgba(35,20,10,0.06);
  --shadow-lg:   0 12px 48px rgba(35,20,10,0.08);
  --shadow-hard: 4px 5px 0 0 var(--ink);

  /* Legacy aliases (kept for backward-compat with existing rules) */
  --card-shadow:    var(--shadow-sm);
  --card-shadow-lg: var(--shadow-lg);

  /* ---- Radius ---- */
  --r-sm:        16px;
  --r:           20px;
  --r-lg:        28px;
  --r-pill:      999px;

  /* Legacy aliases */
  --radius:      var(--r);
  --radius-lg:   var(--r-lg);

  /* ---- Layout ---- */
  --max:         1200px;
  --narrow:      780px;
  --gutter:      40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap.narrow { max-width: var(--narrow); }

/* ---------- NAV ---------- */
.nav {
  padding: 24px 0;
  position: sticky; top: 0; z-index: 100;
  /* Fully opaque so the coral timeline line can't bleed through at Step 01 */
  background: var(--bg);
}
.nav .wrap { display: flex; justify-content: space-between; align-items: center; }
.mark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.mark-right { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---------- HERO ---------- */
.hero {
  --map-progress: 0;
  /* Fills the first viewport on load (nav sits sticky above). */
  min-height: calc(100svh - 72px);
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  padding: 56px 0 0;
  position: relative;
  isolation: isolate;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.hero .hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* cluster content + marquee near vertical center */
  gap: 64px;               /* breathing room between content block and marquee */
}
.hero .hero-marquee {
  margin-top: 0; /* was auto — cluster under content instead of hugging floor */
}

/* Custom page cursor — pulsing coral circle that follows the pointer site-wide */
html, body, body * { cursor: none; }
.hero-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  transition: opacity 180ms ease;
  mix-blend-mode: multiply;
  transform: translate3d(-100px, -100px, 0);
}
.hero-cursor::before,
.hero-cursor::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.55;
  animation: heroCursorPulse 1.6s ease-out infinite;
}
.hero-cursor::after { animation-delay: 0.8s; }
.hero-cursor.is-active { opacity: 1; }

@keyframes heroCursorPulse {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(2.4);  opacity: 0;   }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  html, body, body * { cursor: auto; }
  .hero-cursor { display: none; }
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* Hero kicker — matches .section-kicker typography used throughout the site */
.hero-kicker {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 56px;
}

/* Editorial headline */
.hero-h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 8.2vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 0 48px;
}
.hero-h1--single {
  font-size: clamp(34px, 5.2vw, 72px);
  text-align: center;
  max-width: 100%;
  /* negative bottom margin pulls the lede up past the line-height descent +
     the decorative underline baseline on .hero-accent */
  margin: 0 auto -14px;
  letter-spacing: -0.035em;
}
@media (min-width: 880px) {
  .hero-h1--single { white-space: nowrap; }
}
.hero-accent {
  color: var(--accent);
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 0.08em;
}
.hero-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.2em;
  color: var(--accent);
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw-underline 1600ms cubic-bezier(0.16, 1, 0.3, 1) 700ms forwards;
}
@keyframes draw-underline {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-underline { stroke-dashoffset: 0; animation: none; }
}

/* Lede */
.hero-lede {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 40px;
}
.hero-lede--centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
/* Pre-map variant: single button, centered, tighter spacing since the
   positioning graph follows immediately below. */
.hero-cta--pre-map {
  justify-content: center;
  text-align: center;
  margin: 8px 0 32px;
}
.hero-cta--pre-map > .btn-stamp {
  margin-left: auto;
  margin-right: auto;
}
/* Boosted specificity so the hero Apply button overrides the .btn-stamp
   base defined later in this file (which sets Special Elite for the receipt). */
.btn-stamp.btn-stamp--hero {
  text-decoration: none;
  color: var(--accent);
  border-color: var(--accent);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  transform: none;
}
.btn-stamp.btn-stamp--hero:hover {
  background: var(--accent);
  color: var(--ink-inv);
  transform: none;
}
.hero-link {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 720px;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.hero-stat-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .hero { padding: 40px 0 80px; }
  .hero-kicker { margin-bottom: 36px; font-size: 11px; letter-spacing: 0.18em; }
  .hero-h1 { margin-bottom: 32px; }
  .hero-lede { font-size: 16px; margin-bottom: 28px; }
  .hero-cta { gap: 20px; margin-bottom: 48px; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; }
  /* Mobile pass: belt-and-suspenders clip to prevent iOS WebKit bleed from hero-marquee */
  .hero-inner { overflow: clip; }
}

/* =========================
   HERO MARQUEE — branding / market-positioning vocabulary strip.
   Two duplicated lists inside a track; translateX(-50%) loop.
   Mask gradient fades the ends; reduced-motion disables it.
========================= */

.hero-marquee {
  margin: 0 calc(var(--gutter) * -1); /* flex gap on .hero-inner governs vertical spacing */
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 34px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--bg);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: heroMarqueeScroll 75s linear infinite;
}

.hero-marquee-list {
  display: flex;
  align-items: center;
  gap: 56px;
  margin: 0;
  padding: 0 28px 0 0;
  list-style: none;
  flex-shrink: 0;
}

.hero-marquee-list li {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  opacity: 1;
}
.hero-marquee-list li::after {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  flex: 0 0 auto;
}
.hero-marquee-list li:nth-child(4n)   { color: var(--accent); }
.hero-marquee-list li:nth-child(7n+2) { font-style: italic; font-weight: 600; letter-spacing: 0.04em; text-transform: none; font-size: 24px; }

@keyframes heroMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-marquee:hover .hero-marquee-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}

@media (max-width: 720px) {
  .hero-marquee { margin: 40px calc(var(--gutter) * -1) 0; padding: 22px 0; }
  .hero-marquee-list { gap: 36px; padding-right: 20px; }
  .hero-marquee-list li { font-size: 15px; gap: 36px; font-weight: 800; }
  .hero-marquee-list li:nth-child(7n+2) { font-size: 18px; }
  .hero-marquee-track { animation-duration: 55s; }
}

/* Legacy hero scene (no longer rendered; kept-hidden SVG + dead styles below) */
.hero-scene-legacy { display: none !important; }

/* =========================
   HERO SCENE — Speaking Brand Machine animation (DEAD — figure is `hidden`)
   Kept only so legacy selectors don't break anything else on the page.
========================= */

.hero-scene {
  margin: 16px calc(var(--gutter) * -1) 48px;
  padding: 0;
  display: flex;
  justify-content: center;
}
.hero-scene-svg {
  width: 100%;
  max-width: 1180px;
  height: auto;
  display: block;
  overflow: visible;
}

/* ---- Shared text styling for tile tags ---- */
.sb-tile-tag {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  fill: var(--muted);
  text-anchor: middle;
  pointer-events: none;
}
.sb-tile-tag--inv { fill: #1e2e4c; }

/* ---- Scattered tiles ---- */
.sb-tile {
  transform-origin: center;
  transform-box: fill-box;
  animation: sbTileIdle 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}
.sb-tile-1 { animation: sbTileIdle 4.5s ease-in-out infinite, sbTileIngest1 11s cubic-bezier(0.65, 0, 0.35, 1) 0s both; }
.sb-tile-2 { animation: sbTileIdle 4.5s ease-in-out 0.4s infinite, sbTileIngest2 11s cubic-bezier(0.65, 0, 0.35, 1) 0.35s both; }
.sb-tile-3 { animation: sbTileIdle 4.5s ease-in-out 0.9s infinite, sbTileIngest3 11s cubic-bezier(0.65, 0, 0.35, 1) 0.7s both; }
.sb-tile-4 { animation: sbTileIdle 4.5s ease-in-out 1.3s infinite, sbTileIngest4 11s cubic-bezier(0.65, 0, 0.35, 1) 1.05s both; }
.sb-tile-5 { animation: sbTileIdle 4.5s ease-in-out 0.2s infinite, sbTileIngest5 11s cubic-bezier(0.65, 0, 0.35, 1) 1.4s both; }
.sb-tile-6 { animation: sbTileIdle 4.5s ease-in-out 1.6s infinite, sbTileIngest6 11s cubic-bezier(0.65, 0, 0.35, 1) 1.75s both; }

@keyframes sbTileIdle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(2px, -3px) rotate(0.6deg); }
}

/* Each tile has its own ingestion curve ending at machine center ~(500, 210).
   Percentages: 0-20% idle scatter, 20-55% pulled toward machine, 55-100% consumed/invisible. */
@keyframes sbTileIngest1 {
  0%, 18%  { transform: translate(0, 0) scale(1) rotate(-4deg); opacity: 1; }
  55%      { transform: translate(340px, 110px) scale(0.18) rotate(60deg); opacity: 0; }
  100%     { transform: translate(340px, 110px) scale(0); opacity: 0; }
}
@keyframes sbTileIngest2 {
  0%, 18%  { transform: translate(0, 0) scale(1) rotate(5deg); opacity: 1; }
  55%      { transform: translate(387px, -45px) scale(0.18) rotate(-45deg); opacity: 0; }
  100%     { transform: translate(387px, -45px) scale(0); opacity: 0; }
}
@keyframes sbTileIngest3 {
  0%, 18%  { transform: translate(0, 0) scale(1) rotate(-3deg); opacity: 1; }
  55%      { transform: translate(240px, -115px) scale(0.18) rotate(50deg); opacity: 0; }
  100%     { transform: translate(240px, -115px) scale(0); opacity: 0; }
}
@keyframes sbTileIngest4 {
  0%, 18%  { transform: translate(0, 0) scale(1) rotate(4deg); opacity: 1; }
  55%      { transform: translate(165px, 95px) scale(0.18) rotate(-30deg); opacity: 0; }
  100%     { transform: translate(165px, 95px) scale(0); opacity: 0; }
}
@keyframes sbTileIngest5 {
  0%, 18%  { transform: translate(0, 0) scale(1) rotate(-6deg); opacity: 1; }
  55%      { transform: translate(95px, -42px) scale(0.18) rotate(40deg); opacity: 0; }
  100%     { transform: translate(95px, -42px) scale(0); opacity: 0; }
}
@keyframes sbTileIngest6 {
  0%, 18%  { transform: translate(0, 0) scale(1) rotate(3deg); opacity: 1; }
  55%      { transform: translate(142px, -125px) scale(0.18) rotate(-55deg); opacity: 0; }
  100%     { transform: translate(142px, -125px) scale(0); opacity: 0; }
}

/* ---- Ingestion trails: glowing lines tiles travel along ---- */
.sb-trail {
  fill: none;
  stroke: #ff6b47;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(255, 107, 71, 0.55));
}
.sb-trail-1 { animation: sbTrailSweep 11s cubic-bezier(0.7, 0.05, 0.3, 1) 0.2s both;  }
.sb-trail-2 { animation: sbTrailSweep 11s cubic-bezier(0.7, 0.05, 0.3, 1) 0.55s both; }
.sb-trail-3 { animation: sbTrailSweep 11s cubic-bezier(0.7, 0.05, 0.3, 1) 0.9s both;  }
.sb-trail-4 { animation: sbTrailSweep 11s cubic-bezier(0.7, 0.05, 0.3, 1) 1.25s both; }
.sb-trail-5 { animation: sbTrailSweep 11s cubic-bezier(0.7, 0.05, 0.3, 1) 1.6s both;  }
.sb-trail-6 { animation: sbTrailSweep 11s cubic-bezier(0.7, 0.05, 0.3, 1) 1.95s both; }
@keyframes sbTrailSweep {
  0%, 18%  { opacity: 0; stroke-dashoffset: 300; }
  28%      { opacity: 0.85; stroke-dashoffset: 150; }
  42%      { opacity: 0.6;  stroke-dashoffset: 0;   }
  55%      { opacity: 0;    stroke-dashoffset: -300; }
  100%     { opacity: 0;    stroke-dashoffset: -300; }
}

/* ---- Machine ---- */
.sb-machine { will-change: transform; }

/* Halo rings orbit continuously */
.sb-halo {
  transform-origin: 500px 210px;
  transform-box: view-box;
  animation: sbHaloAppear 11s ease-in-out both, sbHaloSpin 18s linear infinite;
}
.sb-halo-ring--inner {
  animation: sbRingSpin 12s linear infinite reverse;
  transform-origin: 500px 210px;
  transform-box: view-box;
}
@keyframes sbHaloAppear {
  0%       { opacity: 0.25; }
  25%      { opacity: 1;    }
  100%     { opacity: 0.9;  }
}
@keyframes sbHaloSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes sbRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Inner rings inside the viewing window — speed up during peak */
.sb-inner-rings {
  animation: sbInnerSpin 8s linear infinite, sbInnerIntensity 11s ease-in-out both;
  transform-origin: 500px 242px;
  transform-box: view-box;
}
@keyframes sbInnerSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes sbInnerIntensity {
  0%          { opacity: 0.35; }
  25%         { opacity: 0.6;  }
  55%, 70%    { opacity: 1;    }
  100%        { opacity: 0.7;  }
}

/* Core glow: dim → peak during ingestion → calm afterglow */
.sb-core {
  transform-origin: 500px 242px;
  transform-box: view-box;
  animation: sbCorePulse 11s ease-in-out both, sbCoreBreathe 2.4s ease-in-out 11s infinite;
}
.sb-core-dot {
  transform-origin: 500px 242px;
  transform-box: view-box;
  animation: sbCoreDotPulse 11s ease-in-out both;
}
@keyframes sbCorePulse {
  0%         { opacity: 0.35; transform: scale(0.6); }
  22%        { opacity: 0.8;  transform: scale(1);   }
  55%, 70%   { opacity: 1;    transform: scale(1.25);}
  85%        { opacity: 0.9;  transform: scale(1.05);}
  100%       { opacity: 0.85; transform: scale(1);   }
}
@keyframes sbCoreDotPulse {
  0%         { opacity: 0.5; }
  55%, 70%   { opacity: 1;   }
  100%       { opacity: 0.9; }
}
@keyframes sbCoreBreathe {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.08); }
}

/* Outlet slot flashes when DNA emerges */
.sb-outlet {
  animation: sbOutletGlow 11s ease-in-out both;
}
@keyframes sbOutletGlow {
  0%, 60%    { fill: #0a1221; }
  70%, 75%   { fill: #ff6b47; }
  100%       { fill: #1a2030; }
}

/* Machine label */
.sb-label-caps {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.34em;
  fill: #1e2e4c;
  text-anchor: middle;
  opacity: 0;
  animation: sbLabelIn 11s ease-out both;
}
.sb-label line {
  opacity: 0;
  animation: sbLabelIn 11s ease-out both;
  animation-delay: 0.15s;
}
@keyframes sbLabelIn {
  0%, 12%  { opacity: 0; }
  25%      { opacity: 1; }
  100%     { opacity: 1; }
}

/* ---- DNA helix ---- */
.sb-strand {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  animation: sbStrandDraw 11s cubic-bezier(0.4, 0, 0.2, 1) both;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 71, 0.2));
}
.sb-strand-a { animation-delay: 0.1s; }
.sb-strand-b { animation-delay: 0.25s; filter: drop-shadow(0 2px 6px rgba(30, 46, 76, 0.25)); }
@keyframes sbStrandDraw {
  0%, 60%  { stroke-dashoffset: 440; }
  88%      { stroke-dashoffset: 0;   }
  100%     { stroke-dashoffset: 0;   }
}

/* Rungs fade in sequentially after strands draw */
.sb-rung {
  stroke: #1e2e4c;
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: sbRungIn 0.6s ease-out both, sbRungBreathe 3.6s ease-in-out infinite;
}
.sb-rungs .sb-rung:nth-child(1) { animation-delay: 6.8s, 11s;   }
.sb-rungs .sb-rung:nth-child(2) { animation-delay: 7.0s, 11.15s; stroke: #ff6b47; }
.sb-rungs .sb-rung:nth-child(3) { animation-delay: 7.2s, 11.3s;  }
.sb-rungs .sb-rung:nth-child(4) { animation-delay: 7.4s, 11.45s; stroke: #ff6b47; }
.sb-rungs .sb-rung:nth-child(5) { animation-delay: 7.6s, 11.6s;  }
.sb-rungs .sb-rung:nth-child(6) { animation-delay: 7.8s, 11.75s; stroke: #ff6b47; }
.sb-rungs .sb-rung:nth-child(7) { animation-delay: 8.0s, 11.9s;  }
@keyframes sbRungIn {
  from { opacity: 0; transform: scaleY(0.3); }
  to   { opacity: 0.85; transform: scaleY(1); }
}
@keyframes sbRungBreathe {
  0%, 100% { opacity: 0.75; }
  50%      { opacity: 1;    }
}

/* Beads at strand peaks */
.sb-node {
  opacity: 0;
  animation: sbNodeIn 0.5s ease-out both, sbNodePulse 3s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.sb-nodes .sb-node:nth-child(1) { animation-delay: 7.0s, 11s;   }
.sb-nodes .sb-node:nth-child(2) { animation-delay: 7.15s, 11.2s; }
.sb-nodes .sb-node:nth-child(3) { animation-delay: 7.3s, 11.4s;  }
.sb-nodes .sb-node:nth-child(4) { animation-delay: 7.45s, 11.6s; }
.sb-nodes .sb-node:nth-child(5) { animation-delay: 7.6s, 11.8s;  }
.sb-nodes .sb-node:nth-child(6) { animation-delay: 7.75s, 12s;   }
.sb-node-a { fill: #ff6b47; }
.sb-node-b { fill: #24395e; }
@keyframes sbNodeIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes sbNodePulse {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.25); }
}

/* Strand labels */
.sb-dna-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-anchor: middle;
  opacity: 0;
  animation: sbDnaLabelIn 11s ease-out both;
  animation-delay: 8.8s;
}
.sb-dna-label-a { fill: #ff6b47; }
.sb-dna-label-b { fill: #24395e; animation-delay: 9.0s; }
.sb-dna-tick {
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: sbDnaTickDraw 11s ease-out both;
}
.sb-dna-tick:first-of-type { stroke: #ff6b47; animation-delay: 8.7s; }
.sb-dna-tick:last-of-type  { stroke: #24395e; animation-delay: 8.9s; }
@keyframes sbDnaLabelIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0);   }
}
@keyframes sbDnaTickDraw {
  from { stroke-dashoffset: 30; }
  to   { stroke-dashoffset: 0;  }
}

/* Reduced motion: show final DNA state immediately, no keyframes */
@media (prefers-reduced-motion: reduce) {
  .sb-tiles, .sb-trails { display: none; }
  .sb-tile, .sb-trail, .sb-halo, .sb-halo-ring--inner, .sb-inner-rings,
  .sb-core, .sb-core-dot, .sb-outlet, .sb-label-caps, .sb-label line,
  .sb-strand, .sb-rung, .sb-node, .sb-dna-label, .sb-dna-tick {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }
}

/* Mobile — compress vertical space */
@media (max-width: 720px) {
  .hero-scene { margin: 8px 0 24px; }
}

/* =========================
   HERO POSITIONING MAP (legacy — no longer rendered, kept for safety)
========================= */

/* Sticky scroll track — pins the map while user scrolls through it */
.hero-map-track {
  position: relative;
  height: 220vh;
  margin: 0 calc(var(--gutter) * -1) 36px;
  padding: 0;
}
.hero-map-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
}

.hero-map {
  --map-progress: 0;
  max-width: 880px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.hero-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  padding: 0 6px;
}
.hero-map-caption-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-map-caption-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: auto;
  margin-right: 12px;
}
.hero-map-progress {
  position: relative;
  width: 120px;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-map-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: calc(var(--map-progress, 0) * 100%);
  background: var(--accent);
  border-radius: 999px;
}

.hero-map-frame {
  position: relative;
  background: #fff8ee;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px 18px;
  box-shadow: 4px 5px 0 0 var(--ink);
}
.hero-map-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* =========================
   HERO MAP — amplified redesign
   Two dark quadrants, two points, one vivid arrow.
   Every animated element keys off --map-progress (0 → 1 via scroll).
========================= */

/* quadrants — darkened dim origin vs. vivid destination bloom */
.map-qwash { stroke: none; }
.map-qwash-bland {
  fill: var(--ink);
  opacity: 0.08;
}
.map-qwash-bright {
  fill: var(--ink);
  opacity: calc(0.06 + var(--map-progress, 0) * 0.08);
  transition: opacity 140ms linear;
}
.map-qwash-bright-grad {
  opacity: calc(0.55 + var(--map-progress, 0) * 0.45);
  transition: opacity 160ms ease;
}

/* minimal axis cross — subtle structure, no labels */
.map-axis line {
  stroke: var(--ink);
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 3 6;
  opacity: 0.22;
}

/* radiating beams from Future You */
.map-beams {
  transform-origin: 540px 130px;
  transform-box: view-box;
  animation: mapBeamSpin 22s linear infinite;
}
.map-beam {
  stroke: var(--accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0;
  animation: mapBeamPulse 2.4s ease-in-out infinite;
}
.map-beam:nth-child(1) { animation-delay: 0s;    }
.map-beam:nth-child(2) { animation-delay: 0.25s; }
.map-beam:nth-child(3) { animation-delay: 0.5s;  }
.map-beam:nth-child(4) { animation-delay: 0.75s; }
.map-beam:nth-child(5) { animation-delay: 1s;    }
.map-beam:nth-child(6) { animation-delay: 1.25s; }
@keyframes mapBeamPulse {
  0%, 100% { opacity: calc(var(--map-progress, 0) * 0.28); stroke-width: 1.6; }
  50%      { opacity: calc(var(--map-progress, 0) * 0.85); stroke-width: 2.8; }
}
@keyframes mapBeamSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* concentric orbit rings */
.map-orbit {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  opacity: 0;
  transform-origin: 540px 130px;
  transform-box: view-box;
  animation: mapOrbitPulse 2.8s ease-out infinite;
}
.map-orbit-2 { animation-delay: 0.6s; }
.map-orbit-3 { animation-delay: 1.2s; stroke-dasharray: 4 6; }
@keyframes mapOrbitPulse {
  0%   { opacity: 0; transform: scale(0.65); }
  30%  { opacity: calc(0.55 * var(--map-progress, 0)); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* curved arrow — vivid gradient, draws in with scroll */
.map-arrow-line {
  fill: none;
  stroke: url(#mapArrowGrad);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-dasharray: 480;
  stroke-dashoffset: calc(480px - var(--map-progress, 0) * 480px);
  filter: drop-shadow(0 3px 10px rgba(255, 107, 71, 0.35));
  transition: stroke-dashoffset 140ms linear;
}

/* bright drifting dot travelling the arrow path */
.map-trail-dot {
  fill: #ffffff;
  stroke: var(--accent);
  stroke-width: 2.2;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 71, 0.75));
  opacity: calc(var(--map-progress, 0) * 0.95);
}

/* Future You halo — breathes, intensifies with progress */
.map-halo {
  opacity: calc(0.25 + var(--map-progress, 0) * 0.75);
  transform-origin: 540px 130px;
  transform-box: view-box;
  animation: mapHaloBreathe 3.2s ease-in-out infinite;
}
@keyframes mapHaloBreathe {
  0%, 100% { transform: scale(0.94); }
  50%      { transform: scale(1.1); }
}

/* generic point styles */
.map-point { outline: none; }
.map-pt-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* You Today — muted, understated, dims further as user repositions */
.map-point-now .pt-now-core {
  fill: #ffffff;
  stroke: var(--muted);
  stroke-width: 2;
  opacity: calc(1 - var(--map-progress, 0) * 0.45);
}
.map-point-now .map-pt-label {
  fill: var(--muted);
  font-size: 12px;
  opacity: calc(1 - var(--map-progress, 0) * 0.35);
}

/* Future You — dramatic reveal + endless pulse */
.map-point-after {
  opacity: clamp(0, calc((var(--map-progress, 0) - 0.15) * 2.4), 1);
  transform-origin: 540px 130px;
  transform-box: view-box;
  transform: scale(calc(0.55 + 0.45 * clamp(0, calc((var(--map-progress, 0) - 0.15) * 2.4), 1)));
  transition: opacity 160ms linear, transform 160ms linear;
}
.map-point-after .pt-after-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  opacity: 0.6;
  transform-origin: 540px 130px;
  transform-box: view-box;
  animation: mapRingPulse 1.9s ease-in-out infinite;
}
@keyframes mapRingPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0;    }
  100% { transform: scale(1.6); opacity: 0;    }
}
.map-point-after .pt-after-core {
  fill: var(--accent);
  stroke: #ffffff;
  stroke-width: 3;
  filter: drop-shadow(0 4px 14px rgba(255, 107, 71, 0.7));
}
.map-point-after .map-pt-label {
  fill: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

/* tooltip bar */
.hero-map-tooltip {
  margin-top: 14px;
  padding: 12px 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  min-height: 44px;
  transition: background 200ms ease;
}
.hero-map.has-tooltip .hero-map-tooltip,
.hero-map.is-scrubbing .hero-map-tooltip { background: rgba(255,107,71,0.05); }
.hero-map-tooltip-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-map-tooltip-desc {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}

@media (prefers-reduced-motion: reduce) {
  .hero-map-track { height: auto; margin: 40px 0 36px; }
  .hero-map-sticky { position: static; height: auto; padding: 0; }
  .hero-map { --map-progress: 1; }
  .map-beams, .map-beam, .map-orbit, .map-halo, .pt-after-ring { animation: none !important; }
  .map-trail-dot { display: none; }
  .map-beam  { opacity: 0.55; }
  .map-orbit { opacity: 0.25; }
}

@media (max-width: 720px) {
  .hero-map-track { height: auto; margin: 28px 0 28px; }
  .hero-map-sticky { position: static; height: auto; padding: 0; }
  .hero-map { --map-progress: 1; }
  .hero-map-frame { padding: 14px 12px 10px; box-shadow: 3px 4px 0 0 var(--ink); border-radius: 12px; }
  .hero-map-caption-title { font-size: 10px; letter-spacing: 0.18em; }
  .hero-map-progress { width: 80px; }
  .map-pt-label { font-size: 11px; letter-spacing: 0.1em; }
  .map-point-after .map-pt-label { font-size: 12px; }
  .hero-map-tooltip { padding: 10px 2px; gap: 8px; }
  .hero-map-tooltip-desc { font-size: 12px; }
}

/* FLOATING CARDS STACK */
.hero-right {
  position: relative;
  height: 520px;
  min-height: 520px;
}
.float-card {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-lg);
  padding: 20px 22px;
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.float-card.card-1 {
  top: 0; right: 0;
  width: 280px;
  animation-delay: 0s;
}
.float-card.card-2 {
  top: 40px; left: 20px;
  width: 340px;
  animation-delay: 1.5s;
}
.float-card.card-3 {
  top: 220px; right: 40px;
  width: 300px;
  background: var(--accent-grad);
  color: var(--ink-inv);
  animation-delay: 0.8s;
}
.float-card.card-4 {
  top: 300px; left: 0;
  width: 260px;
  animation-delay: 2.2s;
}

.fc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.float-card.card-3 .fc-label { color: rgba(255,255,255,0.85); }

.fc-stat {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}
.float-card.card-3 .fc-stat { color: var(--ink-inv); }
.fc-sub { font-size: 12px; color: var(--muted); font-weight: 500; }
.float-card.card-3 .fc-sub { color: rgba(255,255,255,0.8); }

.fc-chart {
  height: 50px;
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(255,107,71,0.15), transparent);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.fc-chart svg { width: 100%; height: 100%; display: block; }

.fc-list { list-style: none; font-size: 13px; }
.fc-list li {
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
}
.fc-list li:first-child { border-top: none; }
.fc-check { opacity: 0.9; }

.fc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: 90px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
  position: relative;
}
.fc-grid > div {
  background: var(--card);
  font-size: 9px;
  padding: 6px;
  color: var(--muted);
}
.fc-pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.fc-pin.now { background: var(--ink); top: 70%; left: 30%; }
.fc-pin.target { background: var(--accent); top: 30%; left: 75%; box-shadow: 0 0 0 4px rgba(255,107,71,0.25); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  letter-spacing: 0;
}
.btn.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,107,71,0.35); }
.btn.secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.secondary:hover { background: var(--ink); color: var(--bg); }
.btn.ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.large { padding: 18px 32px; font-size: 15px; }
.btn.small { padding: 10px 18px; font-size: 12px; }
.btn.coral { background: var(--accent); color: var(--ink-inv); border-color: var(--accent); }
.btn.coral:hover { background: var(--ink); border-color: var(--ink); }

/* ---------- BLOCKS ---------- */
.block { padding: 120px 0; position: relative; }
.block.tight { padding: 90px 0; }
.block.tool { background: var(--bg); }
.block.dark { background: var(--ink); color: var(--bg); }
.block.apply { background: var(--bg); }

.block[data-num]::before {
  content: counter(block, decimal-leading-zero) "  " attr(data-num);
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 8px 16px;
  background: var(--card);
  border-radius: 999px;
  box-shadow: var(--card-shadow);
  width: max-content;
  margin-bottom: 36px;
}
body { counter-reset: block; }
.block[data-num] { counter-increment: block; }
.block.dark[data-num]::before { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); box-shadow: none; }

/* ---------- TYPE ---------- */
.kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 820px;
}
.kicker.light { color: var(--bg); }
.kicker .accent { color: var(--accent); font-style: normal; font-weight: 700; }
.kicker.center { text-align: center; margin-left: auto; margin-right: auto; }
.lede { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 0 56px; line-height: 1.6; }
.dark .lede { color: rgba(255,255,255,0.75); }

.prose p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin: 0 0 20px; }
.prose.light p { color: rgba(255,255,255,0.85); }
.prose ul { list-style: none; margin: 0 0 20px; }
.prose li {
  font-size: 17px;
  line-height: 1.55;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-2);
}
.prose.light li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.prose li::before {
  content: '';
  position: absolute;
  left: 0; top: 24px;
  width: 14px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.prose .emphasis {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 32px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.prose.light .emphasis { color: var(--bg); background: none; }
.prose em { font-style: normal; color: var(--accent); font-weight: 700; }

/* ---------- STEPS — Carely style ghost numbers ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  max-width: 880px;
}
.step {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 44px;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.step:nth-child(1) { align-self: flex-start; width: 82%; }
.step:nth-child(2) { align-self: center; width: 82%; }
.step:nth-child(3) { align-self: flex-end; width: 82%; }

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 160px;
  line-height: 0.85;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  letter-spacing: -0.04em;
  transition: all 0.3s ease;
}
.step:nth-child(2) .step-num {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
}
.step:hover .step-num {
  -webkit-text-stroke-color: var(--accent);
}
.step:nth-child(2):hover .step-num { filter: brightness(1.1); }

.step-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.step-body p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 8px; }
.step-body .meta { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 8px; font-style: italic; }

/* ---------- GRID / DELIVERABLES ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  padding: 28px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: all 0.25s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.card:nth-child(3n+2) { background: var(--accent-grad); color: var(--ink-inv); }
.card:nth-child(3n+2) h4, .card:nth-child(3n+2) p { color: var(--ink-inv); }
.card h4 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--ink);
}
.card p { font-size: 14px; line-height: 1.55; color: var(--muted); }
.close {
  margin-top: 56px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

/* ---------- TWO COL ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 24px; }
.two-col > div {
  padding: 32px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}
.two-col > div:first-child { background: var(--card); }
.col-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.col-head.muted-head { color: var(--muted); }
.list { list-style: none; }
.list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  position: relative;
}
.list li:last-child { border-bottom: none; }
.list li::before {
  content: '+';
  position: absolute;
  left: 0; top: 14px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.muted-list li { color: var(--muted); }
.muted-list li::before { content: '−'; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.2s;
}
.faq details:hover { box-shadow: var(--card-shadow-lg); }
.faq details[open] { padding-bottom: 28px; }
.faq summary {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  list-style: none;
  position: relative;
  padding-right: 40px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 4px; top: 50%;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.faq summary::before {
  content: '+';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-inv);
  font-weight: 600;
  z-index: 2;
  transition: transform 0.3s;
  line-height: 1;
  font-size: 14px;
}
.faq details[open] summary::before { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 18px 0 0; font-size: 14px; line-height: 1.65; color: var(--muted); max-width: 640px; }

/* ---------- TOOLS ---------- */
.tool-header { margin-bottom: 48px; max-width: 700px; }
.tool-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--ink-inv);
  border-radius: 999px;
}
.tool-sub { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 580px; }
.tool-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 820px;
  box-shadow: var(--card-shadow);
}
.tool-row { margin-bottom: 18px; }
.tool-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.tool-row input, .tool-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  border-radius: 14px;
  transition: all 0.15s;
}
.tool-row input:focus, .tool-row textarea:focus { outline: none; background: var(--card); border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,107,71,0.1); }
.tool-row textarea { min-height: 90px; }

.result { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line); }
.result.hidden { display: none; }
.scores { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.score { padding: 24px; background: var(--bg); border-radius: var(--radius); }
.score-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.gauge { width: 100%; height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 12px; }
.gauge-fill { height: 100%; background: var(--ink); width: 0%; border-radius: 999px; transition: width 1.1s cubic-bezier(.2,.9,.25,1); }
.gauge-fill.accent { background: var(--accent-grad); }
.score-val { font-size: 44px; font-weight: 800; line-height: 1; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.03em; }
.score-max { font-size: 18px; color: var(--muted); font-weight: 500; margin-left: 4px; }
.score-hint { font-size: 11px; color: var(--muted); }

.observation { padding: 24px; background: var(--accent-grad); color: var(--ink-inv); border-radius: var(--radius); margin-bottom: 28px; }
.obs-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.9; font-weight: 600; margin-bottom: 12px; }
.observation p { font-size: 17px; font-weight: 600; line-height: 1.45; letter-spacing: -0.01em; }
.result-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.result-cta p { font-size: 13px; color: var(--muted); max-width: 400px; line-height: 1.5; }

/* ---------- MAP ---------- */
.map-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 32px; margin-top: 36px; align-items: stretch; }
.map {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  cursor: crosshair;
  overflow: hidden;
}
.map-axis { position: absolute; background: var(--line); }
.map-axis.vertical { left: 50%; top: 24px; bottom: 24px; width: 1px; }
.map-axis.horizontal { top: 50%; left: 24px; right: 24px; height: 1px; }
.map-label { position: absolute; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.map-label.top { top: 18px; left: 50%; transform: translateX(-50%); }
.map-label.bottom { bottom: 18px; left: 50%; transform: translateX(-50%); }
.map-label.left { left: 18px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.map-label.right { right: 18px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
.map-quad { position: absolute; font-size: 12px; font-weight: 500; color: var(--muted); font-style: italic; pointer-events: none; max-width: 120px; line-height: 1.3; }
.quad-tl { top: 22%; left: 10%; }
.quad-tr { top: 22%; right: 10%; text-align: right; }
.quad-bl { bottom: 22%; left: 10%; }
.quad-br { bottom: 22%; right: 10%; text-align: right; }

.map-pin { position: absolute; width: 16px; height: 16px; border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; transition: all 0.3s cubic-bezier(.2,.9,.25,1); }
.map-pin.hidden { display: none; }
.pin-current { background: var(--ink); box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--ink); }
.pin-target { background: var(--accent); box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--accent); animation: targetPulse 1.8s ease-in-out infinite; }
@keyframes targetPulse { 0%,100% { box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--accent);} 50% { box-shadow: 0 0 0 3px #fff, 0 0 0 10px rgba(255,107,71,0.3);} }
.map-pin span { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); font-weight: 600; white-space: nowrap; }
.pin-target span { color: var(--accent); }
.map-line { position: absolute; height: 2px; background: var(--accent); opacity: 0.55; transform-origin: 0 50%; pointer-events: none; display: none; border-radius: 2px; }
.map-line.active { display: block; }

.map-side { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.map-readout { background: var(--card); border-radius: var(--radius-lg); padding: 28px; flex: 1; box-shadow: var(--card-shadow); }
.map-readout .muted { font-size: 13px; color: var(--muted); font-style: italic; }
.map-readout h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 12px; color: var(--ink); }
.map-readout p { font-size: 14px; line-height: 1.55; color: var(--muted); margin-bottom: 12px; }
.map-readout .tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 6px;
  margin-bottom: 6px;
}
.map-readout .tag.target { background: var(--accent-grad); color: var(--ink-inv); }

/* ---------- APPLY ---------- */
.apply .kicker { color: var(--ink); }
.apply .lede { color: var(--ink-2); }
/* ---------- RECEIPT FORM (vintage) ---------- */
:root {
  --paper: #ecdeb6;
  --paper-ink: #2a2218;
  --paper-muted: #7a6a4a;
  --paper-rule: #8a7956;
  --paper-red: #b84a32;
  /* Diffuse-lit fractal-noise paper fibre texture (raking light at azimuth 75deg) */
  --paper-texture: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhLS0gQ3JlYXRlZCB3aXRoIElua3NjYXBlIChodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy8pIC0tPgoKPHN2ZwogICB3aWR0aD0iNTA4bW0iCiAgIGhlaWdodD0iMjg1Ljc1bW0iCiAgIHZpZXdCb3g9IjAgMCA1MDggMjg1Ljc1IgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmcxIgogICB4bWw6c3BhY2U9InByZXNlcnZlIgogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzCiAgICAgaWQ9ImRlZnMxIj48ZmlsdGVyCiAgICAgICBzdHlsZT0iY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzOnNSR0IiCiAgICAgICBpZD0iZmlsdGVyMTAxIgogICAgICAgeD0iMCIKICAgICAgIHk9IjAiCiAgICAgICB3aWR0aD0iMSIKICAgICAgIGhlaWdodD0iMSI+PGZlVHVyYnVsZW5jZQogICAgICAgICBpZD0iZmVUdXJidWxlbmNlMTAxIgogICAgICAgICBiYXNlRnJlcXVlbmN5PSIwLjAyMDAwMDAwMDAwMDAwMDAxMSIKICAgICAgICAgbnVtT2N0YXZlcz0iOSIKICAgICAgICAgc2VlZD0iMTAiCiAgICAgICAgIHR5cGU9ImZyYWN0YWxOb2lzZSIgLz48ZmVEaWZmdXNlTGlnaHRpbmcKICAgICAgICAgaWQ9ImZlRGlmZnVzZUxpZ2h0aW5nMTAxIgogICAgICAgICBzdXJmYWNlU2NhbGU9IjIuMDQ5OTk5OTUiCiAgICAgICAgIGRpZmZ1c2VDb25zdGFudD0iMSI+PGZlRGlzdGFudExpZ2h0CiAgICAgICAgICAgaWQ9ImZlRGlzdGFudExpZ2h0MTAzIgogICAgICAgICAgIGF6aW11dGg9Ijc1IgogICAgICAgICAgIGVsZXZhdGlvbj0iNTAiIC8+PC9mZURpZmZ1c2VMaWdodGluZz48L2ZpbHRlcj48L2RlZnM+PGcKICAgICBpZD0ibGF5ZXIxIgogICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNTU0KSI+PHJlY3QKICAgICAgIHN0eWxlPSJvcGFjaXR5OjE7ZmlsbDojN2I0OTM4O2ZpbGwtb3BhY2l0eToxO3N0cm9rZS13aWR0aDoyLjY0NTgzO2ZpbHRlcjp1cmwoI2ZpbHRlcjEwMSkiCiAgICAgICBpZD0icmVjdDEwMSIKICAgICAgIHdpZHRoPSI1MDgiCiAgICAgICBoZWlnaHQ9IjI4NS43NSIKICAgICAgIHg9IjE1NTQiCiAgICAgICB5PSItNC45NzM3OTkyZS0xNCIgLz48L2c+PC9zdmc+Cg==);
}

.receipt {
  --c: color-mix(in srgb, var(--paper), transparent 0%);
  --c-deep: color-mix(in srgb, var(--paper), transparent 35%);
  margin-top: 48px;
  padding: 64px 64px 56px;
  position: relative;
  color: var(--paper-ink);
  font-family: 'Special Elite', 'Courier Prime', ui-monospace, Menlo, monospace;
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, var(--c), var(--c-deep) 30%, var(--c-deep) 70%, var(--c) 100%),
    var(--paper-texture);
  background-size: auto, cover;
  background-position: center;
  background-blend-mode: normal, multiply;
  border: 1px solid rgba(40, 26, 8, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 230, 0.35),
    inset 0 0 60px rgba(90, 60, 20, 0.10),
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 24px 70px -32px rgba(20, 20, 20, 0.35);
}

/* Inner double-border, classic ticket frame */
.receipt::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(40, 26, 8, 0.32);
  pointer-events: none;
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.receipt-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--paper-ink);
  line-height: 1.05;
}
.receipt-subtitle {
  margin-top: 8px;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: var(--paper-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.receipt-head-right { text-align: right; flex-shrink: 0; }
.receipt-no-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: var(--paper-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.receipt-no {
  font-family: 'Special Elite', monospace;
  font-size: 26px;
  font-weight: 400;
  color: var(--paper-red);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.receipt-rule {
  height: 0;
  border: 0;
  border-top: 2px dashed var(--paper-rule);
  margin: 28px 0;
  position: relative;
  z-index: 1;
}

.line-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 32px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.line-row--split { grid-template-columns: 1fr 220px; }

.line-field { display: flex; align-items: baseline; gap: 14px; min-width: 0; }
.line-field label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.line-field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--paper-rule);
  padding: 6px 2px 5px;
  font-family: 'Special Elite', 'Courier Prime', monospace;
  font-size: 17px;
  color: var(--paper-ink);
  outline: none;
  border-radius: 0;
}
.line-field input::placeholder { color: rgba(122, 106, 74, 0.6); font-style: italic; }
.line-field input:focus {
  border-bottom: 2px solid var(--paper-ink);
  padding-bottom: 4.5px;
}
.line-field input[readonly] { color: var(--paper-muted); }

.receipt-section-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper-muted);
  text-align: center;
  position: relative;
  z-index: 1;
}

.question-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.question-block:last-of-type { margin-bottom: 0; }
.q-num {
  font-family: 'Special Elite', monospace;
  font-size: 15px;
  color: var(--paper-muted);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.q-body label {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--paper-ink);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.q-hint {
  font-family: 'Special Elite', 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--paper-muted);
  margin: 6px 0 14px;
  font-style: italic;
}
.q-body textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1.5px dashed var(--paper-rule);
  padding: 10px 0 8px;
  font-family: 'Special Elite', 'Courier Prime', monospace;
  font-size: 16px;
  line-height: 1.65;
  color: var(--paper-ink);
  resize: vertical;
  outline: none;
  border-radius: 0;
}
.q-body textarea:focus { border-bottom: 2px solid var(--paper-ink); }

.receipt-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.receipt-foot-meta {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: var(--paper-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.btn-stamp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-red);
  background: transparent;
  border: 2.5px solid var(--paper-red);
  border-radius: 0;
  cursor: pointer;
  transform: rotate(-0.6deg);
  transition:
    background 320ms cubic-bezier(0.16, 1, 0.3, 1),
    color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-stamp-arrow {
  display: inline-block;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-stamp:hover {
  background: var(--paper-red);
  color: #fffdf6;
  transform: rotate(0deg);
}
.btn-stamp:hover .btn-stamp-arrow { transform: translateX(4px); }
.btn-stamp:focus-visible {
  outline: 2px solid var(--paper-ink);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .receipt { padding: 44px 28px 36px; }
  .receipt::before { inset: 8px; }
  .receipt-head { flex-direction: column; align-items: flex-start; }
  .receipt-head-right { text-align: left; }
  .receipt-title { font-size: 26px; }
  .line-row,
  .line-row--split { grid-template-columns: 1fr; }
  .line-field { flex-direction: column; align-items: stretch; gap: 6px; }
  .receipt-foot { flex-direction: column; align-items: stretch; gap: 20px; }
  .btn-stamp { justify-content: center; transform: none; }
  .question-block { grid-template-columns: 1fr; gap: 4px; }
  .q-num { padding-top: 0; }
  .q-body label { font-size: 19px; }
}

/* ---------- FOOT ---------- */
.foot { padding: 40px 0; background: var(--ink); color: var(--bg); }
.foot-row { display: flex; justify-content: space-between; align-items: center; }
.foot .mark { color: var(--bg); }
.mark .mark-accent { color: var(--accent); }
.foot-meta { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------- STEP ROW (fletchpmm-style two-col, no card chrome) ---------- */
.step-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.step-row:first-of-type { margin-top: 40px; border-top: none; padding-top: 40px; }
.step-row:last-of-type { padding-bottom: 24px; }

.step-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.step-head {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 520px;
}
.step-prose {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.step-meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 14px;
}
.step-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  max-width: 560px;
}
.step-bullets li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.step-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.step-why {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 0;
}
.step-why strong {
  color: var(--ink);
  font-weight: 700;
}
.step-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}
.step-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

/* ---------- SCROLL REVEAL (apple ease: 0.16, 1, 0.3, 1) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered cadence inside a shared parent */
.reveal-group > .reveal:nth-of-type(1) { transition-delay: 0ms; }
.reveal-group > .reveal:nth-of-type(2) { transition-delay: 220ms; }
.reveal-group > .reveal:nth-of-type(3) { transition-delay: 420ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  :root { --gutter: 22px; }
  .block, .block.apply, .block.dark { padding: 80px 0; }
  .steps { max-width: 100%; }
  .step { grid-template-columns: 1fr; gap: 12px; padding: 32px; width: 100% !important; }
  .step-num { font-size: 100px; }
  .step-row { grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
  .step-row:first-of-type { padding-top: 24px; }
  .step-art { min-height: 0; order: 2; }
  .step-svg { max-width: 360px; }
  .step-head { font-size: clamp(28px, 7vw, 40px); }
  .grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .tool-card { padding: 26px 22px; }
  .scores { grid-template-columns: 1fr; gap: 18px; }
  .foot-row { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .kicker { font-size: 36px; }
}

/* =========================
   SECTION SHELL
========================= */
.section {
  padding: 140px 0;
  border-top: 1px solid var(--line);
}
.section--problem {
  padding: 160px 0 140px;
  text-align: center;
}
.section--work { padding: 140px 0 160px; }
.section--work .wrap { max-width: 1440px; }
.section--deal {
  padding: 140px 0;
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  border-top: 0;
}
.section--deal .section-kicker { color: color-mix(in srgb, var(--bg) 50%, transparent); }
.section--deal .section-h2 { color: var(--bg); }
.section--deal .section-h2 em { color: var(--accent); }
.section--deal .section-lede { color: color-mix(in srgb, var(--bg) 70%, transparent); }

/* ---- Founder's note (two-column: portrait + name on left, note on right) ---- */
.section--founder-note {
  padding: 140px 0;
  background: var(--ink);
  color: var(--bg);
  border-top: 0;
  position: relative;
  overflow: hidden;
}
.section--founder-note::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at center, rgba(255,107,71,0.16) 0%, rgba(255,107,71,0) 65%);
  pointer-events: none;
}
.section--founder-note .wrap { position: relative; z-index: 1; }
.section--founder-note .section-kicker {
  color: var(--accent);
  text-align: center;
  margin: 0 0 64px;
}
/* Two-column layout: avatar stack on the left, note copy on the right.
   Stack animates as a card-deal shuffle driven by the inline script at the
   end of index.html. The stack supports an open-ended number of cards —
   ranks and shuffle interval are both computed from the card count at
   runtime, so we can slot in advisors/team later without CSS changes. */
.founder-note {
  margin: 0 auto;
  max-width: 960px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-body > p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 22px;
  color: color-mix(in srgb, var(--bg) 85%, transparent);
  font-weight: 400;
}
.founder-body > p:last-child { margin-bottom: 0; }
.founder-body > p:first-child { margin-top: 0; }

/* Stack container — hosts the absolute-positioned cards and the caption. */
.founder-stack {
  position: relative;
  width: 240px;
  padding-top: 28px; /* room for the deal-arc to lift above top card */
}
/* 140x140 reference box that all cards collapse into.  Overflow visible so
   depth-offset cards behind and the arc during a deal can both extend
   outside the nominal box. */
.founder-cards {
  position: relative;
  width: 140px;
  height: 160px; /* 140 + ~20px for rear-card vertical offset */
}

/* Each card is absolutely positioned at origin and then translated/rotated
   by its current --rank (0 = front).  Transitions smooth rank changes; a
   one-off keyframe adds the arc motion to whichever card is being dealt. */
.founder-card {
  --rank: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transform-origin: 50% 55%;
  transform: translate3d(
      calc(var(--rank) * 20px),
      calc(var(--rank) * 14px),
      0
    )
    rotate(calc(var(--rank) * 9deg));
  z-index: calc(10 - var(--rank));
  opacity: calc(1 - var(--rank) * 0.14);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 600ms ease;
  will-change: transform;
}
.founder-card.is-dealing {
  animation: founder-deal 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes founder-deal {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
    z-index: 99;
  }
  45% {
    transform: translate3d(96px, -28px, 0) rotate(22deg);
    z-index: 99;
  }
  100% {
    /* Lands in its new rank position (will have been updated by JS before
       the animation ends so there's no jump when the class is removed). */
    transform: translate3d(
      calc(var(--rank) * 20px),
      calc(var(--rank) * 14px),
      0
    ) rotate(calc(var(--rank) * 9deg));
    z-index: calc(10 - var(--rank));
  }
}

.founder-portrait {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 20px 44px -18px rgba(255, 107, 71, 0.55),
              0 0 0 6px rgba(255, 255, 255, 0.04);
  background: #1e1c1a;
  display: block;
}

/* Name label: all labels stack at the same position, only the active one
   is visible via cross-fade.  Height set to prevent layout jitter on swap. */
.founder-name {
  position: relative;
  margin: 24px 0 0;
  width: 140px;
  height: 22px;
  text-align: left;
}
.founder-name-text {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bg);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 380ms ease, transform 380ms ease;
  pointer-events: none;
}
.founder-name-text[data-state="active"] {
  opacity: 1;
  transform: translateY(0);
}
.founder-name-text::before {
  content: "— ";
  color: var(--accent);
}

/* Hover pause: slow the animations so the stack visibly settles rather than
   freezing mid-deal.  The JS also pauses scheduling on mouseenter. */
.founder-stack:hover .founder-card { animation-play-state: paused; }

/* Reduced motion: no arc, no cross-fade — show the front card + its name
   statically.  JS respects this too and never schedules ticks. */
@media (prefers-reduced-motion: reduce) {
  .founder-card,
  .founder-name-text {
    transition: none;
    animation: none;
  }
}

/* Mobile: single column, stack above copy. */
@media (max-width: 820px) {
  .section--founder-note { padding: 100px 0; }
  .founder-note {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 620px;
    justify-items: start;
  }
  .founder-body > p { font-size: 17px; line-height: 1.65; }
  .founder-stack { width: 200px; padding-top: 24px; }
  .founder-cards { width: 120px; height: 140px; }
  .founder-card { width: 120px; height: 120px; }
  .founder-portrait { width: 120px; height: 120px; }
  @keyframes founder-deal {
    0%   { transform: translate3d(0, 0, 0) rotate(0); z-index: 99; }
    45%  { transform: translate3d(78px, -22px, 0) rotate(20deg); z-index: 99; }
    100% {
      transform: translate3d(
        calc(var(--rank) * 12px),
        calc(var(--rank) * 8px),
        0
      ) rotate(calc(var(--rank) * 5deg));
      z-index: calc(10 - var(--rank));
    }
  }
  .founder-card {
    transform: translate3d(
        calc(var(--rank) * 12px),
        calc(var(--rank) * 8px),
        0
      )
      rotate(calc(var(--rank) * 5deg));
  }
  .founder-name { width: 120px; }
}
@media (max-width: 720px) {
  .section--founder-note::before { width: 360px; height: 360px; left: -20%; }
  .section--founder-note .section-kicker { margin-bottom: 40px; }
}

.section-kicker {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.section-h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 28px;
}
.section-h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
}
.section-lede {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
}
.section--work .section-kicker,
.section--work .section-h2,
.section--work .section-lede { margin-left: 0; margin-right: 0; }
.section--work .section-lede { max-width: 620px; margin-bottom: 12px; }
.section--work .section-lede--hint {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: none;
  margin-bottom: 56px;
}

/* =========================
   PROBLEM SECTION
========================= */
.section--problem .problem-h2 {
  max-width: 980px;
  margin: 0 auto 72px;
}
.section--problem .problem-h2 em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
  position: relative;
}
.section--problem .problem-h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.35;
}

/* Side-by-side layout: stage left, copy right */
.problem-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto 96px;
}

.problem-stage {
  position: relative;
  width: 100%;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -32px;
}

/* Ambient decoration */
.problem-deco {
  position: absolute;
  color: var(--line);
  pointer-events: none;
  opacity: 0.75;
}
.problem-deco-dots {
  top: 8px;
  left: 4%;
  color: var(--accent-soft);
  animation: qDrift 14s ease-in-out infinite;
}
.problem-deco-plus {
  top: 38%;
  right: 6%;
  color: var(--muted);
  animation: qDrift 16s ease-in-out infinite reverse;
  animation-delay: 2s;
}
.problem-deco-ring {
  bottom: 14%;
  left: 8%;
  color: var(--accent);
  animation: qDrift 12s ease-in-out infinite;
  animation-delay: 1s;
}

/* Founder illustration — soft halo, no box shadow, enlarged */
.problem-figure {
  position: relative;
  width: clamp(460px, 46vw, 660px);
  z-index: 2;
  animation: qFloat 9s ease-in-out infinite;
}
.problem-figure::before {
  content: "";
  position: absolute;
  inset: 10% 8% 6% 8%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 71, 0.14), transparent 65%);
  z-index: -1;
  border-radius: 50%;
}
.problem-illus {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

/* Sketch-line overlay emanating from the centerpiece */
.problem-sketch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.problem-sketch .ps-orbit {
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-dasharray: 4 8;
  opacity: 0.35;
}
.problem-sketch .ps-orbit--2 {
  stroke: var(--muted);
  stroke-dasharray: 2 6;
  opacity: 0.28;
}
.problem-sketch .ps-ray {
  stroke: var(--accent);
  stroke-width: 1.8;
  opacity: 0.55;
  fill: none;
  stroke-dasharray: 580;
  stroke-dashoffset: 0;
  animation: psDraw 6s ease-in-out infinite;
}
.problem-sketch .ps-ray--tr { animation-delay: 0.4s; }
.problem-sketch .ps-ray--bl { animation-delay: 0.8s; }
.problem-sketch .ps-ray--br { animation-delay: 1.2s; }
.problem-sketch .ps-tick {
  stroke: var(--accent);
  stroke-width: 1.8;
  opacity: 0.5;
}
.problem-sketch .ps-dot {
  fill: var(--accent);
  opacity: 0.75;
}

@keyframes psDraw {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.55; }
  45%      { stroke-dashoffset: 0; opacity: 0.7; }
  50%      { stroke-dashoffset: 580; opacity: 0.3; }
  95%      { stroke-dashoffset: 0; opacity: 0.55; }
}

/* Question cards — signature site card style, orbiting the founder */
.q-card {
  position: absolute;
  width: clamp(200px, 17vw, 240px);
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-sm);
  padding: 40px 26px 26px;
  box-shadow: var(--shadow-hard);
  text-align: center;
  z-index: 3;
  animation: qFloat var(--qf-dur, 8s) ease-in-out infinite;
  animation-delay: var(--qf-delay, 0s);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
@media (hover: hover) {
  .q-card:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 6px 7px 0 0 var(--ink);
    z-index: 4;
  }
}
.q-card-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-inv);
  border: 2px solid var(--bg);
  box-shadow: 0 2px 0 0 var(--ink);
}
.q-card-icon svg { width: 24px; height: 24px; }
.q-card-text {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 auto 14px;
  text-align: center;
}
.q-card-line {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto;
}

/* Four orbital positions — figure is left-aligned, so cards hug its corners */
.q-card--1 { top: 4%;     left: -2%;   transform: rotate(-2deg); }
.q-card--2 { top: 8%;     right: 0%;   transform: rotate(1.8deg); }
.q-card--3 { bottom: 8%;  left: -2%;   transform: rotate(1.4deg); }
.q-card--4 { bottom: 2%;  right: 0%;   transform: rotate(-1.6deg); }

/* (Old per-card dashed stubs removed — replaced by the .problem-sketch SVG overlay) */

/* Problem body copy — right column of the split */
.problem-copy {
  max-width: 520px;
  margin: 0;
  text-align: left;
  justify-self: start;
}
.problem-lede {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.55;
  color: var(--ink-2, #2a2622);
  margin: 0 0 18px;
}
.problem-lede em {
  font-style: italic;
  color: var(--ink);
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(255, 107, 71, 0.22) 62%);
  padding: 0 2px;
}
.problem-punch {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 28px 0 0;
}

/* Floating keyframes */
@keyframes qFloat {
  0%, 100% { transform: translate(var(--qf-tx, 0), 0) rotate(var(--qf-rot, 0deg)); }
  50%      { transform: translate(var(--qf-tx, 0), -12px) rotate(var(--qf-rot, 0deg)); }
}
@keyframes qDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-8px, 6px); }
}

/* Preserve each card's rotation while floating */
.q-card--1 { --qf-rot: -2deg; }
.q-card--2 { --qf-rot: 1.8deg; }
.q-card--3 { --qf-rot: 1.4deg; }
.q-card--4 { --qf-rot: -1.6deg; }

@media (prefers-reduced-motion: reduce) {
  .problem-figure,
  .q-card,
  .problem-deco { animation: none !important; }
}

@media (max-width: 1024px) {
  .problem-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem-copy {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .problem-stage {
    min-height: 0;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
    margin-left: 0;
  }
  .problem-figure {
    width: clamp(220px, 56vw, 320px);
    order: -1;
    animation: qFloat 9s ease-in-out infinite;
  }
  .q-card {
    position: relative;
    inset: auto;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none;
    width: 100%;
    max-width: 420px;
    animation: none;
  }
  .q-card::before { display: none; }
  .q-card--1, .q-card--2, .q-card--3, .q-card--4 {
    --qf-rot: 0deg;
  }
  .problem-deco-dots,
  .problem-deco-plus,
  .problem-deco-ring { display: none; }
  .problem-sketch { display: none; }
}

/* =========================
   TIMELINE
========================= */
.timeline {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 0;
}
.timeline-line {
  position: absolute;
  left: calc(50% - 3px);
  top: 20px;
  width: 6px;
  height: calc(100% - 40px);
  color: var(--line);
  overflow: visible;
  pointer-events: none;
  /* Float above .ts dark-panel backgrounds so the coral stroke threads
     through Step 01 and Step 03 instead of being hidden behind them. */
  z-index: 3;
}
.timeline-path {
  /* Coral stroke keeps the line visible on both cream and black panels,
     so the step-to-step flow never breaks. */
  stroke: var(--accent);
  stroke-width: 2.5;
  transition: stroke-dashoffset 140ms linear;
}

/* Each step is wrapped in a .ts-frame that provides its own scroll range.
   The .ts itself sticks to the viewport for the duration of its frame —
   so the step holds while the coral timeline line threads past its image. */
.ts-frame {
  position: relative;
  /* Taller frame = longer stick duration. Step is ~80vh; this gives ~70vh of
     scroll during which the step is pinned and the coral line threads past. */
  min-height: 160vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.ts-frame:last-child { padding-bottom: 0; }

.ts {
  position: sticky;
  /* Flush against the sticky nav (72px tall) so no cream gap exposes the
     coral timeline line above Step 01's dark panel. */
  top: 72px;
  /* Lift the entire sticky step above the timeline-line (z-index: 3) so the
     image can actually obscure the coral stroke. Without this, sticky creates
     its own stacking context at z-index: auto, trapping .ts-art's z-index: 5
     inside — and the line paints on top of the image. */
  z-index: 4;
  width: 100%;
  display: grid;
  /* text column : node : art column — art always gets the wider track */
  grid-template-columns: 1fr 80px 1.9fr;
  gap: 48px;
  padding: 0;
  align-items: center;
}
.ts:last-child { padding-bottom: 0; }

/* Images ride in front of the coral timeline line so the stroke never
   slices through the artwork. Timeline line stays at z-index 3. */
.ts-art {
  position: relative;
  z-index: 5;
}
.ts-img {
  position: relative;
  z-index: 5;
}

/* Default side assignment (odd: text-left, image-right) */
.ts > .ts-text { grid-column: 1; text-align: right; justify-self: end; max-width: 540px; }
.ts > .ts-node { grid-column: 2; }
.ts > .ts-art  { grid-column: 3; justify-self: start; }

/* Even steps: flip column tracks so art stays on the wider side (now on the left) */
.ts[data-step="02"],
.ts[data-step="04"] { grid-template-columns: 1.9fr 80px 1fr; }
.ts[data-step="02"] > .ts-text,
.ts[data-step="04"] > .ts-text { grid-column: 3; text-align: left; justify-self: start; }
.ts[data-step="02"] > .ts-art,
.ts[data-step="04"] > .ts-art  { grid-column: 1; justify-self: end; }

.ts-node {
  position: relative;
  z-index: 2;
  width: 100px;
  display: flex;
  justify-content: center;
  padding-top: 0;
}
.ts-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition:
    background 500ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 500ms cubic-bezier(0.16, 1, 0.3, 1),
    color 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ts.is-active .ts-num {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: scale(1.06);
  box-shadow: 0 12px 32px -12px rgba(20,20,20,0.4);
}

.ts-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ts-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms, transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}
.ts-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
}
.ts-desc {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 160ms, transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}
.ts.is-visible .ts-label,
.ts.is-visible .ts-title,
.ts.is-visible .ts-desc,
.ts.is-visible .ts-meta {
  opacity: 1;
  transform: translateY(0);
}

/* Step meta (inputs + what-you-get lists) */
.ts-meta {
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 220ms, transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 220ms;
  max-width: 520px;
}
.ts-meta:last-child { margin-bottom: 0; }
.ts-meta-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.ts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ts-list li {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  position: relative;
  padding-left: 18px;
}
.ts-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
/* When text-column is right-aligned (odd steps), flip bullets to the right */
.ts > .ts-text .ts-list li { padding-left: 0; padding-right: 18px; }
.ts > .ts-text .ts-list li::before { left: auto; right: 0; }
/* Even steps (text on right) use left-aligned bullets */
.ts[data-step="02"] > .ts-text .ts-list li,
.ts[data-step="04"] > .ts-text .ts-list li { padding-left: 18px; padding-right: 0; }
.ts[data-step="02"] > .ts-text .ts-list li::before,
.ts[data-step="04"] > .ts-text .ts-list li::before { left: 0; right: auto; }

.ts-art {
  background: transparent;
  border: 0;
  padding: 0;
  max-width: 1040px;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) 280ms, transform 800ms cubic-bezier(0.16, 1, 0.3, 1) 280ms;
}
.ts.is-visible .ts-art { opacity: 1; transform: translateY(0); }
.ts-svg {
  width: 100%;
  height: auto;
  display: block;
  color: var(--ink);
}
.ts-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(0.97);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 360ms, filter 900ms cubic-bezier(0.16, 1, 0.3, 1) 360ms;
  filter: saturate(0.92);
}
.ts.is-active .ts-img {
  transform: scale(1);
  filter: saturate(1);
}
@media (prefers-reduced-motion: reduce) {
  .ts-img { transform: none !important; filter: none !important; transition: none !important; }
}

/* Step 1: magnifying lens sweep + highlight fade */
.ts-art-1 .ts-lens {
  transform: translate(-40px, -40px);
  opacity: 0;
  transition: transform 1400ms cubic-bezier(0.16, 1, 0.3, 1) 500ms, opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 500ms;
}
.ts[data-step="01"].is-active .ts-art-1 .ts-lens {
  transform: translate(0, 0);
  opacity: 1;
}
.ts-art-1 .ts-doc-highlight {
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 1400ms;
}
.ts[data-step="01"].is-active .ts-art-1 .ts-doc-highlight {
  opacity: 0.22 !important;
}

/* Step 2: bubbles pop in sequentially */
.ts-art-2 .ts-bubble-a,
.ts-art-2 .ts-bubble-b {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ts[data-step="02"].is-active .ts-art-2 .ts-bubble-a {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 400ms;
}
.ts[data-step="02"].is-active .ts-art-2 .ts-bubble-b {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 1100ms;
}

/* Step 3: checkmarks tick sequentially + stamp */
.ts-art-3 .ts-tick {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ts-art-3 .ts-check-box {
  fill: transparent;
  stroke: var(--line);
  stroke-width: 1.5;
  transition: fill 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="1"] .ts-check-box { fill: var(--ink); stroke: var(--ink); transition-delay: 400ms; }
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="2"] .ts-check-box { fill: var(--ink); stroke: var(--ink); transition-delay: 700ms; }
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="3"] .ts-check-box { fill: var(--ink); stroke: var(--ink); transition-delay: 1000ms; }
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="4"] .ts-check-box { fill: var(--ink); stroke: var(--ink); transition-delay: 1300ms; }
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="1"] .ts-tick { stroke-dashoffset: 0; transition-delay: 500ms; }
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="2"] .ts-tick { stroke-dashoffset: 0; transition-delay: 800ms; }
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="3"] .ts-tick { stroke-dashoffset: 0; transition-delay: 1100ms; }
.ts[data-step="03"].is-active .ts-art-3 .ts-check[data-check="4"] .ts-tick { stroke-dashoffset: 0; transition-delay: 1400ms; }

.ts-art-3 .ts-stamp,
.ts-art-3 .ts-stamp-text {
  opacity: 0;
  transform: rotate(-12deg);
  transform-origin: 232px 140px;
  transform-box: fill-box;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.3, 1.5, 0.4, 1);
}
.ts[data-step="03"].is-active .ts-art-3 .ts-stamp,
.ts[data-step="03"].is-active .ts-art-3 .ts-stamp-text {
  opacity: 0.85;
  transform: rotate(-6deg);
  transition-delay: 1800ms;
}

/* =========================================================
   Dark-panel treatment for Step 01 and Step 03.
   Alternating black/cream/black/cream rhythm.
   Padding is tuned to match the default .ts (56px 0 96px) vertical
   rhythm so the dark cards sit on the timeline without breaking pace.
   Timeline line stroke is coral (see .timeline-path override) so the
   vertical thread remains visible across both surfaces.
========================================================= */
.ts[data-step="01"],
.ts[data-step="03"] {
  background: var(--ink);
  border-radius: 32px;
  padding: 56px 56px 72px;
  margin: 0 0 12px;
  box-shadow: 0 28px 64px -36px rgba(20, 20, 20, 0.3);
  /* Lift the dark panel above the coral timeline line (z-index: 3) so the
     line disappears behind the card instead of threading through it. Was
     previously z-index: 0 to allow the line to show through — now inverted
     per current design: image/card always covers the line. */
  z-index: 6;
}
/* Title: white with coral <em> (existing em rule already handles accent). */
.ts[data-step="01"] .ts-title,
.ts[data-step="03"] .ts-title {
  color: var(--ink-inv);
}
/* Body copy: soft white for contrast without glare. */
.ts[data-step="01"] .ts-desc,
.ts[data-step="03"] .ts-desc {
  color: rgba(255, 255, 255, 0.82);
}
/* "What you get" label: muted white so it reads as metadata, not heading. */
.ts[data-step="01"] .ts-meta-label,
.ts[data-step="03"] .ts-meta-label {
  color: rgba(255, 255, 255, 0.55);
}
/* List items: white, coral dash bullet already contrasts fine. */
.ts[data-step="01"] .ts-list li,
.ts[data-step="03"] .ts-list li {
  color: var(--ink-inv);
}
/* Node circle: coral ring + coral digits on black so it sits like a pin. */
.ts[data-step="01"] .ts-num,
.ts[data-step="03"] .ts-num {
  background: var(--ink);
  border-color: var(--accent);
  color: var(--accent);
}
.ts[data-step="01"].is-active .ts-num,
.ts[data-step="03"].is-active .ts-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
/* Image: rounded + subtle lift so the cream-backed illustration doesn't
   look pasted onto the black panel. */
.ts[data-step="01"] .ts-img,
.ts[data-step="03"] .ts-img {
  border-radius: 20px;
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.45);
}

@media (max-width: 820px) {
  .ts[data-step="01"],
  .ts[data-step="03"] {
    padding: 32px 24px 40px;
    border-radius: 24px;
    margin: 0 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ts-label, .ts-title, .ts-desc, .ts-meta, .ts-art,
  .ts-art-1 .ts-lens, .ts-art-1 .ts-doc-highlight,
  .ts-art-2 .ts-bubble-a, .ts-art-2 .ts-bubble-b,
  .ts-art-3 .ts-stamp, .ts-art-3 .ts-stamp-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ts-art-3 .ts-tick { stroke-dashoffset: 0 !important; }
  .ts-art-3 .ts-check-box { fill: var(--ink) !important; stroke: var(--ink) !important; }
}

@media (max-width: 820px) {
  .section { padding: 100px 0; }
  .section--problem, .section--work, .section--deal { padding: 100px 0; }
  .section--itinerary { padding: 80px 0 90px; }

  /* Vertical rail makes no sense in a single-column stack — hide on mobile. */
  .timeline-line { display: none; }

  .ts-frame {
    min-height: 0;
    padding: 0;
    display: block;
  }

  /* Mobile timeline: single-column flex stack. Explicit `order` fixes the fact
     that DOM order varies per step (01/03 have node between text and art,
     02/04 lead with art). Visual order everywhere: node → text → art. */
  .ts,
  .ts[data-step="02"],
  .ts[data-step="04"] {
    position: static;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 36px 0 56px;
  }
  .ts[data-step="01"],
  .ts[data-step="03"] {
    padding: 32px 24px 40px;
  }

  .ts > .ts-node,
  .ts[data-step="02"] > .ts-node,
  .ts[data-step="04"] > .ts-node {
    order: 1;
    width: auto;
    justify-content: flex-start;
    margin: 0 0 20px;
  }
  .ts-num { width: 44px; height: 44px; font-size: 13px; }

  .ts > .ts-text,
  .ts[data-step="02"] > .ts-text,
  .ts[data-step="04"] > .ts-text {
    order: 2;
    text-align: left;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .ts > .ts-art,
  .ts[data-step="02"] > .ts-art,
  .ts[data-step="04"] > .ts-art {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 32px 0 0;
    justify-self: stretch;
  }
  .ts-art img,
  .ts-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }

  /* bullets always left-aligned on mobile */
  .ts > .ts-text .ts-list li,
  .ts[data-step="02"] > .ts-text .ts-list li,
  .ts[data-step="04"] > .ts-text .ts-list li { padding-left: 18px; padding-right: 0; }
  .ts > .ts-text .ts-list li::before,
  .ts[data-step="02"] > .ts-text .ts-list li::before,
  .ts[data-step="04"] > .ts-text .ts-list li::before { left: 0; right: auto; }
}

/* =========================
   SPRINT ITINERARY
========================= */
.section--itinerary { padding: 140px 0 160px; }
.section--itinerary .section-kicker,
.section--itinerary .section-h2 { text-align: center; }
.section--itinerary .section-h2 { max-width: 880px; margin: 0 auto 72px; }

.itin-block {
  position: relative;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  background: var(--card);
  padding: 44px 40px;
  box-shadow: 4px 6px 0 0 var(--ink);
}
.itin-block + .itin-block { margin-top: 56px; }

.itin-tag {
  position: absolute;
  top: -18px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  background: var(--card);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  box-shadow: 2px 3px 0 0 var(--ink);
}
.itin-tag--pre { background: var(--bg); }
.itin-tag--week { background: var(--accent); color: var(--card); }

.itin-pre-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 12px;
}
.itin-pre-grid::before {
  content: "";
  grid-column: 1 / 2;
}

.itin-pre-cell { }
.itin-cell-head {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.itin-cell-body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.itin-week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 20px;
  margin-top: 4px;
}
.itin-day {
  padding: 16px 20px 8px;
  border-right: 1.5px dashed var(--line);
}
.itin-day:last-child { border-right: 0; }
.itin-day:first-child { padding-left: 0; }

.itin-dayname {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.itin-day-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  margin: 0 0 4px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.itin-day-title--alt { color: var(--ink); }
.itin-duration {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 16px;
  letter-spacing: 0;
}
.itin-day-title--alt + .itin-duration { color: var(--muted); }
.itin-day-body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 960px) {
  .itin-pre-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 20px;
  }
  .itin-pre-grid::before { display: none; }
  .itin-week-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .itin-day {
    border-right: 0;
    border-bottom: 1.5px dashed var(--line);
    padding: 0 0 24px;
  }
  .itin-day:last-child { border-bottom: 0; }
  .itin-day:first-child { padding-left: 0; }
}
@media (max-width: 640px) {
  .itin-block { padding: 36px 24px 28px; }
  .itin-tag { left: 20px; font-size: 12px; padding: 6px 12px; }
  .itin-pre-grid { grid-template-columns: 1fr; gap: 24px; }
  .itin-week-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   WAITLIST — hold-to-submit button with track + arrow + circle
   Tokens: --success, --track-w, --track-h
   ========================================================= */
:root {
  --success:  #22c55e;
  --success-dark: #16a34a;
  --track-w:  240px;
  --track-h:  48px;
}

.waitlist {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 36px 36px;
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wl-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.wl-field input {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.wl-field input:focus {
  border-color: var(--ink);
  background: var(--card);
}
.wl-field input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.wl-field.is-invalid input {
  border-color: var(--accent);
}
.wl-err {
  min-height: 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.2;
}
.wl-err:empty { min-height: 0; }

.waitlist-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

/* ----- Hold track ----- */
.hold-track {
  --progress: 0;
  position: relative;
  width: var(--track-w);
  height: var(--track-h);
  padding: 0;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  overflow: hidden;
  display: block;
  transition:
    background 240ms cubic-bezier(.2,.9,.25,1),
    border-color 240ms cubic-bezier(.2,.9,.25,1),
    transform 240ms cubic-bezier(.2,.9,.25,1);
  font-family: inherit;
}
.hold-track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.hold-track:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Arrow glyph, always visible, rides the leading edge of the liquid.
   Travel: from 8px (left pad) to (track_w - 8 - 30) = lands exactly on
   the circle's left edge so it visually meets the finish line. */
.hold-arrow {
  position: absolute;
  top: 50%;
  left: calc(8px + (var(--track-w) - 46px) * var(--progress));
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--card);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 3;
  transition: background 240ms cubic-bezier(.2,.9,.25,1), color 240ms cubic-bezier(.2,.9,.25,1);
}

/* Liquid mass behind the arrow — width aligns to arrow center as it advances */
.hold-liquid {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  /* Arrow center = left + 15px (half of 30px arrow). Liquid fills up to there. */
  width: calc(23px + (var(--track-w) - 46px) * var(--progress));
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 60%, transparent) 0%,
    var(--accent) 55%,
    var(--accent-2) 100%
  );
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  transition: background 240ms cubic-bezier(.2,.9,.25,1);
}

/* Hollow circle at the finish line */
.hold-circle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition:
    background 240ms cubic-bezier(.2,.9,.25,1),
    border-color 240ms cubic-bezier(.2,.9,.25,1),
    color 240ms cubic-bezier(.2,.9,.25,1);
}
.hold-check { display: block; }

/* Drain-back: smooth reverse when released early */
.hold-track.is-draining .hold-liquid,
.hold-track.is-draining .hold-arrow {
  transition:
    left 260ms cubic-bezier(.4,0,.2,1),
    width 260ms cubic-bezier(.4,0,.2,1),
    background 240ms cubic-bezier(.2,.9,.25,1);
}

/* Success — whole component snaps green and pulses once */
.hold-track.is-success {
  background: var(--success);
  border-color: var(--success-dark);
  animation: holdTick 520ms cubic-bezier(.2,1.6,.3,1) 1;
}
.hold-track.is-success .hold-liquid {
  background: var(--success);
}
.hold-track.is-success .hold-arrow {
  background: var(--success-dark);
  color: var(--card);
}
.hold-track.is-success .hold-circle {
  background: var(--success-dark);
  border-color: var(--success-dark);
  color: var(--card);
}
@keyframes holdTick {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Error state — brief red pulse on network fail */
.hold-track.is-error {
  background: var(--bg);
  border-color: var(--accent);
  animation: holdShake 420ms cubic-bezier(.36,.07,.19,.97) 1;
}
@keyframes holdShake {
  0%,100% { transform: translateX(0); }
  20%  { transform: translateX(-4px); }
  50%  { transform: translateX(4px); }
  80%  { transform: translateX(-2px); }
}

.hold-subtext {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  min-height: 18px;
  letter-spacing: 0.01em;
  transition: color 200ms ease;
}
.hold-track.is-success ~ .hold-subtext { color: var(--success-dark); font-weight: 600; }
.hold-track.is-error   ~ .hold-subtext { color: var(--accent); font-weight: 600; }

/* Reduced-motion — skip liquid/arrow movement animation,
   but the 3-second hold is still required by the JS. */
@media (prefers-reduced-motion: reduce) {
  .hold-track,
  .hold-track .hold-liquid,
  .hold-track .hold-arrow,
  .hold-track .hold-circle {
    transition: none !important;
    animation: none !important;
  }
  .hold-track .hold-liquid,
  .hold-track .hold-arrow {
    /* Freeze in starting position — JS still counts 3s */
    --progress: 0 !important;
  }
  .hold-track.is-success { animation: none; }
}

@media (max-width: 480px) {
  :root { --track-w: 220px; }
  .waitlist { padding: 32px 24px 28px; }
}

/* =========================================================
   OAUTH — Google / Outlook sign-in shortcuts above the form
   ========================================================= */

.waitlist-oauth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.oauth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--card);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.oauth-btn:hover {
  border-color: var(--ink);
  background: var(--bg);
  transform: translateY(-1px);
}
.oauth-btn:active {
  transform: translateY(0);
}
.oauth-btn svg {
  flex-shrink: 0;
}

.waitlist-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.waitlist-divider::before,
.waitlist-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.oauth-note {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.oauth-note.is-success {
  background: color-mix(in srgb, var(--success, #22c55e) 12%, var(--card));
  border: 1px solid color-mix(in srgb, var(--success, #22c55e) 35%, transparent);
  color: var(--success-dark, #16a34a);
}
.oauth-note.is-error {
  background: color-mix(in srgb, var(--accent) 10%, var(--card));
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent);
}

.wl-field input.is-prefilled {
  background: color-mix(in srgb, var(--success, #22c55e) 6%, var(--bg));
}

/* Mobile pass: stack OAuth earlier to prevent "Continue with Outlook" clipping on 360-479px */
@media (max-width: 560px) {
  .waitlist-oauth { grid-template-columns: 1fr; }
}

/* Mobile pass: inline Gradient-Book (gb) icon sizing — renders small, inline with text */
.gb-icon {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Mobile pass: proportionally smaller gb-icon on phones */
@media (max-width: 720px) {
  .gb-icon {
    width: 16px;
    height: 16px;
    vertical-align: -2px;
    margin-right: 6px;
  }
}

/* Mobile pass: explicitly disable marquee pause on touch devices — avoids stuck-paused bugs */
@media (hover: none) {
  .hero-marquee-track { animation-play-state: running !important; }
}

/* Mobile pass: tighter gutter on very narrow viewports (360px-class devices) */
@media (max-width: 400px) {
  :root { --gutter: 16px; }
}
