/* ---------- tokens ---------- */
:root {
  --green: #16A34A;
  --green-bright: #2BD25A;
  --gold: #FFE28A;
  --bg: #0A0A0A;
  --surface: #171717;
  --text: #F5F5F5;
  --muted: #737373;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --glass: rgba(23,23,23,.55);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- ambient bg ---------- */
.ambient {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.ambient__mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(22,163,74,.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 80%, rgba(43,210,90,.10) 0%, transparent 60%),
    radial-gradient(40% 40% at 60% 30%, rgba(22,163,74,.08) 0%, transparent 60%);
  filter: blur(40px);
  animation: drift 22s ease-in-out infinite alternate;
}
.ambient__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .35; mix-blend-mode: overlay;
}
@keyframes drift {
  0%   { transform: translate(0,0)   scale(1); }
  50%  { transform: translate(-3%,2%) scale(1.06); }
  100% { transform: translate(2%,-2%) scale(1.03); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 18px 32px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(10,10,10,.7) 0%, rgba(10,10,10,.2) 100%);
  border-bottom: 1px solid var(--line);
}
.nav__brand { justify-self: start; }
.nav__links { justify-self: center; }
.nav__cta { justify-self: end; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__droplet { width: 38px; height: 38px; filter: drop-shadow(0 0 10px rgba(43,210,90,.4)); }
.nav__logo { height: 56px; width: auto; filter: drop-shadow(0 0 14px rgba(43,210,90,.45)); }
.foot__logo { height: 44px; width: auto; }
.nav__wordmark {
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
}
.nav__wordmark em {
  font-style: normal;
  background: linear-gradient(90deg, #2BD25A, #16A34A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__links {
  display: flex; gap: 32px; font-size: 13px; color: var(--muted);
  font-weight: 500;
}
.nav__links a { transition: color .25s; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--text); color: #000;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  transition: transform .2s, box-shadow .2s;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,.12); }
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav { padding: 14px 20px; }
}

/* ---------- shared ---------- */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.section-eyebrow__num {
  color: var(--green-bright);
  border: 1px solid rgba(43,210,90,.3);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(43,210,90,.06);
}

.green-grad {
  background: linear-gradient(90deg, #2BD25A 0%, #16A34A 50%, #2BD25A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* App Store badge — Apple-official look */
.store-badge {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 22px 11px; border-radius: 11px;
  background: #000; color: #fff;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
  min-height: 56px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 4px 14px rgba(0,0,0,.35);
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 18px 40px rgba(0,0,0,.55);
  background: #0a0a0a;
}
.store-badge__inner { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.store-badge__small {
  font-size: 11px; font-weight: 400;
  letter-spacing: .01em;
  margin-bottom: 3px;
  opacity: .92;
}
.store-badge__big {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
}
.store-badge svg { flex-shrink: 0; }

/* gold Pro badge — refined, retains premium feel */
.store-badge--gold {
  background: linear-gradient(135deg, #FFE28A 0%, #f3c97c 50%, #e0b865 100%);
  color: #1a1a1a;
  border-color: rgba(0,0,0,.15);
  box-shadow: 0 14px 36px -8px rgba(255,226,138,.4);
}
.store-badge--gold:hover {
  background: linear-gradient(135deg, #ffe89a 0%, #f5d088 50%, #e6c075 100%);
  box-shadow: 0 18px 44px -8px rgba(255,226,138,.55), 0 0 0 1px rgba(0,0,0,.2);
}
.store-badge--gold .store-badge__small { opacity: .7; }

.store-badge--lg {
  padding: 14px 30px 16px;
  min-height: 64px;
}
.store-badge--lg .store-badge__big { font-size: 26px; }
.store-badge--lg .store-badge__small { font-size: 12px; }

/* ---------- email signup form ---------- */
.email-form {
  display: flex; align-items: stretch;
  gap: 8px;
  width: 100%; max-width: 460px;
  margin: 0 auto 18px;
  padding: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: border-color .25s, box-shadow .25s, background .25s;
  position: relative;
}
.email-form:focus-within {
  border-color: rgba(43,210,90,.45);
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 4px rgba(43,210,90,.10), 0 18px 40px rgba(0,0,0,.4);
}
.email-form__input {
  flex: 1;
  background: transparent; border: 0; outline: 0;
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px; letter-spacing: -0.01em;
  min-width: 0;
}
.email-form__input::placeholder { color: var(--muted); }
.email-form__btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0 18px;
  border: 0; cursor: pointer;
  background: linear-gradient(135deg, #2BD25A 0%, #16A34A 100%);
  color: #0a0a0a;
  font-family: inherit;
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  border-radius: 10px;
  transition: transform .15s, filter .15s, box-shadow .2s;
  white-space: nowrap;
}
.email-form__btn:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(43,210,90,.35); }
.email-form__btn:active { transform: translateY(0); }
.email-form__btn:disabled { opacity: .6; cursor: progress; transform: none; box-shadow: none; }
.email-form__msg {
  position: absolute; left: 0; right: 0; top: calc(100% + 10px);
  text-align: center;
  font-size: 13px; color: var(--muted);
  min-height: 18px;
  pointer-events: none;
}
.email-form__msg.is-error { color: #ff6b6b; }
.email-form__msg.is-ok { color: var(--green-bright); }
.email-form.is-success {
  border-color: rgba(43,210,90,.6);
  background: rgba(43,210,90,.06);
}
.email-form.is-success .email-form__input,
.email-form.is-success .email-form__btn { display: none; }
.email-form__success {
  flex: 1; text-align: center;
  padding: 16px 14px;
  font-size: 15px; font-weight: 600;
  color: var(--green-bright);
  display: none;
}
.email-form.is-success .email-form__success { display: block; }

.email-form--lg { max-width: 520px; }
.email-form--lg .email-form__input { font-size: 16px; padding: 16px 16px; }
.email-form--lg .email-form__btn { font-size: 15px; padding: 0 22px; }

@media (max-width: 540px) {
  .email-form { flex-direction: column; gap: 6px; padding: 6px; }
  .email-form__input { width: 100%; padding: 13px 12px; }
  .email-form__btn { width: 100%; padding: 13px; justify-content: center; }
  .email-form__msg { position: static; margin-top: 10px; min-height: 0; }
  .email-form__msg:empty { margin-top: 0; }
}

.dot--gold {
  background: var(--gold) !important;
  box-shadow: 0 0 10px rgba(255,226,138,.7) !important;
}

.hero__store-soon {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 56px;
  padding: 6px 12px;
  border: 1px dashed var(--line-strong);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em;
}
.hero__store-soon .apple-glyph { display: inline-flex; color: var(--muted); }

.founders-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,226,138,.08);
  border: 1px solid rgba(255,226,138,.3);
  color: var(--gold);
  font-size: 12px; font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.founders-badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
  animation: blink 2s ease-in-out infinite;
}

.final__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 22px;
  padding-bottom: 0.1em;
  background: linear-gradient(180deg, #ffffff 0%, #c9c9c9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.final__title .pro-grad {
  -webkit-background-clip: text; background-clip: text;
}

.pro__post-trial {
  font-size: 13px; color: var(--muted);
  margin-top: 14px;
  font-style: italic;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  z-index: 1;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
  animation: orbDrift 18s ease-in-out infinite alternate;
}
.hero__orb--a { width: 600px; height: 600px; background: #16A34A; top: -10%; left: 10%; }
.hero__orb--b { width: 500px; height: 500px; background: #0a4a22; bottom: -10%; right: 5%; animation-delay: -6s; }
.hero__orb--c { width: 400px; height: 400px; background: #2BD25A; opacity: .25; top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -12s; }
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(4%,-3%) scale(1.08); }
  100% { transform: translate(-3%,4%) scale(.95); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 75%);
}

.hero__brand {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 32px;
}
.hero__lockup-wrap {
  position: relative;
  width: 240px;
  display: flex; align-items: center; justify-content: center;
}
.hero__lockup {
  width: 100%; height: auto;
  object-fit: contain;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 14px rgba(43,210,90,.22)) drop-shadow(0 12px 30px rgba(0,0,0,.5));
  animation: dropletFloat 6s ease-in-out infinite alternate;
}
.hero__halo {
  position: absolute; inset: -30%;
  background: radial-gradient(closest-side, rgba(43,210,90,.18), rgba(22,163,74,.05) 50%, transparent 75%);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(.95); opacity: .35; }
  50%      { transform: scale(1.08); opacity: .55; }
}
@keyframes dropletFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  font-size: 12px; color: var(--muted); font-weight: 500;
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__headline {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  padding-bottom: 0.12em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #c9c9c9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero__cta {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.hero__android {
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: .25em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--muted), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; left: 0; top: -20px;
  width: 100%; height: 12px; background: var(--green-bright);
  animation: scrollDrip 2.2s ease-in-out infinite;
}
@keyframes scrollDrip {
  0%   { top: -20px; }
  100% { top: 50px; }
}

/* ---------- generic split-section showcase ---------- */
.show {
  position: relative; z-index: 1;
  padding: 140px 32px;
}
.show__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px;
  align-items: center;
}
.show--left .show__inner { grid-template-columns: .95fr 1.05fr; }
.show__title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 24px;
}
.show__lede {
  font-size: 17px; color: var(--muted); line-height: 1.6;
  max-width: 480px; margin-bottom: 28px;
}
.show__lede strong { color: var(--text); font-weight: 600; }
.show__bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.show__bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: #d4d4d4;
}
.show__phone {
  position: relative;
  display: flex; justify-content: center;
  min-height: 600px;
}
@media (max-width: 900px) {
  .show__inner,
  .show--left .show__inner { grid-template-columns: 1fr; gap: 60px; }
  .show { padding: 90px 24px; }
  /* on mobile, every section is copy-first then screenshot —
     prevents two screenshots or two text blocks ending up adjacent
     when alternating --left/--right desktop sections collapse */
  .show__copy,
  .show--left .show__copy { order: 1; }
  .show__phone,
  .show--left .show__phone { order: 2; }
}

.tick--blue {
  background-color: rgba(70,140,255,.15);
  border-color: rgba(70,140,255,.45);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%235ea0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5 6.2 5 8.6 9.5 4'/></svg>");
}
.ev-grad {
  background: linear-gradient(90deg, #5ea0ff 0%, #2BD25A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* device frame wrapping a real screenshot */
.device {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  border-radius: 46px;
  background: linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 40px 80px -20px rgba(43,210,90,.22),
    0 30px 60px rgba(0,0,0,.6);
  overflow: hidden;
}
.device__notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; border-radius: 999px;
  background: #000;
  z-index: 5;
}
.device__screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  object-fit: cover;
  display: block;
  background: #050505;
}
.device__shadow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60px;
  background: radial-gradient(ellipse, rgba(43,210,90,.32), transparent 70%);
  filter: blur(28px);
  z-index: -1;
}

/* floating glass cards beside live map device */
.float-card {
  position: absolute; z-index: 4;
  padding: 14px 18px;
  background: rgba(20,20,20,.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  min-width: 170px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  animation: floatCard 6s ease-in-out infinite alternate;
}
.float-card--a { top: 8%; left: -8%; }
.float-card--b { bottom: 12%; right: -8%; animation-delay: -3s; }
.float-card__head {
  display: flex; align-items: center; gap: 6px;
  font-size: 9.5px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 6px;
}
.float-card__price {
  font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #a3e9b6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.float-card__price span { font-size: 16px; }
.float-card__meta { font-size: 10.5px; color: #a3a3a3; margin-top: 5px; }
@keyframes floatCard {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@media (max-width: 900px) {
  .float-card--a { top: 2%; left: 0; }
  .float-card--b { bottom: 2%; right: 0; }
}

/* legacy alias kept for old class names */
.station {
  position: relative; z-index: 1;
  padding: 160px 32px;
}
.station__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.station__title {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 28px;
}
.station__lede {
  font-size: 18px; color: var(--muted); line-height: 1.6;
  max-width: 460px; margin-bottom: 32px;
}
.station__lede strong { color: var(--text); font-weight: 600; }
.station__bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.station__bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #d4d4d4;
}
.tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(43,210,90,.15);
  border: 1px solid rgba(43,210,90,.45);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%232BD25A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5 6.2 5 8.6 9.5 4'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

/* gold shimmer */
.shimmer {
  background: linear-gradient(90deg,
    #FFE28A 0%, #FFE28A 30%,
    #fff7d6 45%, #FFE28A 60%,
    #d4a85a 80%, #FFE28A 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmerSweep 2.4s linear infinite;
}
@keyframes shimmerSweep {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* phone mock */
.station__phone { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 320px; height: 660px;
  border-radius: 48px;
  background: linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 40px 80px -20px rgba(43,210,90,.25),
    0 30px 60px rgba(0,0,0,.6);
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 32px; border-radius: 999px;
  background: #000;
  z-index: 5;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: radial-gradient(ellipse at top, #0e1a12 0%, #050505 80%);
  padding: 56px 22px 22px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone__statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600; color: #fff;
  margin-bottom: 18px;
}
.phone__sb-icons { display: flex; gap: 5px; align-items: center; }
.phone__tabs {
  display: flex; gap: 18px; margin-bottom: 22px;
  font-size: 13px; color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 12px;
}
.phone__tab--active { color: var(--text); position: relative; }
.phone__tab--active::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: -13px;
  height: 1.5px; background: var(--green-bright);
  border-radius: 2px;
}

.phone__hero {
  background: linear-gradient(180deg, rgba(43,210,90,.06) 0%, transparent 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  position: relative; overflow: hidden;
}
.phone__hero::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,226,138,.5), transparent);
}
.phone__chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 8px;
}
.phone__chip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px var(--gold);
}
.phone__shimmer-title {
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.gold-shimmer {
  background: linear-gradient(90deg,
    #FFE28A 0%, #FFE28A 30%,
    #fff7d6 45%, #FFE28A 60%,
    #d4a85a 80%, #FFE28A 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmerSweep 2.4s linear infinite;
}
.phone__price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.phone__price-num {
  font-size: 56px; font-weight: 800; letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #a3e9b6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.phone__price-dec { font-size: 32px; }
.phone__price-unit { font-size: 13px; color: var(--muted); font-weight: 500; }
.phone__loc {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #a3a3a3; margin-bottom: 12px;
}
.phone__loc svg { color: var(--green-bright); }
.phone__delta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--muted);
}
.phone__delta-pill {
  padding: 3px 8px; border-radius: 999px;
  background: rgba(43,210,90,.15); color: var(--green-bright);
  font-weight: 600; font-size: 10px;
}

.phone__sparkline {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 12px; margin-bottom: 12px;
  background: rgba(255,255,255,.02);
}
.phone__spark-label {
  font-size: 10px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 6px;
}
.phone__spark-svg { width: 100%; height: 50px; }

.phone__row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}
.phone__row-label {
  font-size: 9px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .1em;
}
.phone__row-mid { flex: 1; font-size: 13px; font-weight: 600; }
.phone__row-sub { font-size: 10px; color: var(--muted); font-weight: 400; margin-top: 1px; }
.phone__row-arrow { color: var(--muted); font-size: 18px; }

.phone__shadow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60px;
  background: radial-gradient(ellipse, rgba(43,210,90,.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

@media (max-width: 900px) {
  .station__inner { grid-template-columns: 1fr; gap: 60px; }
  .station { padding: 100px 24px; }
}

/* ---------- live map ---------- */
.live {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px;
  overflow: hidden;
}
.live__bg { position: absolute; inset: 0; z-index: 0; }
.live__map { width: 100%; height: 100%; object-fit: cover; }
.live__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.95) 0%, transparent 25%, transparent 75%, rgba(10,10,10,.95) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,.7) 90%);
}
.live__copy {
  position: relative; z-index: 2;
  max-width: 600px;
}
.live__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.04; margin-bottom: 22px;
}
.live__sub {
  font-size: 17px; color: var(--muted); line-height: 1.6;
  max-width: 480px;
}

.live__card {
  position: absolute; z-index: 3;
  padding: 16px 20px;
  background: rgba(20,20,20,.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  min-width: 200px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  transition: transform .3s;
}
.live__card:hover { transform: translateY(-4px); }
.live__card--1 { top: 22%; right: 8%; }
.live__card--2 { top: 50%; right: 22%; }
.live__card--3 { top: 70%; right: 5%; }
.live__card-header {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 8px;
}
.live__pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
  animation: blink 1.6s ease-in-out infinite;
}
.live__card-price {
  font-size: 32px; font-weight: 700; letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #a3e9b6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.live__card-price span { font-size: 20px; }
.live__card-meta {
  font-size: 11px; color: #a3a3a3;
  margin-top: 6px;
}

.live__legend {
  position: absolute; left: 32px; bottom: 32px; z-index: 3;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 11px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .08em;
}
.live__legend-row { display: flex; align-items: center; gap: 8px; }
.live__legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 8px var(--green-bright); }
.live__legend-dot--dim { background: #2c4f35; box-shadow: none; }

@media (max-width: 800px) {
  .live__card--1 { top: 6%; right: 4%; left: auto; min-width: 160px; }
  .live__card--2 { top: 78%; left: 4%; right: auto; min-width: 160px; }
  .live__card--3 { display: none; }
  .live__legend { display: none; }
}

/* ---------- features ---------- */
.features {
  position: relative; z-index: 1;
  padding: 160px 32px;
  max-width: var(--max); margin: 0 auto;
}
.features__head { margin-bottom: 70px; }
.features__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.04;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
  .features { padding: 100px 24px; }
}
.feat {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.feat::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(43,210,90,.12), transparent 60%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.feat:hover {
  transform: translateY(-6px);
  border-color: rgba(43,210,90,.3);
  box-shadow: 0 20px 50px -10px rgba(43,210,90,.18);
}
.feat:hover::before { opacity: 1; }
.feat__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(43,210,90,.08);
  border: 1px solid rgba(43,210,90,.2);
  color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feat__ico svg { width: 22px; height: 22px; }
.feat h3 {
  font-size: 19px; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.feat p {
  font-size: 14px; color: var(--muted); line-height: 1.55;
}

/* ---------- pro ---------- */
.pro {
  position: relative;
  padding: 140px 32px;
  margin: 60px 32px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,226,138,.18);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,226,138,.08), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(22,163,74,.12), transparent 50%),
    #0a0a0a;
}
.pro__bg { position: absolute; inset: 0; pointer-events: none; }
.pro__sheen {
  position: absolute; inset: -50%;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(255,226,138,.04) 90deg, transparent 180deg, rgba(43,210,90,.04) 270deg, transparent 360deg);
  animation: sheen 30s linear infinite;
}
@keyframes sheen { to { transform: rotate(360deg); } }
.pro__inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; text-align: center;
}
.pro__eyebrow { justify-content: center; }
.pro__title {
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 900; letter-spacing: -0.05em;
  line-height: .95; margin-bottom: 24px;
}
.pro-grad {
  background: linear-gradient(135deg, #FFE28A 0%, #f3c97c 30%, #2BD25A 70%, #16A34A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pro__sub {
  font-size: 18px; color: #c4c4c4; line-height: 1.55;
  max-width: 520px; margin: 0 auto 44px;
}
.pro__pricing {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 14px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
  flex-wrap: wrap; justify-content: center;
}
.pro__plan { display: flex; flex-direction: column; align-items: flex-start; }
.pro__plan-label {
  font-size: 9px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .12em;
}
.pro__plan-price { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.pro__plan-price span { font-size: 12px; color: var(--muted); font-weight: 500; }
.pro__plan--feat .pro__plan-price {
  background: linear-gradient(135deg, #FFE28A, #2BD25A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pro__or { color: var(--muted); font-size: 12px; font-family: 'JetBrains Mono', monospace; }
.pro__trial {
  display: inline-block;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(43,210,90,.12);
  border: 1px solid rgba(43,210,90,.25);
  color: var(--green-bright); font-size: 12px; font-weight: 600;
  letter-spacing: .02em;
}
.pro__cta {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin-top: 28px;
}

/* 3-tier plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px; margin: 0 auto 28px;
}
.plan {
  position: relative;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: left;
  transition: transform .3s, border-color .3s;
}
.plan:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.18); }
.plan--feat {
  border-color: rgba(255,226,138,.45);
  background:
    radial-gradient(ellipse at top, rgba(255,226,138,.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  box-shadow: 0 14px 40px -10px rgba(255,226,138,.15);
}
.plan__ribbon {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  padding: 4px 10px; border-radius: 999px;
  background: linear-gradient(135deg, #FFE28A, #f3c97c);
  color: #1a1a1a;
  font-size: 9.5px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .12em;
  white-space: nowrap;
}
.plan__label {
  font-size: 10px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 10px;
}
.plan__price {
  font-size: 28px; font-weight: 700; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 8px;
}
.plan__price span {
  font-size: 12px; color: var(--muted); font-weight: 500;
  margin-left: 4px;
}
.plan__price--gold {
  background: linear-gradient(135deg, #FFE28A, #2BD25A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan__sub {
  font-size: 11.5px; color: var(--muted); line-height: 1.5;
}
@media (max-width: 700px) {
  .plans { grid-template-columns: 1fr; max-width: 320px; }
}

/* ---------- oz coverage ---------- */
.oz {
  text-align: center;
  padding: 140px 32px;
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}
.oz__title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -0.035em;
  margin-bottom: 60px;
}
.oz__map {
  position: relative;
  margin: 0 auto 50px;
  max-width: 600px;
}
.oz__svg { width: 100%; height: auto; }
.oz__dots circle {
  fill: var(--green-bright);
  filter: drop-shadow(0 0 4px rgba(43,210,90,.6));
  animation: dotPulse 4s ease-in-out infinite;
}
.oz__dots circle:nth-child(odd) { animation-delay: -1s; }
.oz__dots circle:nth-child(3n) { animation-delay: -2s; }
.oz__dots circle:nth-child(5n) { animation-delay: -3s; }
@keyframes dotPulse {
  0%,100% { opacity: .6; }
  50%     { opacity: 1; }
}
.oz__cities {
  position: absolute; inset: 0;
  pointer-events: none;
}
.oz__city {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  transform: translate(-50%, -50%);
  background: rgba(10,10,10,.6);
  padding: 2px 6px; border-radius: 4px;
  border: 1px solid var(--line);
}
.oz__caption {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-width: 720px; margin: 0 auto;
}

/* ---------- final ---------- */
.final {
  text-align: center;
  padding: 140px 32px;
  position: relative; z-index: 1;
}
.final__pre {
  font-size: 16px; color: #c4c4c4;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 520px;
}
.final__inner { max-width: 720px; margin: 0 auto; }
.final__fine {
  margin-top: 26px;
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 40px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  position: relative; z-index: 1;
}
.foot__brand { justify-self: start; }
.foot__links { justify-self: center; }
.foot__small,
.foot__copy { justify-self: end; text-align: end; }
@media (max-width: 720px) {
  .foot {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .foot__brand,
  .foot__links,
  .foot__small,
  .foot__copy { justify-self: center; text-align: center; }
}
.foot__brand { display: flex; align-items: center; gap: 10px; }
.foot__droplet { width: 24px; height: 24px; }
.foot__wordmark { font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }
.foot__wordmark em {
  font-style: normal;
  background: linear-gradient(90deg, #2BD25A, #16A34A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot__links {
  display: flex; gap: 28px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.foot__links a { transition: color .2s; }
.foot__links a:hover { color: var(--text); }
.foot__small {
  font-size: 11px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}
.foot__small a {
  color: var(--text);
  border-bottom: 1px dotted rgba(255,255,255,.3);
  transition: color .2s, border-color .2s;
}
.foot__small a:hover { color: var(--green-bright); border-bottom-color: var(--green-bright); }

/* ---------- legal page ---------- */
.legal {
  position: relative; z-index: 1;
  padding: 160px 32px 100px;
}
.legal__inner {
  max-width: 760px; margin: 0 auto;
}
.legal__title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #c9c9c9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 0.08em;
}
.legal__updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 36px;
}
.legal__lede {
  font-size: 17px; line-height: 1.65;
  color: #d4d4d4;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.legal__lede strong { color: var(--text); font-weight: 600; }
.legal h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin: 40px 0 14px;
  color: var(--text);
}
.legal p, .legal ul {
  font-size: 15.5px; line-height: 1.7;
  color: #c4c4c4;
  margin-bottom: 14px;
}
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); font-weight: 600; }
.legal em { color: #d4d4d4; }
.legal a {
  color: var(--green-bright);
  border-bottom: 1px dotted rgba(43,210,90,.4);
  transition: color .2s, border-color .2s;
}
.legal a:hover { color: #fff; border-bottom-color: #fff; }
.legal__sig {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .legal { padding: 110px 20px 70px; }
  .legal h2 { font-size: 19px; margin-top: 32px; }
  .legal p, .legal ul { font-size: 14.5px; }
  .legal__lede { font-size: 15px; }
}
@media (max-width: 700px) {
  .foot { flex-direction: column; align-items: flex-start; }
}

/* ---------- mobile polish ---------- */
@media (max-width: 760px) {
  /* nav */
  .nav { padding: 12px 18px; }
  .nav__logo { height: 42px; }
  .nav__droplet { width: 32px; height: 32px; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }

  /* hero */
  .hero { padding: 100px 20px 70px; min-height: 92vh; }
  .hero__lockup-wrap { width: 180px; }
  .hero__brand { margin-bottom: 24px; }
  .hero__headline { font-size: 44px; padding-bottom: 0.14em; }
  .hero__sub { font-size: 15px; line-height: 1.55; padding: 0 8px; }
  .hero__sub br { display: none; }
  .hero__scroll { display: none; }

  /* tone down ambient + hero orbs on mobile */
  .hero__orb { filter: blur(60px); opacity: .35; }
  .hero__orb--a { width: 280px; height: 280px; top: -8%; left: -10%; }
  .hero__orb--b { width: 240px; height: 240px; bottom: -8%; right: -10%; }
  .hero__orb--c { width: 220px; height: 220px; opacity: .15; }
  .hero__halo { inset: -15%; }
  .ambient__mesh { filter: blur(50px); opacity: .7; }
  .hero__grid { background-size: 50px 50px; }

  /* show sections */
  .show, .show--left { padding: 70px 20px; }
  .show__inner, .show--left .show__inner { gap: 48px; grid-template-columns: 1fr; }
  .show__title { font-size: 34px; }
  .show__lede { font-size: 15.5px; }
  .show__bullets li { font-size: 14px; }
  .show__phone { min-height: 0; }
  .device { width: 260px; }
  .device__notch { width: 80px; height: 22px; top: 12px; }

  /* live map floating cards — compact on mobile */
  .float-card { min-width: 0; width: 130px; padding: 8px 11px; border-radius: 12px; }
  .float-card--a { top: 6%; left: -10px; }
  .float-card--b { bottom: 8%; right: -10px; }
  .float-card__head { font-size: 8.5px; margin-bottom: 4px; gap: 4px; }
  .float-card__price { font-size: 18px; }
  .float-card__price span { font-size: 12px; }
  .float-card__meta { font-size: 9.5px; margin-top: 3px; }

  /* features */
  .features { padding: 80px 18px; }
  .features__head { margin-bottom: 36px; }
  .features__title { font-size: 32px; }
  .features__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feat { padding: 18px 16px; border-radius: 16px; }
  .feat__ico { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 14px; }
  .feat__ico svg { width: 18px; height: 18px; }
  .feat h3 { font-size: 15px; margin-bottom: 6px; letter-spacing: -0.015em; }
  .feat p { font-size: 12.5px; line-height: 1.5; }

  /* pro */
  .pro { margin: 32px 16px; padding: 80px 22px; border-radius: 22px; }
  .pro__title { font-size: 64px; }
  .pro__sub { font-size: 15.5px; }
  .plans { grid-template-columns: 1fr; max-width: 320px; margin-bottom: 8px; }
  .pro__cta { gap: 14px; margin-top: 22px; }

  /* oz coverage */
  .oz { padding: 80px 20px; }
  .oz__title { font-size: 38px; margin-bottom: 30px; }
  .oz__caption { font-size: 13px; }
  .oz__city { font-size: 9px; padding: 1px 5px; }

  /* final CTA + footer */
  .final { padding: 80px 20px; }
  .final__title { font-size: 32px; }
  .final__pre { font-size: 14px; line-height: 1.55; }
  .foot { padding: 28px 20px; gap: 18px; }
  .foot__links { gap: 18px; font-size: 12px; flex-wrap: wrap; }

  /* shared eyebrow */
  .section-eyebrow { font-size: 10px; margin-bottom: 20px; }

  /* let headlines wrap naturally on mobile — drop the desktop-tuned manual breaks */
  .hero__headline br,
  .show__title br,
  .features__title br,
  .live__title br,
  .show__lede br { display: none; }
  .hero__headline,
  .show__title,
  .features__title,
  .pro__title { text-wrap: balance; }

  /* App Store badge */
  .store-badge { padding: 8px 18px 10px; min-height: 50px; }
  .store-badge__big { font-size: 19px; }
  .store-badge--lg { padding: 12px 24px 14px; min-height: 58px; }
  .store-badge--lg .store-badge__big { font-size: 22px; }

  /* email signup — tighter on phones */
  .email-form { max-width: 100%; padding: 5px; border-radius: 12px; margin-bottom: 14px; }
  .email-form__input { font-size: 15px; padding: 12px 12px; }
  .email-form__btn { font-size: 14px; padding: 12px; }
  .email-form--lg .email-form__input { font-size: 15.5px; padding: 14px 12px; }
  .email-form--lg .email-form__btn { font-size: 14.5px; padding: 14px; }
  .email-form__msg { font-size: 12.5px; }

  /* hero CTA stack — give breathing room around form + soon-pill */
  .hero__cta { width: 100%; }
  .hero__store-soon {
    margin-top: 36px;
    padding: 5px 11px;
    font-size: 10px;
    letter-spacing: .12em;
  }
  .hero__store-soon .apple-glyph svg { width: 12px; height: 12px; }

  /* founders badge above final headline */
  .founders-badge {
    font-size: 11px; padding: 6px 12px;
    margin-bottom: 18px;
  }

  /* pro section founders perk + waitlist button on mobile */
  .pro__trial { font-size: 11.5px; padding: 6px 12px; text-align: center; }
  .pro__post-trial { font-size: 12.5px; margin-top: 12px; padding: 0 8px; }
  .pro .store-badge--gold { padding: 9px 18px 11px; min-height: 54px; }
  .pro .store-badge--gold .store-badge__big { font-size: 17px; }
  .pro .store-badge--gold .store-badge__small { font-size: 10px; }
}

/* very small phones */
@media (max-width: 380px) {
  .hero__headline { font-size: 38px; }
  .show__title, .features__title { font-size: 30px; }
  .pro__title { font-size: 56px; }
  .device { width: 240px; }
  .float-card { width: 118px; padding: 7px 10px; }
  .float-card__price { font-size: 17px; }
}
