/* ==========================================================================
   KANGAROO — Vertical Mobility. Electrified.
   Design system: ink + bone + gold. Bricolage Grotesque / Hanken Grotesk / Space Mono.
   ========================================================================== */

:root {
  /* palette */
  --ink:        #0E1014;
  --ink-2:      #15181F;
  --ink-3:      #1C2029;
  --bone:       #F7F5EF;
  --paper:      #FBFAF6;
  --paper-2:    #F1EEE5;
  --gold:       #F5B72E;
  --gold-deep:  #E29C12;
  --gold-soft:  #FBE6AE;
  --navy:       #1B2540;
  --line:       #E6E2D6;
  --line-dk:    rgba(255,255,255,.10);

  --txt:        #16181E;
  --txt-soft:   #565A66;
  --txt-mut:    #8A8E9A;
  --txt-inv:    #F7F5EF;
  --txt-inv-soft: #A6ABB8;

  /* type */
  --display: "Bricolage Grotesque", Georgia, serif;
  --body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  /* motion */
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(16,18,20,.04), 0 12px 32px -12px rgba(16,18,20,.18);
  --shadow-lg: 0 2px 6px rgba(16,18,20,.06), 0 40px 80px -24px rgba(16,18,20,.32);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--txt);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.02; letter-spacing: -.025em; }
.kicker {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .6em;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; opacity: .7; }
.section-dark .kicker { color: var(--gold); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section-dark { background: var(--ink); color: var(--txt-inv); }
.section-dark p { color: var(--txt-inv-soft); }
.eyebrow-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--txt-soft); max-width: 56ch; line-height: 1.5; }
.section-dark .lede { color: var(--txt-inv-soft); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--bone);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--bg); color: var(--fg);
  padding: 14px 26px; border-radius: 100px;
  font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  transition: transform .35s var(--spring), box-shadow .3s var(--ease), background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -10px rgba(16,18,20,.5); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn-gold { --bg: var(--gold); --fg: var(--ink); }
.btn-gold:hover { box-shadow: 0 14px 30px -8px rgba(245,183,46,.6); }
.btn-ghost { --bg: transparent; --fg: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px currentColor, 0 10px 22px -12px rgba(0,0,0,.3); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn .arr { transition: transform .35s var(--spring); }
.btn:hover .arr { transform: translateX(4px); }

/* ===========================================================================
   ANNOUNCEMENT BAR
   =========================================================================== */
.topbar {
  background: var(--ink); color: var(--bone);
  font-size: .82rem; text-align: center; padding: 9px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  letter-spacing: .01em; position: relative; z-index: 60;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(245,183,46,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(245,183,46,.6)} 70%{box-shadow:0 0 0 8px rgba(245,183,46,0)} 100%{box-shadow:0 0 0 0 rgba(245,183,46,0)} }

/* ===========================================================================
   HEADER / NAV
   =========================================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,.72); backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(0,0,0,.3); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.04em; }
.brand .mark { width: 30px; height: 30px; color: var(--ink); transition: transform .5s var(--spring); }
.brand:hover .mark { transform: translateY(-4px) rotate(-4deg); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--txt-soft); transition: color .2s; position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--gold-deep); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
.nav-links a:hover { color: var(--txt); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .signin { font-weight: 600; font-size: .95rem; }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.burger span { display:block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .3s var(--ease); }
.burger span::before, .burger span::after { content:""; position:absolute; left:0; width:22px; height:2px; background:var(--ink); transition:.3s var(--ease); }
.burger span::before { top:-7px; } .burger span::after { top:7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top:0; transform: rotate(45deg); }
body.menu-open .burger span::after { top:0; transform: rotate(-45deg); }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero { background: var(--ink); color: var(--bone); overflow: hidden; padding-block: clamp(40px, 7vw, 90px) 0; position: relative; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 80% at 78% 0%, rgba(245,183,46,.14), transparent 55%),
    radial-gradient(80% 60% at 12% 100%, rgba(27,37,64,.55), transparent 60%);
  pointer-events:none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center;
}
.hero-copy { padding-block: clamp(20px, 4vw, 60px) 60px; max-width: 620px; }
.hero h1 {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem); color: var(--bone);
  margin: 22px 0 0;
}
.hero h1 em { font-style: normal; color: var(--gold); position: relative; display: inline-block; }
.hero h1 em .bob { display: inline-block; animation: bob 2.6s var(--spring) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.hero .lede { color: var(--txt-inv-soft); margin-top: 22px; font-size: clamp(1.05rem,1.6vw,1.25rem); }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta .m { }
.hero-meta .m b { font-family: var(--display); font-size: 1.7rem; color: var(--bone); display:block; letter-spacing: -.02em; }
.hero-meta .m span { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-mut); }

/* hero product stage */
.hero-stage { position: relative; align-self: stretch; min-height: 540px; display: flex; align-items: flex-end; justify-content: center; }
.hero-stage .glow { position:absolute; inset: 8% 12% 0; background: radial-gradient(60% 60% at 50% 40%, rgba(245,183,46,.22), transparent 70%); filter: blur(8px); }
.hero-prod { position: relative; z-index: 2; height: clamp(420px, 56vw, 640px); width: auto; filter: drop-shadow(0 50px 60px rgba(0,0,0,.55)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-16px) } }
/* altitude ruler */
.ruler { position: absolute; right: clamp(-4px, 1vw, 24px); top: 6%; bottom: 12%; width: 64px; z-index: 3; display: flex; flex-direction: column-reverse; justify-content: space-between; font-family: var(--mono); }
.ruler .tick { display: flex; align-items: center; gap: 8px; color: var(--txt-mut); font-size: .62rem; letter-spacing: .08em; }
.ruler .tick::before { content:""; width: 14px; height: 1px; background: var(--line-dk); }
.ruler .tick.hi { color: var(--gold); }
.ruler .tick.hi::before { width: 26px; background: var(--gold); }
.float-chip {
  position: absolute; z-index: 4; background: rgba(21,24,31,.78); backdrop-filter: blur(10px);
  border: 1px solid var(--line-dk); border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg);
}
.float-chip .ico { width: 30px; height: 30px; border-radius: 9px; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: 1rem; }
.float-chip b { font-size: .82rem; color: var(--bone); display: block; line-height: 1.1; }
.float-chip span { font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-mut); }
.chip-1 { top: 14%; left: -2%; animation: floaty 7s ease-in-out infinite; }
.chip-2 { top: 46%; right: 8%; animation: floaty 5.5s ease-in-out .6s infinite; }
.chip-3 { bottom: 16%; left: 2%; animation: floaty 6.5s ease-in-out .3s infinite; }

/* ===========================================================================
   MARQUEE / TRUST
   =========================================================================== */
.marquee { background: var(--ink); border-top: 1px solid var(--line-dk); padding: 22px 0; overflow: hidden; position: relative; }
.marquee::before, .marquee::after { content:""; position:absolute; top:0; bottom:0; width: 120px; z-index:2; pointer-events:none; }
.marquee::before { left:0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right:0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--txt-inv-soft); opacity: .55; letter-spacing: -.01em; white-space: nowrap; display:flex; align-items:center; gap:56px; }
.marquee-track span::after { content:"·"; color: var(--gold); }

/* ===========================================================================
   PROBLEM (stats)
   =========================================================================== */
.problem h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 16ch; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--line); }
.stat {
  padding: 34px 30px 30px 0; border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.stat .num.gold { color: var(--gold-deep); }
.stat p { margin-top: 14px; color: var(--txt-soft); font-size: .98rem; max-width: 34ch; }
@media (max-width: 720px){ .stat-row { grid-template-columns: 1fr; } .stat { border-right:none; border-bottom:1px solid var(--line); padding-right:0; } .stat:last-child{border-bottom:none;} }

/* ===========================================================================
   HOW IT WORKS
   =========================================================================== */
.how { background: var(--paper-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px 30px; position: relative; overflow: hidden;
  transition: transform .5s var(--spring), box-shadow .4s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .verb { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; }
.step .verb span { color: var(--gold-deep); }
.step p { color: var(--txt-soft); margin-top: 10px; font-size: .98rem; }
.step .n { position: absolute; top: 18px; right: 22px; font-family: var(--mono); font-size: .8rem; color: var(--txt-mut); }
.step .glyph { width: 52px; height: 52px; border-radius: 14px; background: var(--ink); color: var(--gold); display: grid; place-items: center; margin-bottom: 22px; }
.step .glyph svg { width: 26px; height: 26px; }

/* ===========================================================================
   FEATURES
   =========================================================================== */
.features .eyebrow-row { margin-bottom: 12px; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.feat {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  background: var(--paper); transition: transform .5s var(--spring), border-color .3s, background .3s;
}
.feat:hover { transform: translateY(-6px); border-color: var(--gold); background: #fff; }
.feat .fi { width: 46px; height: 46px; color: var(--gold-deep); margin-bottom: 18px; }
.feat h3 { font-size: 1.2rem; letter-spacing: -.02em; }
.feat p { color: var(--txt-soft); font-size: .94rem; margin-top: 8px; }
.feat .spec { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--gold-deep); margin-top: 14px; text-transform: uppercase; }

/* ===========================================================================
   SHOWCASE (lifestyle band)
   =========================================================================== */
.showcase { background: var(--ink); color: var(--bone); padding: 0; }
.showcase-inner { display: grid; grid-template-columns: 1.1fr 1fr; }
.showcase-copy { padding: clamp(60px, 8vw, 120px) clamp(28px, 5vw, 80px); align-self: center; max-width: 620px; }
.showcase-copy h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); color: var(--bone); }
.showcase-copy .lede { margin-top: 20px; }
.showcase-copy .quote { margin-top: 34px; border-left: 3px solid var(--gold); padding-left: 22px; font-family: var(--display); font-size: 1.25rem; line-height: 1.3; color: var(--bone); letter-spacing: -.02em; }
.showcase-copy .quote cite { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-mut); margin-top: 14px; font-style: normal; }
.showcase-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.showcase-imgs img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.02); }
.showcase-imgs .tall { grid-row: span 2; }
@media (max-width: 900px){ .showcase-inner { grid-template-columns: 1fr; } .showcase-imgs { grid-template-columns: 1fr 1fr; } .showcase-imgs .tall { grid-row: span 1; } }

/* ===========================================================================
   SPECS (telemetry)
   =========================================================================== */
.specs { background: var(--ink-2); color: var(--bone); }
.specs-head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.specs-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--bone); max-width: 14ch; }
.bom { font-family: var(--mono); text-align: right; }
.bom b { display:block; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--gold); letter-spacing: -.02em; }
.bom span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-mut); }
.spec-table { margin-top: 54px; border-top: 1px solid var(--line-dk); }
.spec-table .row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--line-dk); align-items: center; transition: background .25s, padding .3s; }
.spec-table .row:hover { background: rgba(245,183,46,.05); padding-left: 14px; }
.spec-table .k { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-mut); }
.spec-table .v { font-family: var(--display); font-size: clamp(1.1rem,2.2vw,1.5rem); color: var(--bone); letter-spacing: -.02em; }
.spec-table .v em { color: var(--gold); font-style: normal; }
@media(max-width:600px){ .spec-table .row{ grid-template-columns:1fr; gap:4px; } }

/* ===========================================================================
   PRICING
   =========================================================================== */
.pricing .eyebrow-row { margin-bottom: 12px; }
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; align-items: stretch; }
.tier {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px 34px;
  background: var(--paper); display: flex; flex-direction: column;
  transition: transform .5s var(--spring), box-shadow .4s;
}
.tier:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tier.featured { background: var(--ink); color: var(--bone); border-color: var(--ink); transform: scale(1.02); }
.tier.featured:hover { transform: scale(1.02) translateY(-8px); box-shadow: var(--shadow-lg); }
.tier .badge { font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); align-self: flex-start; padding: 5px 10px; border-radius: 100px; background: var(--gold-soft); margin-bottom: 20px; }
.tier.featured .badge { background: var(--gold); color: var(--ink); }
.tier h3 { font-size: 1.5rem; }
.tier .price { font-family: var(--display); font-weight: 800; font-size: 3rem; letter-spacing: -.04em; margin-top: 8px; line-height: 1; }
.tier .price small { font-size: .9rem; font-family: var(--body); font-weight: 600; color: var(--txt-mut); letter-spacing: 0; }
.tier.featured .price small { color: var(--txt-inv-soft); }
.tier .perhop { font-family: var(--mono); font-size: .8rem; color: var(--gold-deep); margin-top: 8px; }
.tier.featured .perhop { color: var(--gold); }
.tier > p { color: var(--txt-soft); margin-top: 16px; font-size: .95rem; flex-grow: 1; }
.tier.featured > p { color: var(--txt-inv-soft); }
.tier ul.tl { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.tier ul.tl li { font-size: .92rem; display: flex; gap: 10px; align-items: flex-start; }
.tier ul.tl li::before { content:"↑"; color: var(--gold-deep); font-weight: 700; }
.tier.featured ul.tl li::before { color: var(--gold); }
.tier .btn { margin-top: 26px; width: 100%; }
.fineprint { font-family: var(--mono); font-size: .72rem; color: var(--txt-mut); margin-top: 28px; text-align: center; }

/* ===========================================================================
   CITIES
   =========================================================================== */
.cities { background: var(--paper-2); }
.cities-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.city-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.city {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  transition: transform .4s var(--spring), border-color .3s;
}
.city:hover { transform: translateX(6px); border-color: var(--gold); }
.city .cn { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.city .cs { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); padding: 4px 9px; border-radius: 100px; background: var(--gold-soft); }
.city .cs.soon { color: var(--txt-mut); background: var(--paper-2); }
.cities-aside h2 { font-size: clamp(1.9rem,4vw,3rem); }
.cities-aside .lede { margin-top: 18px; }
.cities-aside .btn { margin-top: 28px; }
@media(max-width:860px){ .cities-grid{ grid-template-columns:1fr; gap:36px; } }

/* ===========================================================================
   SAFETY
   =========================================================================== */
.safety { background: var(--ink); color: var(--bone); }
.safety-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.safety-card { border: 1px solid var(--line-dk); border-radius: var(--radius); padding: 28px 26px; background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); transition: border-color .3s, transform .5s var(--spring); }
.safety-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.safety-card .si { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.safety-card h3 { color: var(--bone); font-size: 1.2rem; }
.safety-card p { margin-top: 10px; font-size: .94rem; }
@media(max-width:820px){ .safety-grid{ grid-template-columns:1fr; } }

/* ===========================================================================
   TESTIMONIALS
   =========================================================================== */
.testi .eyebrow-row { margin-bottom: 12px; }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.t-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; background: var(--paper); }
.t-card .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.t-card blockquote { font-size: 1.08rem; line-height: 1.45; margin-top: 14px; letter-spacing: -.01em; }
.t-card .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.t-card .av { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-family: var(--display); font-weight: 800; }
.t-card .who b { font-size: .92rem; display: block; }
.t-card .who span { font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--txt-mut); }
@media(max-width:820px){ .t-grid{ grid-template-columns:1fr; } }

/* ===========================================================================
   STATS BAND
   =========================================================================== */
.band { background: var(--gold); color: var(--ink); }
.band-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.band .bn { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem,5vw,3.6rem); letter-spacing: -.04em; line-height: 1; }
.band .bl { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 10px; opacity: .8; }
@media(max-width:700px){ .band-grid{ grid-template-columns:1fr 1fr; gap:34px 20px; } }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-grid h2 { font-size: clamp(2rem,4.4vw,3.2rem); position: sticky; top: 100px; }
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-family: var(--display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.acc-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.acc-q .pm::before, .acc-q .pm::after { content:""; position:absolute; background: var(--gold-deep); border-radius: 2px; transition: transform .4s var(--spring); }
.acc-q .pm::before { top: 12px; left: 4px; right: 4px; height: 2.5px; }
.acc-q .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2.5px; }
.acc-item.open .pm::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-a p { padding-bottom: 24px; color: var(--txt-soft); max-width: 60ch; }
@media(max-width:780px){ .faq-grid{ grid-template-columns:1fr; gap:30px; } .faq-grid h2{ position:static; } }

/* ===========================================================================
   CTA / WAITLIST
   =========================================================================== */
.cta { background: var(--ink); color: var(--bone); overflow: hidden; position: relative; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 120% at 80% 110%, rgba(245,183,46,.18), transparent 60%); }
.cta-inner { position: relative; z-index: 2; max-width: 760px; }
.cta h2 { font-size: clamp(2.6rem, 7vw, 5rem); color: var(--bone); }
.cta h2 em { color: var(--gold); font-style: normal; }
.cta p { margin-top: 18px; font-size: 1.15rem; max-width: 48ch; }
.signup { display: flex; gap: 12px; margin-top: 34px; max-width: 520px; flex-wrap: wrap; }
.signup input { flex: 1; min-width: 220px; padding: 16px 20px; border-radius: 100px; border: 1.5px solid var(--line-dk); background: rgba(255,255,255,.04); color: var(--bone); font: inherit; font-size: 1rem; transition: border-color .25s, background .25s; }
.signup input::placeholder { color: var(--txt-mut); }
.signup input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.07); }
.signup .btn { flex-shrink: 0; }
.signup-note { font-family: var(--mono); font-size: .72rem; color: var(--txt-mut); margin-top: 16px; letter-spacing: .03em; }
.signup.done { pointer-events: none; }
.success { display: none; align-items: center; gap: 12px; margin-top: 30px; font-size: 1.1rem; color: var(--gold); font-weight: 600; }
.success.show { display: flex; animation: pop .5s var(--spring); }
@keyframes pop { from{ transform: scale(.8); opacity:0;} to{ transform: scale(1); opacity:1;} }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.footer { background: var(--ink-2); color: var(--txt-inv-soft); padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dk); }
.footer .brand { color: var(--bone); margin-bottom: 16px; }
.footer .brand .mark { color: var(--gold); }
.footer-blurb { font-size: .95rem; max-width: 36ch; }
.footer-blurb .badges { display: flex; gap: 10px; margin-top: 20px; }
.footer-blurb .badges a { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-dk); border-radius: 10px; padding: 9px 13px; font-size: .78rem; color: var(--bone); transition: border-color .25s; }
.footer-blurb .badges a:hover { border-color: var(--gold); }
.fcol h4 { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--txt-mut); font-weight: 700; margin-bottom: 18px; }
.fcol a { display: block; padding: 7px 0; font-size: .94rem; color: var(--txt-inv-soft); transition: color .2s, transform .2s; }
.fcol a:hover { color: var(--gold); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0 40px; flex-wrap: wrap; }
.footer-bottom .legal { font-size: .82rem; color: var(--txt-mut); }
.footer-bottom .legal a { text-decoration: underline; text-underline-offset: 2px; }
.footer-disclaimer { font-family: var(--mono); font-size: .7rem; color: var(--txt-mut); line-height: 1.6; padding-bottom: 44px; max-width: 80ch; opacity: .8; }
@media(max-width:860px){ .footer-top{ grid-template-columns:1fr 1fr; gap:34px; } }
@media(max-width:520px){ .footer-top{ grid-template-columns:1fr; } }

/* ===========================================================================
   REVEAL / UTIL
   =========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--spring); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ===========================================================================
   RESPONSIVE NAV / HERO
   =========================================================================== */
@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    background: var(--ink); color: var(--bone); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 8px; padding: 40px var(--pad); transform: translateX(100%);
    transition: transform .45s var(--spring); z-index: 55; box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links a { font-family: var(--display); font-size: 1.6rem; color: var(--bone); padding: 8px 0; }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .nav-cta .signin { display: none; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 420px; margin-top: 10px; }
  .ruler { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier.featured { transform: none; } .tier.featured:hover{ transform: translateY(-8px);}
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .float-chip { display: none; }
}
