:root {
  --bg: #091019;
  --bg-deep: #060b12;
  --surface: rgba(12, 20, 31, 0.82);
  --surface-strong: rgba(16, 25, 38, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --text: #f4f7fb;
  --muted: #99a9bc;
  --muted-strong: #c8d3e0;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --primary: #ef4444;
  --primary-strong: #ff5d4d;
  --accent: #12b981;
  --accent-soft: #9ff8cf;
  --blue: #4ea8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 540px at 10% -10%, rgba(78, 168, 255, 0.28), transparent 62%),
    radial-gradient(760px 480px at 92% 0%, rgba(239, 68, 68, 0.28), transparent 58%),
    linear-gradient(180deg, #0a111a 0%, #081019 42%, #060b12 100%);
}

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

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

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.6;
  pointer-events: none;
}

.bg-glow-a {
  width: 440px;
  height: 440px;
  top: 100px;
  left: -120px;
  background: rgba(78, 168, 255, 0.28);
}

.bg-glow-b {
  width: 380px;
  height: 380px;
  right: -100px;
  top: 360px;
  background: rgba(239, 68, 68, 0.22);
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(6, 11, 18, 0.92), rgba(6, 11, 18, 0.64));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.28);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-download {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white !important;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(239, 68, 68, 0.28);
}

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

main {
  padding-bottom: 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 56px 0 28px;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 14px;
  border: 1px solid rgba(159, 248, 207, 0.16);
  border-radius: 999px;
  color: var(--accent-soft);
  background: rgba(18, 185, 129, 0.08);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(18, 185, 129, 0.14);
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #ffc7bf;
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.btn-store {
  min-width: 220px;
  justify-content: flex-start;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.btn-store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-store small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn-store strong {
  margin-top: 5px;
  font-size: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.meta-pill b {
  color: var(--text);
}

.hero-visual {
  position: relative;
  padding: 18px 0 34px;
  overflow: visible;
}

.phone-stage {
  position: relative;
  width: min(100%, 420px);
  max-width: 420px;
  margin-left: auto;
  padding: 0;
}

.orb-card,
.driver-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 16, 26, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.orb-card {
  width: 168px;
  padding: 16px 18px;
  border-radius: 22px;
}

.orb-card strong {
  display: block;
  font-size: 1.8rem;
}

.orb-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.orb-card-a {
  top: 0;
  right: -10px;
}

.orb-card-b {
  left: -18px;
  bottom: 148px;
}

.driver-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.9rem;
}

.driver-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(18, 185, 129, 0.14);
}

.driver-chip-a {
  left: -20px;
  top: 48px;
}

.driver-chip-b {
  right: -10px;
  bottom: 8px;
}

.phone-frame {
  position: relative;
  margin: 0 auto;
  width: min(100%, 320px);
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(160deg, #202938, #0c1320 58%, #05080e);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.54);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #04070d;
  z-index: 2;
}

.phone-screen {
  overflow: hidden;
  border-radius: 30px;
  min-height: 610px;
  background:
    radial-gradient(circle at 32% 34%, rgba(59, 130, 246, 0.15), transparent 24%),
    radial-gradient(circle at 72% 52%, rgba(239, 68, 68, 0.12), transparent 20%),
    linear-gradient(180deg, #101826 0%, #0a111b 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 22px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.screen-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 0;
}

.screen-brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.12);
}

.screen-brand strong {
  font-size: 1rem;
}

.screen-sub {
  padding: 8px 22px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.screen-map {
  position: relative;
  margin: 18px;
  height: 312px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 55% 54%, rgba(239, 68, 68, 0.11), transparent 26%),
    linear-gradient(180deg, #111a28 0%, #0d1621 100%);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.map-blob {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(8px);
}

.map-blob-red {
  width: 200px;
  height: 160px;
  top: 54px;
  right: 48px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.68) 0%, rgba(239, 68, 68, 0.22) 46%, transparent 72%);
}

.map-blob-blue {
  width: 170px;
  height: 130px;
  left: 24px;
  bottom: 48px;
  background: radial-gradient(circle, rgba(78, 168, 255, 0.58) 0%, rgba(78, 168, 255, 0.14) 46%, transparent 72%);
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.map-ring::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.map-dot-user {
  left: 50%;
  top: 52%;
  width: 16px;
  height: 16px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.12);
}

.map-dot-green {
  background: #10b981;
}

.map-dot-blue {
  background: #4ea8ff;
}

.map-dot-orange {
  background: #fb923c;
}

.screen-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 20px;
}

.mini-card {
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
  line-height: 1.3;
}

.mini-card p {
  margin: 8px 0 0;
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.55;
}

.section {
  padding-top: 36px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.section-head p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

.feature-kicker {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 30ch;
}

.feature-visual {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-pill,
.feature-dot-row span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.feature-pill {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.feature-dot-row {
  display: flex;
  gap: 8px;
}

.feature-dot-row span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  margin-top: 18px;
}

.story-card,
.story-panel,
.callout,
.legal-card {
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.story-card {
  padding: 30px;
}

.story-card h2,
.story-panel h3 {
  margin-top: 0;
}

.story-card p,
.story-panel p,
.story-panel li,
.callout p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

.story-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.story-panel-section {
  padding: 26px;
  background: rgba(255, 255, 255, 0.02);
}

.story-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.story-list li + li {
  margin-top: 12px;
}

.story-list li::before {
  content: "•";
  color: var(--primary-strong);
  font-size: 1.2rem;
  line-height: 1;
}

.callout {
  margin-top: 22px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.18), transparent 36%),
    radial-gradient(circle at bottom left, rgba(78, 168, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
}

.callout h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  padding: 8px 0;
}

.legal-shell {
  padding-top: 34px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 22px;
}

.legal-hero h1 {
  margin: 12px 0 8px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}

.legal-hero p {
  color: var(--muted-strong);
  line-height: 1.7;
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin: 26px 0 10px;
  font-size: 1.18rem;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a,
.callout a,
.story-card a {
  color: #dcecff;
  text-decoration: underline;
  text-decoration-color: rgba(220, 236, 255, 0.42);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
    gap: 24px;
  }

  .hero-visual {
    padding-left: 18px;
  }

  .phone-stage {
    width: min(100%, 360px);
    max-width: 360px;
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .driver-chip-a {
    left: -10px;
    top: 10px;
  }

  .orb-card-a {
    right: 0;
    top: 0;
  }

  .orb-card-b {
    left: -8px;
    bottom: 104px;
  }

  .driver-chip-b {
    right: 0;
    bottom: -4px;
  }

  .phone-frame {
    width: min(100%, 296px);
  }

  .phone-screen {
    min-height: 572px;
  }

  .screen-map {
    height: 278px;
  }
}

@media (max-width: 1040px) {
  .hero,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    padding-left: 0;
    padding-bottom: 18px;
  }

  .phone-stage {
    margin: 0 auto;
    width: min(100%, 380px);
    max-width: 380px;
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .driver-chip-a {
    left: -8px;
    top: 8px;
  }

  .orb-card-a {
    right: 0;
    top: 2px;
  }

  .orb-card-b {
    left: -4px;
    bottom: 116px;
  }

  .driver-chip-b {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100vw - 28px, 1180px);
  }

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

  .nav {
    width: 100%;
  }

  .nav a {
    padding-left: 0;
    padding-right: 0;
    background: transparent !important;
  }

  .hero {
    padding-top: 34px;
    gap: 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .orb-card,
  .driver-chip {
    position: static;
    width: 100%;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .phone-stage {
    display: grid;
    gap: 12px;
    width: min(100%, 340px);
    max-width: 340px;
    padding: 0;
  }

  .phone-frame {
    width: 100%;
  }

  .phone-screen {
    min-height: 600px;
  }

  .screen-map {
    height: 300px;
  }

  .screen-cards {
    grid-template-columns: 1fr;
  }

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