:root {
  color-scheme: dark;
  --bg: #070c1e;
  --surface: #0f172a;
  --glass: rgba(18, 26, 42, 0.72);
  --glass-strong: rgba(15, 23, 42, 0.9);
  --border: #1e2b40;
  --border-bright: rgba(59, 130, 246, 0.36);
  --text: #f8fafc;
  --muted: #94a3b8;
  --orange: #ff6b00;
  --orange-bright: #ff7a00;
  --blue: #3b82f6;
  --green: #22c55e;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 75% 5%, rgba(59, 130, 246, 0.1), transparent 31rem),
    radial-gradient(circle at 14% 24%, rgba(255, 107, 0, 0.07), transparent 26rem),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.24;
  background: url("assets/radar-bg.jpg") center top / min(100%, 1200px) auto no-repeat;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

a { color: inherit; text-decoration: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 22px;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 30, 0.72);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { display: block; filter: drop-shadow(0 0 18px rgba(255, 107, 0, 0.16)); }
.brand-copy { display: grid; gap: 2px; }
.brand strong { font-size: 18px; letter-spacing: -0.04em; }
.brand strong span, .footer-brand span { color: var(--orange-bright); }
.brand small { color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: 0.32em; }

nav { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 14px; font-weight: 650; }
nav a { transition: color 180ms ease; }
nav a:hover, nav a:focus-visible { color: var(--text); }
.nav-cta {
  padding: 12px 17px;
  border: 1px solid rgba(255, 122, 0, 0.32);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: #ff9b52;
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  min-height: 830px;
  margin: 0 auto;
  padding: 150px 0 90px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(6px); pointer-events: none; }
.hero-glow-orange { top: 28%; left: -24%; width: 420px; height: 420px; background: rgba(255, 107, 0, 0.08); }
.hero-glow-blue { right: -18%; bottom: 12%; width: 460px; height: 460px; background: rgba(59, 130, 246, 0.09); }

.eyebrow {
  margin: 0 0 20px;
  color: #ff994d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
h1 span { color: #91b9ff; }
.hero-intro {
  max-width: 610px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.maker-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
  color: #d6dfed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
}
.maker-line span { width: 28px; height: 2px; border-radius: 2px; background: var(--orange-bright); box-shadow: 0 0 12px rgba(255, 107, 0, 0.46); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible { outline: 2px solid #93c5fd; outline-offset: 3px; }
.button svg { width: 19px; }
.button-primary {
  border-color: rgba(255, 122, 0, 0.62);
  background: linear-gradient(135deg, var(--orange-bright), #df4d00);
  box-shadow: 0 14px 38px rgba(255, 107, 0, 0.2);
  color: white;
}
.button-quiet { background: rgba(15, 23, 42, 0.58); color: #cbd5e1; backdrop-filter: blur(14px); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: #7e8ca3;
  font-size: 12px;
  list-style: none;
}
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.hero-visual { position: relative; min-height: 650px; perspective: 1400px; }
.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(390px, 88vw);
  height: 745px;
  transform: translate(-50%, -50%) rotateY(-8deg) rotateX(2deg);
  transition: transform 180ms ease-out;
  will-change: transform;
}
.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-radius: 52px;
  background: #071022;
  box-shadow: var(--shadow), 0 0 0 8px rgba(8, 14, 27, 0.74), 0 0 70px rgba(59, 130, 246, 0.12);
}
.phone-frame::before { position: absolute; top: 11px; left: 50%; z-index: 5; width: 96px; height: 27px; content: ""; transform: translateX(-50%); border-radius: 99px; background: #02050c; }
.phone-status { position: absolute; inset: 0 0 auto; z-index: 4; display: flex; height: 52px; align-items: center; justify-content: space-between; padding: 0 28px; font-size: 12px; font-weight: 750; }
.map-canvas { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(155deg, #0c1c35, #102747 58%, #071427); }
.map-canvas::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background:
    linear-gradient(31deg, transparent 0 47%, rgba(42, 66, 101, 0.26) 48% 52%, transparent 53%),
    linear-gradient(112deg, transparent 0 47%, rgba(42, 66, 101, 0.2) 48% 52%, transparent 53%);
  background-size: 92px 108px, 135px 122px;
}
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.street-lines path { fill: none; stroke: rgba(102, 132, 174, 0.25); stroke-width: 11; }
.route-halo { fill: none; stroke: rgba(0, 0, 0, 0.58); stroke-width: 17; }
.route-line { fill: none; stroke: #168eff; stroke-width: 10; stroke-dasharray: 24 10; animation: route-flow 2s linear infinite; }

.destination-search {
  position: absolute;
  top: 68px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 13px;
  padding: 0 16px;
  border: 1px solid rgba(96, 143, 211, 0.34);
  border-radius: 22px;
  background: rgba(9, 20, 38, 0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  color: #aec9f8;
  font-size: 13px;
  backdrop-filter: blur(18px) saturate(150%);
}
.destination-search svg { width: 21px; color: #8eb8ff; }
.destination-search b { margin-left: auto; color: #8eb8ff; font-size: 21px; }

.rider-rail { position: absolute; z-index: 4; top: 160px; right: 16px; display: grid; gap: 11px; }
.rider, .map-pin {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: linear-gradient(145deg, #314a72, #111b30);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
  color: white;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  animation: rider-float 4s ease-in-out infinite;
}
.rider i { position: absolute; right: 0; bottom: 1px; width: 11px; height: 11px; border: 2px solid #0a1426; border-radius: 50%; background: var(--green); }
.rider-two { animation-delay: -1.1s; }
.rider-three { animation-delay: -2.2s; }
.map-pin { position: absolute; z-index: 2; width: 38px; height: 38px; border-color: #93c5fd; background: #162a49; box-shadow: 0 0 0 7px rgba(59, 130, 246, 0.15); }
.pin-one { top: 38%; left: 55%; }
.pin-two { top: 57%; left: 30%; }
.my-location { position: absolute; z-index: 2; bottom: 190px; left: 53%; width: 64px; height: 64px; transform: translateX(-50%); border: 1px solid rgba(147, 197, 253, 0.38); border-radius: 50%; background: rgba(59, 130, 246, 0.28); animation: location-pulse 2.4s ease-out infinite; }
.my-location i { position: absolute; inset: 20px; border: 4px solid white; border-radius: 50%; background: #3b82f6; }

.ride-pill {
  position: absolute;
  right: 20px;
  bottom: 112px;
  left: 20px;
  z-index: 4;
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(100, 137, 191, 0.28);
  border-radius: 22px;
  background: rgba(10, 18, 34, 0.82);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px) saturate(140%);
}
.live-dot { display: inline-block; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px rgba(34, 197, 94, 0.8); }
.ride-pill div { display: grid; gap: 2px; }
.ride-pill small { color: #8090a9; font-size: 8px; font-weight: 800; letter-spacing: 0.16em; }
.ride-pill strong { font-size: 13px; }
.ride-pill b { margin-left: auto; color: #ff9447; font-size: 23px; }

.floating-dock {
  position: absolute;
  right: 15px;
  bottom: 20px;
  left: 15px;
  z-index: 4;
  display: grid;
  min-height: 76px;
  padding: 8px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(100, 137, 191, 0.3);
  border-radius: 28px;
  background: rgba(8, 16, 31, 0.82);
  backdrop-filter: blur(22px) saturate(140%);
}
.floating-dock span { display: grid; place-items: center; gap: 3px; border-radius: 21px; color: #91a1ba; font-size: 8px; }
.floating-dock svg { width: 20px; height: 20px; }
.floating-dock .active { border: 1px solid rgba(255, 122, 0, 0.42); background: rgba(93, 38, 8, 0.72); color: var(--orange-bright); }

.orbit { position: absolute; top: 50%; left: 50%; z-index: -1; transform: translate(-50%, -50%); border: 1px solid rgba(59, 130, 246, 0.13); border-radius: 50%; }
.orbit::after { position: absolute; top: 50%; right: -5px; width: 9px; height: 9px; content: ""; border-radius: 50%; background: var(--orange-bright); box-shadow: 0 0 22px var(--orange); }
.orbit-one { width: 590px; height: 590px; animation: orbit-spin 22s linear infinite; }
.orbit-two { width: 470px; height: 470px; animation: orbit-spin 17s linear infinite reverse; }

.signal-strip {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  padding: 26px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.signal-strip div { display: grid; gap: 6px; padding: 0 32px; border-right: 1px solid var(--border); }
.signal-strip div:first-child { padding-left: 0; }
.signal-strip div:last-child { border: 0; }
.signal-strip strong { font-size: 14px; }
.signal-strip span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 150px 0; scroll-margin-top: 100px; }
.section-heading { max-width: 660px; margin-bottom: 56px; }
h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 62px); line-height: 1.05; letter-spacing: -0.055em; }
.section-heading > p:last-child, .flow-copy > p:last-child, .privacy-copy > p { color: var(--muted); font-size: 17px; line-height: 1.7; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18, 29, 50, 0.9), rgba(10, 17, 32, 0.78));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease;
}
.feature-card::after { position: absolute; right: -90px; bottom: -100px; width: 220px; height: 220px; content: ""; border-radius: 50%; background: rgba(59, 130, 246, 0.06); }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(59, 130, 246, 0.35); }
.feature-card-primary { border-color: rgba(255, 107, 0, 0.34); background: linear-gradient(145deg, rgba(84, 34, 8, 0.66), rgba(14, 21, 37, 0.88) 68%); }
.feature-card-primary::after { background: rgba(255, 107, 0, 0.08); }
.feature-icon { display: grid; width: 48px; height: 48px; margin-bottom: 62px; place-items: center; border: 1px solid rgba(116, 151, 205, 0.28); border-radius: 16px; background: rgba(30, 43, 64, 0.7); color: #9dbfff; }
.feature-icon svg { width: 23px; }
.feature-card-primary .feature-icon { border-color: rgba(255, 122, 0, 0.42); background: rgba(255, 107, 0, 0.13); color: var(--orange-bright); }
.card-index { position: absolute; top: 34px; right: 30px; color: #46546a; font-size: 11px; font-weight: 800; letter-spacing: 0.18em; }
.feature-card h3 { margin-bottom: 13px; font-size: 23px; letter-spacing: -0.035em; }
.feature-card p { max-width: 330px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.mini-group { position: absolute; bottom: 28px; left: 30px; display: flex; }
.mini-group span, .mini-group b { display: grid; width: 38px; height: 38px; margin-right: -8px; place-items: center; border: 3px solid #10182a; border-radius: 50%; background: #263b5e; color: white; font-size: 9px; }
.mini-group span:nth-child(2) { background: #284d67; }.mini-group span:nth-child(3) { background: #3b365e; }
.mini-group b { background: var(--orange); font-size: 10px; }
.route-chip, .privacy-chip { position: absolute; right: 28px; bottom: 28px; left: 28px; display: flex; min-height: 48px; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid rgba(74, 115, 177, 0.28); border-radius: 16px; background: rgba(7, 13, 28, 0.6); color: #b6c9e9; font-size: 12px; }
.route-chip i { width: 10px; height: 10px; border: 3px solid var(--blue); border-radius: 50%; }
.route-chip strong { margin-left: auto; color: #ff994d; }
.privacy-chip { right: auto; color: #b4c3da; }

.ride-flow { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(60px, 10vw, 140px); }
.flow-copy h2 span { color: #8eb8ff; }
.flow-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.flow-steps li { display: flex; min-height: 112px; align-items: center; gap: 22px; padding: 22px; border: 1px solid var(--border); border-radius: 22px; background: rgba(15, 23, 42, 0.56); backdrop-filter: blur(14px); }
.flow-steps li > span { display: grid; width: 45px; height: 45px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255, 122, 0, 0.35); border-radius: 14px; background: rgba(255, 107, 0, 0.09); color: #ff994d; font-size: 13px; font-weight: 800; }
.flow-steps strong { font-size: 16px; }.flow-steps p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

.privacy {
  position: relative;
  display: grid;
  min-height: 570px;
  margin-bottom: 90px;
  padding: 80px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 38px;
  background: linear-gradient(130deg, rgba(15, 23, 42, 0.95), rgba(9, 22, 43, 0.75));
  box-shadow: var(--shadow);
}
.privacy-radar { position: relative; aspect-ratio: 1; max-width: 340px; border: 1px solid rgba(88, 127, 184, 0.18); border-radius: 50%; }
.privacy-radar span { position: absolute; inset: 16%; border: 1px solid rgba(88, 127, 184, 0.18); border-radius: 50%; }
.privacy-radar span:nth-child(2) { inset: 32%; }.privacy-radar span:nth-child(3) { inset: 47%; }
.privacy-radar::before, .privacy-radar::after { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; content: ""; background: rgba(88, 127, 184, 0.18); }
.privacy-radar::after { transform: rotate(90deg); }
.privacy-radar i { position: absolute; inset: 0 50% 50% 0; transform-origin: bottom right; border-radius: 100% 0 0; background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.18)); animation: sweep 5s linear infinite; }
.privacy-copy ul { display: grid; gap: 15px; margin: 30px 0 0; padding: 0; list-style: none; }
.privacy-copy li { display: flex; align-items: center; gap: 12px; color: #c2cee0; font-size: 14px; }
.privacy-copy li svg { width: 18px; color: var(--green); stroke-width: 2.5; }

.coming-soon { position: relative; display: grid; min-height: 650px; place-items: center; align-content: center; overflow: hidden; text-align: center; }
.coming-soon h2 { margin-bottom: 14px; }.coming-soon > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.coming-logo { margin-bottom: 26px; filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.22)); }
.coming-glow { position: absolute; z-index: -1; width: 540px; height: 540px; border: 1px solid rgba(59, 130, 246, 0.12); border-radius: 50%; background: radial-gradient(circle, rgba(59, 130, 246, 0.09), transparent 68%); box-shadow: 0 0 0 70px rgba(59, 130, 246, 0.018), 0 0 0 140px rgba(59, 130, 246, 0.012); }
.store-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.store-badge { display: flex; min-width: 190px; min-height: 62px; align-items: center; gap: 13px; padding: 10px 17px; border: 1px solid #31405a; border-radius: 16px; background: rgba(12, 19, 34, 0.88); text-align: left; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18); }
.store-badge svg { width: 27px; height: 27px; fill: currentColor; stroke: none; color: #f2f5fa; }
.store-badge span { display: grid; gap: 1px; }.store-badge small { color: var(--muted); font-size: 7px; font-weight: 750; letter-spacing: 0.08em; }.store-badge strong { font-size: 18px; letter-spacing: -0.025em; }

footer { display: flex; width: min(calc(100% - 40px), var(--max)); min-height: 110px; margin: 0 auto; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); color: #68768e; font-size: 12px; }
.footer-brand { color: white; }.footer-brand strong { font-size: 16px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes route-flow { to { stroke-dashoffset: -34; } }
@keyframes rider-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes location-pulse { 0% { box-shadow: 0 0 0 0 rgba(59,130,246,.36); } 70%, 100% { box-shadow: 0 0 0 22px rgba(59,130,246,0); } }
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes sweep { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 140px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .maker-line { justify-content: center; }
  .hero-visual { min-height: 740px; }
  .trust-list, .hero-actions { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; }
  .feature-icon { margin-bottom: 42px; }
  .ride-flow { grid-template-columns: 1fr; }
  .privacy { padding: 56px; grid-template-columns: 0.65fr 1.35fr; gap: 42px; }
}

@media (max-width: 640px) {
  .site-header { top: 10px; min-height: 60px; border-radius: 18px; }
  .brand img { width: 36px; height: 36px; }
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .hero { width: min(calc(100% - 32px), var(--max)); padding: 125px 0 55px; }
  h1 { font-size: clamp(44px, 15vw, 65px); }
  .hero-intro { font-size: 16px; }
  .hero-visual { min-height: 675px; }
  .phone { width: 330px; height: 630px; }
  .phone-frame { border-radius: 44px; }
  .destination-search { top: 61px; }
  .my-location { bottom: 172px; }
  .orbit-one { width: 440px; height: 440px; }.orbit-two { width: 355px; height: 355px; }
  .signal-strip { grid-template-columns: 1fr; }
  .signal-strip div, .signal-strip div:first-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .signal-strip div:last-child { border-bottom: 0; }
  .section { width: min(calc(100% - 32px), var(--max)); padding: 100px 0; }
  .feature-card { padding: 25px; }
  .privacy { min-height: auto; padding: 45px 27px; grid-template-columns: 1fr; border-radius: 28px; }
  .privacy-radar { display: none; }
  .coming-soon { min-height: 570px; }
  .store-row { display: grid; width: 100%; max-width: 270px; }
  .store-badge { width: 100%; }
  footer { padding: 28px 0; flex-direction: column; justify-content: center; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
