/* ============================================================
   tag. — marketing site design system
   Warm monochrome (charcoal + off-white) with gold as the one
   expressive accent. Mirrors the app's design system (DESIGN.md).
   ============================================================ */

:root {
  --bg:        #1C1917;
  --elevated:  #292524;
  --card:      #2C2926;
  --card-hi:   #312E2B;
  --ink:       #F5F0E8;
  --ink-2:     #A8A29E;
  --ink-3:     #78716C;
  --gold:      #C9A84C;
  --gold-hi:   #E3C878;
  --gold-dim:  rgba(201, 168, 76, 0.14);
  --gold-line: rgba(201, 168, 76, 0.35);
  --ember:     #E5604D;
  --green:     #30D158; /* used once: the waitlist success check */
  --line:      rgba(255, 255, 255, 0.06);
  --line-2:    rgba(255, 255, 255, 0.10);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --r-card: 16px;
  --r-input: 12px;

  --wrap: 1120px;
  --pad: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s;
  --t-med: 0.6s;
  --t-slow: 0.9s;
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--bg); }

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; border-radius: 0 0 12px 0;
  font-weight: 600; z-index: 200;
}
.skip-link:focus { left: 0; color: var(--bg); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: clamp(72px, 12vw, 140px) 0; }

/* ---------- type ---------- */

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.display {
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  letter-spacing: -0.03em;
}

.h-section { font-size: clamp(2rem, 4.6vw, 3.25rem); }

h3 { font-size: 1.375rem; letter-spacing: -0.01em; }

p { margin: 0; }

.lead {
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  color: var(--ink-2);
  max-width: 34em;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.muted { color: var(--ink-2); }
.fine { color: var(--ink-3); font-size: 0.875rem; }

.money {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: #FFFCF4;
  color: var(--bg);
  box-shadow: 0 8px 30px rgba(245, 240, 232, 0.12);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-hi); }

.btn--small { padding: 10px 20px; font-size: 0.9375rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold);
}
.link-arrow::after { content: "\2192"; transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-fast) ease, border-color var(--t-fast) ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(28, 25, 23, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { font-size: 1.5rem; }
.nav__logo:hover { color: var(--ink); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a:not(.btn) {
  color: var(--ink-2);
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav__links a:not(.btn):hover,
.nav__links a[aria-current="page"] { color: var(--ink); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(28, 25, 23, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 110px var(--pad) 40px;
  flex-direction: column;
  gap: 8px;
}
.menu.is-open { display: flex; }
.menu a:not(.btn) {
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.menu .btn { margin-top: 24px; align-self: flex-start; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* ---------- cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.card::before {
  /* top sheen, like the app's TagCard */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) {
  .grid2, .grid3 { grid-template-columns: 1fr; }
}

/* ---------- reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in { opacity: 1; transform: none; }

/* no-JS and reduced-motion safety: html gets .js from site.js */
html:not(.js) .reveal { opacity: 1; transform: none; }
html:not(.js) .journey__track { height: auto; }
html:not(.js) .journey__sticky { position: static; height: auto; padding-top: 40px; padding-bottom: 60px; }
html:not(.js) .journey__captions { min-height: 0; }
html:not(.js) .journey__captions p { position: static; opacity: 1; transform: none; margin-bottom: 0.5em; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--pad) 80px;
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 130vmin; height: 130vmin;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 35%, rgba(201,168,76,0.10), transparent 55%);
  pointer-events: none;
}

.hero__routes {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  opacity: 0.5;
  pointer-events: none;
}
.hero__routes path {
  fill: none;
  stroke: var(--gold);
  stroke-opacity: 0.22;
  stroke-width: 1.5;
  stroke-dasharray: 2 7;
  stroke-linecap: round;
}

.hero__mark {
  font-size: clamp(5rem, 17vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  z-index: 1;
}
.hero__mark .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: ch-in 0.7s var(--ease) forwards;
}
.hero__mark .ch:nth-child(1) { animation-delay: 0.05s; }
.hero__mark .ch:nth-child(2) { animation-delay: 0.13s; }
.hero__mark .ch:nth-child(3) { animation-delay: 0.21s; }

/* the period drops in like a pin */
.hero__dot {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(-1.2em);
  animation: pin-drop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) 0.62s forwards;
}
.hero__dot::after {
  /* gold ripple where the pin lands */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.06em;
  width: 0.5em; height: 0.5em;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.2);
  opacity: 0;
  animation: pin-ripple 0.9s ease-out 1.05s;
}

@keyframes ch-in {
  to { opacity: 1; transform: none; }
}
@keyframes pin-drop {
  0%   { opacity: 0; transform: translateY(-1.2em); }
  60%  { opacity: 1; transform: translateY(0.06em); }
  80%  { transform: translateY(-0.03em); }
  100% { opacity: 1; transform: none; }
}
@keyframes pin-ripple {
  0%   { opacity: 0.9; transform: translateX(-50%) scale(0.2); }
  100% { opacity: 0; transform: translateX(-50%) scale(2.4); }
}

.hero__tagline {
  margin-top: 26px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  z-index: 1;
}
.hero__line {
  margin-top: 16px;
  color: var(--ink-2);
  max-width: 32em;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  z-index: 1;
}
.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}
.hero__tagline, .hero__line, .hero__cta, .hero__pin {
  opacity: 0;
  animation: rise-in 0.8s var(--ease) forwards;
}
.hero__pin     { animation-delay: 0.9s; }
.hero__tagline { animation-delay: 1.0s; }
.hero__line    { animation-delay: 1.12s; }
.hero__cta     { animation-delay: 1.24s; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero__pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold-hi);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1;
}
.hero__pin i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pin-pulse 2.4s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  color: var(--ink-3);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 1.8s forwards;
}
.hero__scroll i {
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.55); opacity: 0.5; }
}

/* ============================================================
   JOURNEY — the scroll-scrubbed signature scene
   ============================================================ */

.journey { padding: 0; }

.journey__track { height: 420vh; position: relative; }

.journey__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 84px var(--pad) 24px;
}

.journey__head { text-align: center; }

.journey__captions {
  position: relative;
  margin: 18px auto 0;
  max-width: 36em;
  min-height: 3.4em;
}
.journey__captions p {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}
.journey__captions p b { color: var(--ink); font-weight: 600; }
.journey__captions p.on { opacity: 1; transform: none; }

.journey__stage {
  max-width: 900px;
  width: 100%;
  margin: 8px auto 0;
  flex: 0 1 auto;
}

.jmap { width: 100%; height: auto; overflow: visible; }

.jmap .road-bed {
  fill: none;
  stroke: var(--line-2);
  stroke-width: 2;
  stroke-dasharray: 1 9;
  stroke-linecap: round;
}
.jmap .route {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.45));
}
.jmap .city-dot { fill: var(--ink-3); }
.jmap .city-ring { fill: none; stroke: var(--gold); stroke-width: 2; opacity: 0; }
.jmap .city-ring.on { opacity: 1; }
.jmap .city-label {
  fill: var(--ink-2);
  font-family: var(--font);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.jmap .city-label.dest { text-anchor: end; }

.jmap .car {
  fill: var(--ink);
  stroke: var(--bg);
  stroke-width: 3;
}
.jmap .rider {
  opacity: 0;
}
.jmap .rider circle {
  fill: var(--gold);
  stroke: var(--bg);
  stroke-width: 3;
}
.jmap .rider text {
  fill: var(--bg);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-anchor: middle;
}

.journey__card {
  margin: 22px auto 0;
  width: min(440px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.journey__price-label {
  color: var(--ink-3);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journey__price {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.1;
  color: var(--gold-hi);
}
.journey__seats { display: flex; gap: 7px; justify-content: flex-end; margin-bottom: 8px; }
.journey__seats i {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-3);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.journey__seats i.on {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}
.journey__riders {
  color: var(--ink-2);
  font-size: 0.9375rem;
  text-align: right;
  min-width: 12ch;
}

.journey__note {
  text-align: center;
  margin-top: 16px;
  color: var(--ink-3);
  font-size: 0.8125rem;
}

@media (max-width: 640px) {
  .journey__track { height: 380vh; }
  .journey__card { padding: 16px 18px; }
  .jmap .city-label { font-size: 30px; }
  .jmap .rider text { font-size: 20px; }
  .journey__captions { min-height: 4.6em; }
}

/* ============================================================
   Shared section patterns
   ============================================================ */

/* --- is / is-not --- */
.idea-cards { margin-top: 48px; }
.idea-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.idea-list li { display: flex; gap: 12px; color: var(--ink-2); }
.idea-list .tick, .idea-list .dash { flex: none; font-weight: 700; }
.idea-list .tick { color: var(--gold); }
.idea-list .dash { color: var(--ink-3); }
.card--isnot { background: var(--elevated); border-style: dashed; border-color: var(--line-2); }

/* --- steps --- */
.steps { margin-top: 48px; counter-reset: step; }
.step { position: relative; }
.step__n {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-2); }

/* --- split breakdown card --- */
.split-card {
  max-width: 460px;
  margin: 0 auto;
}
.split-card__route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
}
.split-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold-hi);
  border: 1px solid var(--gold-line);
}
.split-card__sub { color: var(--ink-3); font-size: 0.9375rem; margin-top: 6px; }
.split-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 1rem;
}
.split-row .money { color: var(--ink); }
.split-row--total { border-bottom: 0; color: var(--ink); font-weight: 600; }
.split-row--total .money { color: var(--gold-hi); font-size: 1.375rem; }
.split-card__hint { margin-top: 10px; color: var(--ink-3); font-size: 0.875rem; }

/* --- phones --- */
.phones {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .phones { grid-template-columns: 1fr; justify-items: center; } }

.phone {
  width: min(300px, 100%);
  margin: 0 auto;
  border-radius: 44px;
  border: 1px solid var(--line-2);
  background: #131110;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.phone__screen {
  border-radius: 36px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  padding: 18px 14px 22px;
  min-height: 540px;
}
.phone__notch {
  width: 86px; height: 24px;
  border-radius: 999px;
  background: #131110;
  margin: 0 auto 14px;
}
.phone-cap { text-align: center; margin-top: 18px; }
.phone-cap b { display: block; font-size: 1.0625rem; }
.phone-cap span { color: var(--ink-3); font-size: 0.9375rem; }

/* in-phone UI primitives */
.ui { display: grid; gap: 10px; font-size: 0.8125rem; }
.ui__title { font-size: 1.25rem; padding: 2px 4px 6px; }
.ui__seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--elevated);
  border-radius: 999px;
  padding: 3px;
  text-align: center;
  color: var(--ink-3);
  font-weight: 600;
}
.ui__seg div { padding: 7px 0; border-radius: 999px; }
.ui__seg .on { background: var(--ink); color: var(--bg); }

.uc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  text-align: left;
}
.uc--req { border-style: dashed; border-color: var(--line-2); background: var(--elevated); }
.uc__h { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.uc__route { font-weight: 600; font-size: 0.9375rem; }
.uc__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold-hi);
}
.uc__to { font-weight: 600; font-size: 0.9375rem; }
.uc__when { color: var(--ink-3); margin-top: 3px; }
.uc__rider { color: var(--ink-2); margin-top: 8px; }
.uc__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 12px;
}
.uc__dots { display: flex; gap: 4px; }
.uc__dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--ink-3);
}
.uc__dots i.on { background: var(--gold); border-color: var(--gold); }
.uc__price { text-align: right; }
.uc__price b { font-size: 1.125rem; display: block; font-variant-numeric: tabular-nums; }
.uc__price span { color: var(--ink-3); font-size: 0.75rem; }

.ud__hero { font-size: 1.25rem; font-weight: 600; padding: 2px 4px 0; }
.ud__sub { color: var(--ink-3); padding: 0 4px 6px; }
.upc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.upc .k { color: var(--ink-3); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.upc .big { font-size: 1.875rem; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--gold-hi); }
.upc .drops { color: var(--ink-2); font-size: 0.8125rem; margin: 2px 0 10px; }
.urow {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.urow.tot { color: var(--ink); font-weight: 600; }
.upill {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 0;
  font-size: 0.9375rem;
  margin-top: 2px;
}

.um__banner {
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}
.um__ring {
  width: 34px; height: 34px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.um__ring i { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.um__t { font-weight: 600; font-size: 0.9375rem; }
.um__d { color: var(--ink-2); margin-top: 3px; }
.um__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.um__av {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  color: var(--gold-hi);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.um__card .nm { font-weight: 600; }
.um__card .mt { color: var(--ink-3); }
.um__card .sc {
  margin-left: auto;
  color: var(--gold-hi);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* --- trust strip --- */
.trust { background: var(--elevated); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item .ic {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  color: var(--gold-hi);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.trust-item h3 { margin-bottom: 8px; font-size: 1.1875rem; }
.trust-item p { color: var(--ink-2); font-size: 1rem; }

/* ============================================================
   Waitlist
   ============================================================ */

.wait { text-align: center; position: relative; overflow: hidden; }
.wait__glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120vmin; height: 90vmin;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.10), transparent 60%);
  pointer-events: none;
}
.wait__sub { margin: 18px auto 0; max-width: 30em; color: var(--ink-2); font-size: 1.125rem; }

.wait-form {
  margin: 36px auto 0;
  display: flex;
  gap: 10px;
  max-width: 460px;
  position: relative;
  z-index: 1;
}
.wait-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: var(--elevated);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.wait-form input[type="email"]::placeholder { color: var(--ink-3); }
.wait-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.wait-form input[type="email"].is-error {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(229,96,77,0.16);
}
@media (max-width: 520px) {
  .wait-form { flex-direction: column; }
  .wait-form .btn { width: 100%; }
}

.wait-msg {
  margin-top: 14px;
  min-height: 1.5em;
  font-size: 0.9375rem;
  color: var(--ink-2);
}
.wait-msg.is-error { color: var(--ember); }

.wait-done {
  display: none;
  margin: 36px auto 0;
  max-width: 460px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 28px;
  text-align: center;
}
.wait-done.is-shown { display: block; animation: rise-in 0.6s var(--ease); }
.wait-done__check {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(48, 209, 88, 0.14);
  border: 1px solid rgba(48, 209, 88, 0.4);
  color: var(--green);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.wait-done b { display: block; font-size: 1.1875rem; }
.wait-done span { color: var(--ink-2); font-size: 0.9375rem; }

.wait-fine { margin-top: 22px; color: var(--ink-3); font-size: 0.875rem; }

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ============================================================
   Interior pages
   ============================================================ */

.page-hero {
  padding: clamp(150px, 22vh, 220px) 0 clamp(48px, 8vw, 88px);
  text-align: left;
}
.page-hero .lead { margin-top: 22px; }
.page-hero .eyebrow { margin-bottom: 18px; }

.divide { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* prose (about, safety long-form) */
.prose { max-width: 46em; }
.prose h2 { font-size: 1.625rem; margin: 2.2em 0 0.6em; }
.prose h3 { font-size: 1.1875rem; margin: 1.8em 0 0.5em; }
.prose p { color: var(--ink-2); margin: 0 0 1.1em; }
.prose p b, .prose li b { color: var(--ink); font-weight: 600; }
.prose ul { color: var(--ink-2); padding-left: 1.2em; margin: 0 0 1.1em; }
.prose li { margin-bottom: 0.5em; }

/* legal */
.legal { max-width: 44em; }
.legal h2 { font-size: 1.375rem; margin: 2.4em 0 0.6em; }
.legal p, .legal li { color: var(--ink-2); }
.legal p { margin: 0 0 1em; }
.legal ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal li { margin-bottom: 0.4em; }
.legal .fine { margin-top: 3em; }

/* FAQ */
.faq-group { margin-top: 44px; }
.faq-group h2 { font-size: 1.375rem; margin-bottom: 14px; }
details.qa {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  margin-bottom: 10px;
  overflow: hidden;
}
details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--t-fast) var(--ease);
  flex: none;
}
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa .qa__a { padding: 0 22px 18px; color: var(--ink-2); }

/* pricing calculator */
.calc { max-width: 520px; margin: 0 auto; }
.calc__riders {
  display: flex;
  gap: 10px;
  margin: 20px 0 6px;
}
.calc__riders button {
  flex: 1;
  background: var(--elevated);
  border: 1px solid var(--line-2);
  border-radius: var(--r-input);
  color: var(--ink-2);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 4px;
  cursor: pointer;
  transition: border-color var(--t-fast) ease, color var(--t-fast) ease, background var(--t-fast) ease;
}
.calc__riders button[aria-pressed="true"] {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-hi);
}
.calc__note { color: var(--ink-3); font-size: 0.875rem; text-align: center; margin-top: 14px; }

/* comparison table */
.compare { margin-top: 48px; overflow-x: auto; }
.compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.compare th, .compare td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9875rem;
}
.compare th { color: var(--ink-3); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; }
.compare td { color: var(--ink-2); }
.compare td:first-child { color: var(--ink); font-weight: 600; }
.compare .yes { color: var(--gold-hi); font-weight: 600; }

/* big stat / cta band */
.band {
  text-align: center;
  background: var(--elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band .lead { margin: 18px auto 0; }
.band .btn { margin-top: 32px; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  background: #191614;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand .logo { font-size: 1.75rem; }
.footer__tag { color: var(--ink-2); margin-top: 8px; }
.footer__soon {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.8125rem;
  color: var(--ink-3);
  border: 1px dashed var(--line-2);
  border-radius: 999px;
  padding: 7px 14px;
}
.footer__col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--ink-2);
  padding: 5px 0;
  font-size: 0.9375rem;
}
.footer__col a:hover { color: var(--gold-hi); }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 0.875rem;
}

/* ============================================================
   404
   ============================================================ */

.lost {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
}
.lost .display { margin-bottom: 12px; }

/* ============================================================
   Reduced motion — everything lands in its final state
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .hero__mark .ch, .hero__dot, .hero__tagline, .hero__line,
  .hero__cta, .hero__pin, .hero__scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  /* the journey scene collapses to a single static frame */
  .journey__track { height: auto !important; }
  .journey__sticky { position: static; height: auto; min-height: 0; padding-top: 40px; padding-bottom: 60px; }
  .journey__captions p { position: static; opacity: 1 !important; transform: none !important; margin-bottom: 0.5em; }
  .journey__captions { min-height: 0; }
}
