:root {
  --black: #000000;
  --ink: #050505;
  --surface: #101112;
  --surface-raised: #18191b;
  --glass: rgba(18, 19, 21, 0.74);
  --glass-strong: rgba(23, 24, 26, 0.91);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 107, 44, 0.44);
  --text: #ffffff;
  --muted: #c4c4c4;
  --subtle: #8a8a8a;
  --dim: #5e5e5e;
  --orange: #ff6b2c;
  --orange-deep: #c53b00;
  --orange-soft: rgba(255, 107, 44, 0.14);
  --green: #48d17a;
  --red: #f05757;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shadow-orange: 0 0 46px rgba(255, 107, 44, 0.28);
  --shadow-card: 0 28px 90px rgba(0, 0, 0, 0.55);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 112px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 107, 44, 0.15), transparent 28rem),
    radial-gradient(circle at 78% 26%, rgba(255, 107, 44, 0.08), transparent 26rem),
    linear-gradient(180deg, #000000 0%, #060606 42%, #000000 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

#route-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.9;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ff9a5c);
  box-shadow: 0 0 20px rgba(255, 107, 44, 0.65);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.68);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.48);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, #ff7a2f, #ff4a00 62%, #9b2600),
    var(--orange);
  color: #090909;
  font-weight: 1000;
  font-style: italic;
  box-shadow: 0 0 24px rgba(255, 107, 44, 0.42);
}

.brand-mark.small {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 0.82rem;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.desktop-nav a,
.nav-cta,
.text-link {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.section-shell {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  align-items: center;
  min-height: 100svh;
  padding-top: 118px;
  padding-bottom: 72px;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 6.65vw, 6.45rem);
  line-height: 0.95;
  letter-spacing: -0.058em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5.5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h3 {
  letter-spacing: -0.045em;
}

.hero-subcopy,
.section-heading p,
.leader-card p,
.faq p,
.recap-card,
.signal-hero p,
.coach-console,
.story-rail article p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.68;
}

.hero-subcopy {
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  isolation: isolate;
  transition: transform 190ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 190ms ease, background 190ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-110%);
}

.button:hover::before {
  opacity: 1;
  animation: shine 900ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #ff7a2f, #ff5a12 48%, #d64500);
  color: #ffffff;
  box-shadow: 0 16px 44px rgba(255, 107, 44, 0.26);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

@keyframes shine {
  to {
    transform: translateX(110%);
  }
}

.hero-proof {
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.83rem;
}

.hero-stage {
  position: relative;
  min-height: 660px;
}

.route-world {
  position: relative;
  height: min(76vw, 690px);
  min-height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 107, 44, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 36%, rgba(255, 107, 44, 0.05)),
    rgba(5, 5, 5, 0.74);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  perspective: 1200px;
}

.route-world::before {
  position: absolute;
  inset: 10%;
  content: "";
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, rgba(255, 107, 44, 0.42) 47%, transparent 50%),
    radial-gradient(circle, transparent 52%, rgba(255, 107, 44, 0.12) 53%, transparent 54%);
  filter: blur(0.1px);
  opacity: 0.65;
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: orbit-breathe 8s ease-in-out infinite;
}

.world-ring {
  position: absolute;
  left: 50%;
  top: 51%;
  border: 1px solid rgba(255, 107, 44, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg);
  box-shadow: 0 0 28px rgba(255, 107, 44, 0.18);
}

.ring-one {
  width: 72%;
  height: 39%;
  animation: slow-spin 20s linear infinite;
}

.ring-two {
  width: 49%;
  height: 27%;
  opacity: 0.6;
  animation: slow-spin 26s linear infinite reverse;
}

.market-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.market-orbit span {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--muted);
  font-size: 0.74rem;
  backdrop-filter: blur(12px);
  animation: float-soft 4.8s ease-in-out infinite;
}

.market-orbit span:nth-child(1) { top: 15%; left: 17%; }
.market-orbit span:nth-child(2) { top: 22%; right: 14%; animation-delay: -1.4s; }
.market-orbit span:nth-child(3) { bottom: 20%; left: 12%; animation-delay: -2.1s; }
.market-orbit span:nth-child(4) { bottom: 14%; right: 17%; animation-delay: -3s; }

.phone-scene {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, 72%);
  min-height: 575px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #050505;
  transform: translate(-50%, -50%) rotateX(4deg) rotateY(-10deg) rotateZ(1deg);
  transform-style: preserve-3d;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.72), 0 0 80px rgba(255, 107, 44, 0.18);
  transition: transform 260ms ease-out;
}

.phone-top,
.phone-brand,
.builder-header,
.mock-topline,
.recap-header,
.coach-title,
.signal-hero,
.board-row,
.award-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.phone-top {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.83rem;
}

.phone-status {
  width: 42px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}

.phone-brand {
  justify-content: flex-start;
  margin-bottom: 18px;
  font-weight: 900;
}

.phone-card,
.phone-grid > div,
.coach-bubble,
.market-strip,
.floating-panel,
.visual-card,
.rail article,
.waitlist-form,
.faq details,
.early-access {
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--glass);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.phone-card {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 14px;
  padding: 17px;
  border-radius: 22px;
}

small {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 700;
}

.phone-card strong,
.phone-grid strong,
.market-strip strong {
  display: block;
  margin: 5px 0;
  color: var(--text);
}

.phone-card span,
.phone-grid small,
.coach-bubble,
.market-strip span {
  color: var(--muted);
}

.route-mini {
  position: relative;
  min-height: 68px;
}

.route-mini-svg {
  display: block;
  width: 100%;
  height: 72px;
  overflow: visible;
}

.mini-street {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.mini-street.faint {
  stroke: rgba(255, 255, 255, 0.08);
}

.mini-route-shadow,
.mini-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-route-shadow {
  stroke: rgba(255, 107, 44, 0.18);
  stroke-width: 10;
}

.mini-route {
  filter: url(#miniGlow);
  stroke: var(--orange);
  stroke-width: 4;
}

.mini-pin {
  fill: var(--orange);
  filter: url(#miniGlow);
}

.mini-pin.start {
  fill: #ffffff;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}

.phone-grid > div,
.coach-bubble,
.market-strip {
  padding: 16px;
  border-radius: 19px;
}

.phone-grid strong {
  font-size: 1.85rem;
  letter-spacing: -0.05em;
}

.coach-bubble {
  margin: 12px 0;
  line-height: 1.55;
}

.market-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: rgba(255, 107, 44, 0.22);
}

.market-strip strong {
  color: var(--orange);
  font-family: "SF Mono", ui-monospace, monospace;
}

.floating-panel {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: 14px 15px;
  border-radius: 18px;
  transform: translateZ(70px);
  animation: float-soft 5s ease-in-out infinite;
}

.floating-panel strong {
  display: block;
  margin: 5px 0 2px;
  font-size: 1.28rem;
}

.floating-panel span {
  color: var(--muted);
  font-size: 0.78rem;
}

.panel-plan { top: 14%; left: 7%; }
.panel-market { right: 5%; bottom: 18%; animation-delay: -2.1s; }
.panel-watch { right: 7%; top: 17%; animation-delay: -3.3s; }

@keyframes float-soft {
  0%, 100% { transform: translate3d(0, 0, 70px); }
  50% { transform: translate3d(0, -12px, 70px); }
}

@keyframes orbit-breathe {
  0%, 100% { opacity: 0.42; transform: rotateX(68deg) rotateZ(-18deg) scale(0.98); }
  50% { opacity: 0.8; transform: rotateX(68deg) rotateZ(-14deg) scale(1.03); }
}

@keyframes slow-spin {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg); }
}

@keyframes towerPulse {
  0%, 100% {
    box-shadow:
      0 0 22px rgba(255, 107, 44, 0.42),
      inset 0 0 18px rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow:
      0 0 34px rgba(255, 107, 44, 0.58),
      inset 0 0 22px rgba(255, 255, 255, 0.11);
  }
}

@keyframes skylineBreath {
  0%, 100% {
    opacity: 0.72;
    transform: translateY(0) scaleX(0.96);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px) scaleX(1.03);
  }
}

.story-rail,
.feature-section,
.market-section,
.waitlist-section,
.faq {
  padding: 96px 0;
}

.section-heading {
  max-width: 610px;
}

.section-heading.centered {
  max-width: 800px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
}

.rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.rail article {
  min-height: 250px;
  padding: 22px;
  border-radius: 24px;
}

.rail span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-family: "SF Mono", ui-monospace, monospace;
}

.rail h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.split.reverse {
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, 0.9fr);
}

.visual-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 30px;
}

.visual-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 78% 18%, rgba(255, 107, 44, 0.15), transparent 18rem);
}

.plan-builder {
  min-height: 520px;
}

.builder-header {
  margin-bottom: 18px;
}

.builder-header strong {
  color: var(--orange);
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 1.9rem;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  box-shadow: var(--shadow-orange);
}

.builder-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
}

.builder-list div {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.04);
}

.builder-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(72, 209, 122, 0.5);
}

.builder-list p {
  margin: 0;
  color: var(--muted);
}

.generated-plan {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 107, 44, 0.22);
  border-radius: 22px;
  background: var(--orange-soft);
}

.generated-plan p {
  margin: 14px 0 0;
  color: var(--muted);
}

.week-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 130px;
}

.week-bars span {
  display: block;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(180deg, #ff7a2f, #963000);
  box-shadow: 0 0 24px rgba(255, 107, 44, 0.18);
}

.week-bars span:nth-child(1) { height: 58%; }
.week-bars span:nth-child(2) { height: 64%; }
.week-bars span:nth-child(3) { height: 71%; }
.week-bars span:nth-child(4) { height: 78%; }
.week-bars span:nth-child(5) { height: 66%; }
.week-bars span:nth-child(6) { height: 42%; }

.dashboard-mock {
  min-height: 500px;
}

.mock-topline {
  margin-bottom: 22px;
  font-size: 1.25rem;
  font-weight: 900;
}

.active-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 107, 44, 0.8);
}

.workout-hero {
  padding: 24px;
  border: 1px solid rgba(255, 107, 44, 0.25);
  border-radius: 25px;
  background:
    linear-gradient(140deg, rgba(255, 107, 44, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.34);
}

.workout-hero h3 {
  margin: 10px 0 18px;
  font-size: 2.1rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.metric-row div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-row strong {
  display: block;
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 1.52rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.workout-hero button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff7a2f, #ff4e00);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.digest-line {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 19px;
}

.digest-line strong {
  display: block;
  margin-bottom: 6px;
}

.digest-line span {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 107, 44, 0.7);
}

.signal-console {
  min-height: 500px;
}

.signal-hero {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.ring-meter {
  display: grid;
  flex: 0 0 148px;
  place-items: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #070707 50%, transparent 51%),
    conic-gradient(var(--orange) 0 84%, rgba(255, 255, 255, 0.12) 84% 100%);
  box-shadow: 0 0 36px rgba(255, 107, 44, 0.34);
}

.ring-meter span {
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 3.2rem;
  font-weight: 900;
}

.signal-hero strong {
  display: block;
  margin: 6px 0;
  font-size: 1.6rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.signal-grid article {
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.signal-grid strong {
  display: block;
  margin: 10px 0 4px;
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 1.9rem;
}

.signal-grid span {
  color: var(--green);
}

.coach-console {
  display: grid;
  gap: 14px;
  min-height: 530px;
}

.coach-title {
  justify-content: flex-start;
}

.coach-title strong,
.coach-title small {
  display: block;
}

.message,
.coach-card {
  width: fit-content;
  max-width: 82%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.message.user {
  justify-self: end;
  border-color: rgba(255, 107, 44, 0.28);
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.22), rgba(197, 59, 0, 0.2));
  color: white;
}

.message.short {
  max-width: 72%;
}

.coach-card {
  width: 100%;
  max-width: 100%;
  border-color: rgba(255, 107, 44, 0.24);
  background: rgba(255, 107, 44, 0.08);
}

.coach-card strong,
.coach-card span {
  display: block;
}

.coach-card strong {
  margin: 8px 0 4px;
  font-size: 1.35rem;
}

.coach-card span {
  color: var(--muted);
}

.market-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 18px;
}

.route-skyline {
  min-height: 1030px;
}

.route-phone-showcase.visual-card {
  overflow: visible;
  padding: clamp(18px, 3.5vw, 34px) 0;
  border-color: transparent;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 48% 42%, rgba(255, 107, 44, 0.22), transparent 26rem),
    radial-gradient(ellipse at 50% 86%, rgba(255, 107, 44, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 52%, transparent);
  box-shadow: none;
  backdrop-filter: none;
}

.route-phone-showcase.visual-card::before {
  inset: 5% -8% 4%;
  z-index: 0;
  border-radius: 42px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 107, 44, 0.16) 48%, transparent),
    radial-gradient(ellipse at 50% 38%, rgba(255, 107, 44, 0.18), transparent 33rem);
  opacity: 0.9;
  filter: blur(26px);
}

.crew-reference-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 620px);
  min-height: 100%;
  padding: 0;
  isolation: isolate;
}

.crew-reference-shell::before {
  position: absolute;
  inset: 6% 8%;
  z-index: -2;
  content: "";
  border-radius: 72px;
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 107, 44, 0.28), transparent 21rem),
    radial-gradient(circle at 48% 76%, rgba(255, 107, 44, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  filter: blur(22px);
}

.crew-reference-phone {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 1090px;
  object-fit: contain;
  border-radius: 68px;
  -webkit-mask-image: radial-gradient(ellipse 74% 58% at 50% 50%, #000 70%, rgba(0, 0, 0, 0.84) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse 74% 58% at 50% 50%, #000 70%, rgba(0, 0, 0, 0.84) 84%, transparent 100%);
  filter:
    drop-shadow(0 46px 110px rgba(0, 0, 0, 0.78))
    drop-shadow(0 0 58px rgba(255, 107, 44, 0.22));
}

.crew-reference-glow {
  position: absolute;
  inset: auto 9% 8% 9%;
  z-index: -1;
  height: 24%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 107, 44, 0.22), transparent 68%);
  filter: blur(26px);
  animation: skylineBreath 5.5s ease-in-out infinite;
}

.route-phone-shell {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 17%),
    #080808;
  box-shadow:
    0 0 0 1px rgba(255, 107, 44, 0.16),
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 70px rgba(255, 107, 44, 0.12);
}

.route-phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 990px;
  padding: 22px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 107, 44, 0.14), transparent 18rem),
    linear-gradient(180deg, #040404, #090909 48%, #020202);
}

.route-phone-screen::before {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 118px;
  height: 34px;
  content: "";
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.route-phone-status {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 18px 26px;
  font-size: 0.86rem;
  font-weight: 900;
}

.crew-mock-header,
.mock-card-heading,
.mock-route-head,
.mock-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.crew-mock-header {
  margin-bottom: 14px;
}

.crew-title-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
}

.crew-title-lockup strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.crew-icon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  align-items: end;
  gap: 3px;
  width: 31px;
  height: 24px;
  filter: drop-shadow(0 0 14px rgba(255, 107, 44, 0.62));
}

.crew-icon i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px 999px 2px 2px;
  background: var(--orange);
}

.crew-icon i:nth-child(1),
.crew-icon i:nth-child(3) {
  height: 13px;
}

.crew-icon i:nth-child(2) {
  height: 19px;
}

.notify-dot {
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 107, 44, 0.8);
}

.mock-flowmarket-card,
.mock-route-panel,
.mock-top-routes,
.mock-selected-route {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mock-flowmarket-card {
  padding: 16px;
}

.mock-card-heading {
  margin-bottom: 12px;
}

.mock-overline {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mock-card-heading p,
.mock-route-head p,
.selected-copy p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.mock-card-heading a,
.mock-section-title a {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.mock-metrics-grid article {
  min-width: 0;
  padding: 11px 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.mock-metrics-grid small,
.mock-route-row.head,
.selected-stats span {
  color: var(--subtle);
  font-size: 0.65rem;
}

.mock-metrics-grid strong {
  display: block;
  margin: 7px 0 3px;
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: clamp(1rem, 2vw, 1.55rem);
  letter-spacing: -0.05em;
}

.mock-metrics-grid span {
  color: var(--muted);
  font-size: 0.68rem;
}

.mock-metrics-grid .green {
  color: var(--green);
}

.mock-route-panel {
  padding: 16px;
  margin-top: 10px;
}

.mock-route-head {
  position: relative;
  z-index: 4;
  margin-bottom: 10px;
}

.mock-route-head strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.view-toggle {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.view-toggle span {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--subtle);
  font-size: 0.68rem;
  font-weight: 900;
}

.view-toggle span:first-child {
  color: var(--orange);
  border: 1px solid rgba(255, 107, 44, 0.42);
  background: rgba(255, 107, 44, 0.1);
}

.mock-skyline-map {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 48% 76%, rgba(255, 107, 44, 0.22), transparent 17rem),
    radial-gradient(circle at 50% 42%, rgba(255, 107, 44, 0.2), transparent 12rem),
    radial-gradient(ellipse at 50% 120%, rgba(255, 107, 44, 0.26), transparent 22rem),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #111212, #050505 74%);
  background-size: auto, 42px 42px, 42px 42px, auto;
  perspective: 700px;
}

.mock-skyline-map::before {
  position: absolute;
  inset: -70px -45px;
  content: "";
  transform: rotateX(62deg) rotateZ(-6deg) translateY(76px) scale(1.13);
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 107, 44, 0.18), transparent 11rem),
    linear-gradient(30deg, transparent 0 42%, rgba(255, 107, 44, 0.08) 42% 44%, transparent 44%),
    linear-gradient(150deg, transparent 0 46%, rgba(255, 255, 255, 0.075) 46% 47%, transparent 47%),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 156px 156px, 172px 172px, 44px 44px, 44px 44px;
  opacity: 0.38;
}

.mock-skyline-map::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 22%, transparent 76%, rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.52));
  pointer-events: none;
}

.mock-route-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: perspective(700px) rotateX(54deg) rotateZ(-5deg) translateY(78px) scale(1.16);
  transform-origin: 50% 62%;
}

.mock-street {
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 2;
}

.mock-street.major {
  stroke: rgba(255, 255, 255, 0.18);
}

.mock-run-glow,
.mock-run {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mock-run-glow {
  stroke: rgba(255, 107, 44, 0.32);
  stroke-width: 24;
  filter: blur(5px);
}

.mock-run {
  stroke: var(--orange);
  stroke-width: 5;
  filter: drop-shadow(0 0 13px rgba(255, 107, 44, 0.95));
}

.mock-tower {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  width: 42px;
  transform: translateX(-50%) skewY(-1deg);
  border: 1px solid rgba(255, 138, 51, 0.82);
  border-radius: 7px 7px 2px 2px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 107, 44, 0.31) 0 2px, transparent 2px 13px),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(255, 107, 44, 0.22) 8px 10px),
    linear-gradient(180deg, rgba(255, 107, 44, 0.7), rgba(38, 14, 5, 0.9));
  box-shadow:
    0 0 24px rgba(255, 107, 44, 0.46),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
  animation: towerPulse 4.8s ease-in-out infinite;
}

.mock-tower::before {
  position: absolute;
  top: -11px;
  left: -3px;
  width: calc(100% + 6px);
  height: 12px;
  content: "";
  transform: skewX(-24deg);
  border: 1px solid rgba(255, 138, 51, 0.9);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: rgba(255, 107, 44, 0.6);
  box-shadow: 0 0 20px rgba(255, 107, 44, 0.66);
}

.mock-tower::after {
  position: absolute;
  right: -22px;
  bottom: -12px;
  left: -22px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(255, 107, 44, 0.56), rgba(255, 107, 44, 0.2) 44%, transparent 68%);
  filter: blur(2px);
}

.mock-tower span {
  position: absolute;
  top: -1px;
  right: -11px;
  width: 11px;
  height: calc(100% + 1px);
  transform: skewY(-32deg);
  transform-origin: left top;
  border: 1px solid rgba(255, 138, 51, 0.42);
  border-left: 0;
  border-radius: 0 6px 2px 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 107, 44, 0.22) 0 2px, transparent 2px 13px),
    linear-gradient(180deg, rgba(255, 107, 44, 0.28), rgba(22, 9, 4, 0.88));
}

.tower-river { left: 52%; height: 215px; }
.tower-sunset { left: 28%; height: 146px; animation-delay: 420ms; }
.tower-park { left: 76%; height: 112px; animation-delay: 780ms; }
.tower-lake { left: 42%; height: 56px; bottom: 32px; width: 30px; opacity: 0.8; animation-delay: 1.1s; }
.tower-forest { left: 86%; height: 76px; bottom: 30px; width: 32px; opacity: 0.82; animation-delay: 1.36s; }

.route-label {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(255, 107, 44, 0.34);
  border-radius: 8px;
  background: rgba(14, 14, 14, 0.82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
}

.route-label strong,
.route-label span {
  display: block;
  font-size: 0.68rem;
  line-height: 1.2;
}

.route-label span {
  color: var(--orange);
  font-weight: 900;
}

.label-river { top: 45px; left: 56%; }
.label-sunset { top: 118px; left: 14%; }
.label-park { top: 142px; right: 10%; }
.label-lake { bottom: 84px; left: 32%; }
.label-forest { bottom: 68px; right: 5%; }

.mock-top-routes {
  padding: 14px;
  margin-top: 10px;
}

.mock-section-title {
  margin-bottom: 8px;
}

.mock-section-title strong {
  font-size: 1.08rem;
}

.mock-route-table {
  display: grid;
}

.mock-route-row {
  display: grid;
  grid-template-columns: 28px minmax(94px, 1fr) 70px 70px 64px;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-route-row.head {
  min-height: 30px;
}

.mock-route-row.head span:first-child {
  grid-column: 1;
}

.mock-route-row b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 107, 44, 0.34);
  border-radius: 7px;
  color: var(--orange);
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 0.75rem;
}

.mock-route-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-route-row span {
  color: var(--muted);
  font-size: 0.78rem;
}

.mock-route-row em {
  color: var(--orange);
  font-style: normal;
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: right;
}

.mock-selected-route {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  padding: 14px;
  margin-top: 10px;
  border-color: rgba(255, 107, 44, 0.46);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 107, 44, 0.18), transparent 13rem),
    rgba(8, 8, 8, 0.94);
}

.selected-map {
  overflow: hidden;
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #0b0d0e;
  background-size: 18px 18px;
}

.selected-map svg {
  width: 100%;
  height: 100%;
}

.selected-map path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 9px rgba(255, 107, 44, 0.8));
}

.selected-copy strong {
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.selected-copy > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selected-copy > div:first-child span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 107, 44, 0.42);
  border-radius: 8px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.selected-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.selected-stats b {
  display: block;
  color: var(--text);
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 0.95rem;
}

.selected-copy button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #f04b00);
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255, 107, 44, 0.26);
}

.market-board,
.leader-card {
  min-height: 271px;
}

.board-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.board-row.header {
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.board-row em {
  color: var(--green);
  font-style: normal;
}

.wallet-card {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 107, 44, 0.24);
  border-radius: 20px;
  background: var(--orange-soft);
}

.wallet-card strong {
  display: block;
  margin: 6px 0;
  color: var(--orange);
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 2.2rem;
}

.wallet-card span,
.leader-card p {
  color: var(--muted);
}

.leader-card {
  grid-column: 2;
}

.leader-card h3 {
  margin: 12px 0;
  font-size: 2rem;
}

.recap-card {
  display: grid;
  gap: 14px;
}

.recap-header span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.award-row {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.award-row span {
  color: var(--subtle);
}

.cosmetic {
  padding: 18px;
  border: 1px solid rgba(255, 107, 44, 0.3);
  border-radius: 18px;
  color: var(--orange);
  background: var(--orange-soft);
  font-weight: 900;
}

.early-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 34px;
  border-radius: 30px;
}

.early-access h2 {
  max-width: 730px;
  margin-bottom: 14px;
}

.early-access p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1fr);
  align-items: start;
  gap: 42px;
}

.waitlist-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border-radius: 28px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  background: rgba(0, 0, 0, 0.42);
  color: white;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(255, 107, 44, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.13);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.turnstile-slot {
  min-height: 65px;
}

.waitlist-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.waitlist-result[hidden] {
  display: none;
}

.waitlist-result div {
  padding: 12px;
  border: 1px solid rgba(255, 107, 44, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 107, 44, 0.15), transparent 7rem),
    rgba(255, 255, 255, 0.035);
}

.waitlist-result small {
  display: block;
  color: var(--subtle);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-result strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 1.05rem;
}

.form-note {
  margin: 0;
  color: var(--subtle);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-note.success {
  color: var(--green);
}

.form-note.error {
  color: var(--red);
}

.privacy-note {
  margin: -5px 0 0;
  color: var(--subtle);
  font-size: 0.78rem;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.faq details {
  padding: 20px;
  border-radius: 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.faq p {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .split,
  .split.reverse,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 600px;
  }

  .route-world {
    height: 620px;
  }

  .rail,
  .market-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .route-skyline {
    min-height: auto;
  }

  .route-phone-shell {
    width: min(100%, 590px);
  }

  .leader-card {
    grid-column: auto;
  }

  .early-access {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 22% 8%, rgba(255, 107, 44, 0.15), transparent 24rem),
      radial-gradient(circle at 78% 26%, rgba(255, 107, 44, 0.075), transparent 22rem),
      linear-gradient(180deg, #000000 0%, #040404 46%, #000000 100%);
    text-rendering: optimizeLegibility;
  }

  body::before {
    opacity: 0.58;
    background-size: 84px 84px;
  }

  .noise {
    opacity: 0.08;
  }

  #route-canvas {
    opacity: 0.48;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 12px;
    background: rgba(4, 4, 4, 0.88);
    backdrop-filter: blur(10px);
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .section-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding-top: 104px;
    gap: 24px;
  }

  h1 {
    font-size: clamp(3rem, 13.8vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.6rem);
  }

  .hero-actions .button,
  .early-access .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 530px;
  }

  .route-world {
    min-height: 520px;
    height: 540px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 45%, rgba(255, 107, 44, 0.28), transparent 15rem),
      radial-gradient(circle at 50% 75%, rgba(255, 107, 44, 0.1), transparent 14rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      #050505;
  }

  .route-world::before {
    opacity: 0.36;
    animation: none;
  }

  .world-ring,
  .market-orbit span {
    animation: none;
  }

  .phone-scene {
    width: 82%;
    min-height: 488px;
    padding: 17px;
    border-radius: 30px;
  }

  .floating-panel {
    display: none;
  }

  .phone-card {
    grid-template-columns: 1fr;
  }

  .phone-grid,
  .signal-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .story-rail,
  .feature-section,
  .market-section,
  .waitlist-section,
  .faq {
    padding: 58px 0;
  }

  .visual-card,
  .waitlist-form,
  .early-access {
    padding: 20px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .signal-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .ring-meter {
    flex-basis: auto;
  }

  .message,
  .message.short {
    max-width: 100%;
  }

  .skyline-map {
    height: 300px;
  }

  .route-entry {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-meta {
    justify-content: space-between;
    min-width: 0;
    width: 100%;
  }

  .route-phone-showcase {
    padding: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
      rgba(8, 8, 8, 0.86);
  }

  .route-phone-showcase.visual-card::before,
  .crew-reference-glow {
    display: none;
  }

  .crew-reference-shell::before {
    inset: 10% 6%;
    opacity: 0.52;
    filter: blur(14px);
  }

  .route-skyline {
    min-height: 0;
  }

  .crew-reference-shell {
    width: min(100%, 430px);
  }

  .crew-reference-phone {
    max-height: 780px;
    border-radius: 34px;
    -webkit-mask-image: radial-gradient(ellipse 78% 64% at 50% 50%, #000 76%, rgba(0, 0, 0, 0.9) 88%, transparent 100%);
    mask-image: radial-gradient(ellipse 78% 64% at 50% 50%, #000 76%, rgba(0, 0, 0, 0.9) 88%, transparent 100%);
    filter:
      drop-shadow(0 30px 70px rgba(0, 0, 0, 0.68))
      drop-shadow(0 0 30px rgba(255, 107, 44, 0.16));
  }

  .route-phone-shell {
    padding: 7px;
    border-radius: 34px;
  }

  .route-phone-screen {
    min-height: 0;
    padding: 18px 12px 18px;
    border-radius: 28px;
  }

  .route-phone-screen::before {
    width: 94px;
    height: 26px;
  }

  .route-phone-status {
    padding: 0 12px 22px;
  }

  .crew-title-lockup strong {
    font-size: 1.72rem;
  }

  .mock-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mock-skyline-map {
    height: 280px;
  }

  .mock-tower {
    width: 32px;
    animation: none;
  }

  .tower-river { height: 178px; }
  .tower-sunset { height: 118px; }
  .tower-park { height: 90px; }

  .route-label {
    padding: 6px 7px;
  }

  .mock-route-row {
    grid-template-columns: 24px minmax(84px, 1fr) 58px 50px 54px;
    gap: 6px;
  }

  .mock-route-row span,
  .mock-route-row em {
    font-size: 0.7rem;
  }

  .mock-selected-route {
    grid-template-columns: 1fr;
  }

  .waitlist-result {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@supports (content-visibility: auto) {
  @media (max-width: 640px) {
    main > section:not(.hero) {
      content-visibility: auto;
      contain-intrinsic-size: 860px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  #route-canvas {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
