/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0A0C14;
  --surface:   #111320;
  --surface2:  #161928;
  --border:    rgba(255,255,255,0.07);
  --blue:      #4A6CF7;
  --blue-dim:  rgba(74,108,247,0.15);
  --green:     #4DFF91;
  --green-dim: rgba(77,255,145,0.12);
  --text:      #FFFFFF;
  --text-sub:  rgba(255,255,255,0.55);
  --text-mute: rgba(255,255,255,0.30);
  --nav-bg:    rgba(10,12,20,0.85);
  --radius:    16px;
  --radius-sm: 10px;
  --map-major: rgba(255,255,255,0.045);
  --map-minor: rgba(255,255,255,0.018);
}

[data-theme="light"] {
  --bg:        #F4F5F9;
  --surface:   #EAECF2;
  --surface2:  #DDDFE8;
  --border:    rgba(0,0,0,0.08);
  --blue:      #3A5CE5;
  --blue-dim:  rgba(58,92,229,0.1);
  --green:     #00A36C;
  --green-dim: rgba(0,163,108,0.1);
  --text:      #0D0F1A;
  --text-sub:  rgba(13,15,26,0.55);
  --text-mute: rgba(13,15,26,0.35);
  --nav-bg:    rgba(244,245,249,0.88);
  --map-major: rgba(0,0,0,0.055);
  --map-minor: rgba(0,0,0,0.022);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-h) + 60px); /* banner + nav */
}

/* ── Skip link (accessibility) ───────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus { top: 12px; }

/* ── Launch Banner ────────────────────────────────────────── */
:root { --banner-h: 37px; }

.launch-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--banner-h);
  z-index: 1001;
  width: 100%;
  background: linear-gradient(90deg, #1a1f3a 0%, #1e2440 100%);
  border-bottom: 1px solid rgba(74,108,247,0.25);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1001;
  white-space: nowrap;
  overflow: hidden;
}
[data-theme="light"] .launch-banner {
  background: linear-gradient(90deg, #e8ecf8 0%, #eef1fb 100%);
  border-bottom: 1px solid rgba(58,92,229,0.18);
}
.launch-banner-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}
.launch-banner-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.launch-banner-link:hover { color: var(--text); }
.launch-banner-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-mute);
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.launch-banner-close:hover { color: var(--text); }

/* ── Focus visible ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

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

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.logo-icon {
  font-size: 20px;
  color: var(--blue);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-sub);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-download {
  background: var(--blue);
  color: #fff !important;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 600;
  transition: opacity 0.2s !important;
}
.nav-download:hover { opacity: 0.85; }

/* ── Theme toggle ─────────────────────────────────────────── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--surface2);
  color: var(--text);
}

/* ── Map grid background ──────────────────────────────────── */
.map-bg {
  position: relative;
  isolation: isolate;
}
.map-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--map-major) 1px, transparent 1px),
    linear-gradient(90deg, var(--map-major) 1px, transparent 1px),
    linear-gradient(var(--map-minor) 1px, transparent 1px),
    linear-gradient(90deg, var(--map-minor) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}
.map-bg > * { position: relative; z-index: 1; }
.hero-map-svg { position: absolute; z-index: 0; }

/* ── Hero map SVG ─────────────────────────────────────────── */
.hero-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.map-water {
  fill: rgba(74,108,247,0.045);
  stroke: rgba(74,108,247,0.07);
  stroke-width: 1;
}
.map-water-sm {
  fill: none;
  stroke: rgba(74,108,247,0.06);
  stroke-width: 2;
}
.map-highway {
  display: none;
}
.map-road-primary {
  stroke: rgba(255,255,255,0.055);
  stroke-width: 1.5;
  fill: none;
}
.map-road {
  stroke: rgba(255,255,255,0.03);
  stroke-width: 1;
  fill: none;
}
.map-block {
  fill: rgba(255,255,255,0.022);
  stroke: rgba(255,255,255,0.038);
  stroke-width: 0.5;
}
.map-dot {
  fill: rgba(255,255,255,0.09);
}

/* ── Rider route track ───────────────────────────────────── */
.map-route-track {
  fill: none;
  stroke: rgba(74,108,247,0.35);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-route-track-glow {
  fill: none;
  stroke: rgba(74,108,247,0.10);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(4px);
}
[data-theme="light"] .map-route-track {
  stroke: rgba(74,108,247,0.25);
}
[data-theme="light"] .map-route-track-glow {
  stroke: rgba(74,108,247,0.08);
}

/* ── Live rider dots ──────────────────────────────────────── */
.map-rider-accuracy {
  fill: rgba(74,108,247,0.06);
  stroke: rgba(74,108,247,0.12);
  stroke-width: 1;
}
.map-rider-you {
  fill: rgba(74,108,247,0.80);
}
.map-rider-you-ring {
  fill: none;
  stroke: rgba(74,108,247,0.55);
  stroke-width: 1.5;
  transform-origin: 0 0;
  animation: rider-pulse 2.6s ease-out infinite;
}
.map-rider-you-ring-delay {
  animation-delay: 1.3s;
}
.map-rider-dot {
  fill: rgba(255,255,255,0.40);
}
.map-rider-label {
  font-size: 9.5px;
  fill: rgba(255,255,255,0.30);
  text-anchor: middle;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.map-rider-you-label {
  font-size: 9.5px;
  fill: rgba(74,108,247,0.85);
  text-anchor: middle;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@keyframes rider-pulse {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

[data-theme="light"] .map-rider-dot   { fill: rgba(0,0,0,0.32); }
[data-theme="light"] .map-rider-label { fill: rgba(0,0,0,0.25); }

[data-theme="light"] .map-water       { fill: rgba(58,92,229,0.05);  stroke: rgba(58,92,229,0.08); }
[data-theme="light"] .map-water-sm    { stroke: rgba(58,92,229,0.07); }
[data-theme="light"] .map-highway     { display: none; }
[data-theme="light"] .map-road-primary{ stroke: rgba(0,0,0,0.06); }
[data-theme="light"] .map-road        { stroke: rgba(0,0,0,0.032); }
[data-theme="light"] .map-block       { fill: rgba(0,0,0,0.022); stroke: rgba(0,0,0,0.04); }
[data-theme="light"] .map-dot         { fill: rgba(0,0,0,0.10); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(var(--banner-h) + 100px) 24px 80px;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content {
  flex: 1;
  min-width: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-dim);
  border: 1px solid rgba(74,108,247,0.3);
  color: #8AABFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-sub);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }

/* ── Phone Mockup ─────────────────────────────────────────── */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 280px;
  border-radius: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 16px 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(74,108,247,0.12);
}
.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.screen-title {
  font-size: 14px;
  font-weight: 700;
}
.screen-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.screen-badge.live { color: var(--green); }
.screen-stat-row {
  display: flex;
  gap: 8px;
}
.screen-stat {
  flex: 1;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
}
.stat-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.stat-val {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.stat-val span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-mute);
  margin-left: 2px;
}
.stat-val.green { color: var(--green); }

.proximity-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prox-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.prox-offset {
  font-size: 11px;
  font-weight: 600;
  width: 46px;
  text-align: right;
  flex-shrink: 0;
}
.prox-offset.ahead { color: var(--text-sub); }
.prox-offset.behind { color: var(--green); }
.prox-offset.you-label { color: var(--blue); }
.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.prox-row.you .bar-track { height: 10px; }
.bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
}
.bar-fill.you-bar {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(74,108,247,0.6);
}
.bar-fill.green-bar {
  background: var(--green);
  box-shadow: 0 0 6px rgba(77,255,145,0.4);
}
.prox-name {
  font-size: 11px;
  font-weight: 600;
  width: 40px;
  flex-shrink: 0;
}
.prox-name.muted { color: var(--text-mute); font-weight: 400; }

/* ── Sections ─────────────────────────────────────────────── */
section { padding: 100px 24px; }
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 56px;
  line-height: 1.15;
}

/* ── Features ─────────────────────────────────────────────── */
.features { background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s;
}
.feature-card:hover { border-color: rgba(255,255,255,0.14); }
.feature-card.highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(74,108,247,0.08) 0%, transparent 60%);
  border-color: rgba(74,108,247,0.22);
}
.feat-icon {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-sub);
}
.feat-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feat-list li {
  font-size: 13px;
  color: var(--text-sub);
  padding-left: 14px;
  position: relative;
}
.feat-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 11px;
}

/* ── How It Works ─────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 32px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: rgba(74,108,247,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-sub);
}
.step-divider {
  flex: 0 0 1px;
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin-top: 60px;
}

/* ── Who It's For ─────────────────────────────────────────── */
.who { background: var(--surface); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.who-card {
  padding: 48px 40px;
  background: var(--bg);
}
.who-card:last-child { border-left: none; }
.who-card-divider {
  width: 1px;
  background: var(--border);
  padding: 0;
}
.who-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.who-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.who-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-sub);
}

/* ── Download ─────────────────────────────────────────────── */
.download-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.download-text {
  flex: 1;
  min-width: 0;
}
.download-text h2 { margin-bottom: 16px; }
.download-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sub);
  max-width: 400px;
}
.qr-cards {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qr-box {
  width: 140px;
  height: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: border-color 0.2s;
}
.qr-box:hover { border-color: rgba(74,108,247,0.4); }
.qr-svg {
  width: 100%;
  height: 100%;
  color: var(--text);
}
.qr-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
}
.qr-coming {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-mute);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-mute);
}
.footer-legal {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-mute);
  margin-right: auto;
}
.footer-link {
  font-size: 13px;
  color: var(--text-mute);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text-sub); }
.footer-socials {
  display: flex;
  gap: 8px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
  background: var(--surface2);
}
[data-theme="light"] .social-link:hover {
  border-color: rgba(0,0,0,0.15);
}

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero entrance ────────────────────────────────────────── */
.badge        { animation: hero-fade-in 0.6s ease both; animation-delay: 0.1s; }
h1            { animation: hero-fade-in 0.6s ease both; animation-delay: 0.22s; }
.hero-sub     { animation: hero-fade-in 0.6s ease both; animation-delay: 0.34s; }
.hero-cta     { animation: hero-fade-in 0.6s ease both; animation-delay: 0.46s; }
.hero-visual  { animation: hero-fade-in 0.7s ease both; animation-delay: 0.3s; }

/* ── Phone float ──────────────────────────────────────────── */
.phone-mockup {
  animation: float 4s ease-in-out infinite;
}

/* ── LIVE badge pulse ─────────────────────────────────────── */
.screen-badge.live {
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── Feature card hover lift ──────────────────────────────── */
.feature-card {
  transition: border-color 0.25s, transform 0.22s ease, box-shadow 0.22s ease;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.feat-icon {}

/* ── Step number brightens on hover ──────────────────────── */
.step {
  transition: none;
}
.step:hover .step-num {
  color: rgba(74,108,247,0.55);
  transition: color 0.25s ease;
}
.step-num {
  transition: color 0.25s ease;
}

/* ── Who card hover ──────────────────────────────────────── */
.who-card:not(.who-card:has(.who-card-divider)) {
  transition: background 0.25s ease;
}
.who-card:hover:not(:has(.who-card-divider)) {
  background: var(--surface2);
}
.who-icon {
  display: block;
}

/* ── Social links lift ────────────────────────────────────── */
.social-link {
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-link:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
  background: var(--surface2);
  transform: translateY(-2px);
}

/* ── Nav download button pulse-glow ──────────────────────── */
.nav-download {
  transition: opacity 0.2s, box-shadow 0.2s !important;
}
.nav-download:hover {
  opacity: 0.85;
  box-shadow: 0 0 14px rgba(74,108,247,0.45);
}

/* ── Scroll animations ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 540px) {
  :root { --banner-h: 34px; }
  .launch-banner {
    font-size: 11.5px;
    padding: 0 40px 0 12px;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .launch-banner-dot { width: 6px; height: 6px; }
}

@media (max-width: 860px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    min-height: 0;
    padding-top: 20px;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { text-align: center; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.highlight { grid-column: span 1; }
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  .step { padding: 0; }
  .step-divider { display: none; }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-card-divider { display: none; }
  .who-card { border: none; border-top: 1px solid var(--border); }
  .who-card:first-child { border-top: none; }
  .nav-links { display: none; }
  .download-inner { flex-direction: column; gap: 40px; }
  .download-text p { max-width: 100%; }
  .qr-cards { justify-content: center; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-socials { flex-wrap: wrap; }
  .footer-copy { margin-right: 0; width: 100%; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .bar-fill { transition: none !important; }
  body { transition: none; }
  .map-bg::before { display: none; }
  .hero-map-svg { display: none; }
  .map-rider-you-ring { animation: none; opacity: 0; }
  .phone-mockup { animation: none; }
  .screen-badge.live { animation: none; }
  .badge, h1, .hero-sub, .hero-cta, .hero-visual { animation: none; opacity: 1; transform: none; }
  .feature-card:hover, .social-link:hover { transform: none; }
  .who-card:hover .who-icon { transform: none; }
  .feature-card:hover .feat-icon { transform: none; }
}
