:root {
  --black: #050505;
  --ink: #111114;
  --white: #ffffff;
  --text: #ffffff;
  --soft: #fff4fa;
  --muted: #c9c5cc;
  --muted-dark: #6f6874;
  --pink: #ff2f9f;
  --pink-strong: #f40786;
  --pink-soft: #ffd1e9;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
}

body.light-mode {
  --black: #fff8fc;
  --ink: #151014;
  --text: #151014;
  --muted: #665863;
  --muted-dark: #6b5c66;
  --line: rgba(17, 17, 20, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 30px 90px rgba(244, 7, 134, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--black);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 47, 159, 0.26), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(255, 209, 233, 0.14), transparent 28rem),
    var(--black);
}

.light-mode .site-shell {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 47, 159, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 18%, rgba(255, 209, 233, 0.38), transparent 30rem),
    var(--black);
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.light-mode .nav {
  background: rgba(255, 255, 255, 0.74);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.light-mode .nav-links,
.light-mode .footer span,
.light-mode .footer a {
  color: rgba(21, 16, 20, 0.68);
}

.nav-links a,
.footer a,
.text-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--pink-soft);
}

.nav-cta,
.btn,
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 47, 159, 0.42);
}

.theme-icon {
  position: absolute;
  display: block;
  transition: opacity 200ms ease, transform 200ms ease;
}

.theme-moon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  box-shadow: -5px 3px 0 0 currentColor;
  transform: translate(3px, -2px);
}

.theme-sun {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.55) rotate(20deg);
}

.theme-sun::before,
.theme-sun::after {
  content: "";
  position: absolute;
  inset: -7px 6px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.theme-sun::after {
  transform: rotate(90deg);
}

.light-mode .theme-toggle {
  border-color: rgba(17, 17, 20, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.light-mode .theme-moon {
  opacity: 0;
  transform: scale(0.55) rotate(-20deg);
}

.light-mode .theme-sun {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.nav-cta,
.btn-primary,
.store-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  box-shadow: 0 12px 42px rgba(255, 47, 159, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.magnetic:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 54px rgba(255, 47, 159, 0.38);
}

.nav-toggle {
  display: none;
}

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

.section {
  padding: 108px 0;
}

.full-bleed {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 148px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28vh;
  background: linear-gradient(transparent, var(--black));
  pointer-events: none;
}

.animated-gradient {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 47, 159, 0.55), transparent 28rem),
    radial-gradient(circle at 75% 35%, rgba(255, 210, 234, 0.18), transparent 26rem),
    linear-gradient(135deg, #050505, #16000d 48%, #050505);
  filter: saturate(115%);
  animation: gradientDrift 14s ease-in-out infinite alternate;
}

.light-mode .animated-gradient {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 47, 159, 0.22), transparent 28rem),
    radial-gradient(circle at 75% 35%, rgba(255, 210, 234, 0.48), transparent 28rem),
    linear-gradient(135deg, #fff8fc, #ffe8f5 48%, #ffffff);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--pink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(2.45rem, 5.4vw, 5.1rem);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-copy p {
  max-width: 680px;
  font-size: clamp(0.98rem, 1.55vw, 1.16rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.centered {
  justify-content: center;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.trust-strip span {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  font-weight: 700;
}

.light-mode .trust-strip span {
  color: rgba(21, 16, 20, 0.76);
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  min-height: 620px;
  perspective: 1000px;
}

.phone-stack {
  position: relative;
  width: min(360px, 78vw);
  margin: 0 auto;
}

.phone {
  position: relative;
  border: 10px solid #121116;
  border-radius: 42px;
  background: #0b0b0d;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-main {
  height: 690px;
  transform: rotateY(-16deg) rotateX(8deg) rotateZ(2deg);
}

.phone-large {
  height: 660px;
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 52px 20px 22px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.58)),
    url("assets/fleet.png") center/cover;
}

.map-card {
  height: 72%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 47, 159, 0.32), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(35deg, transparent 0 24px, rgba(255, 255, 255, 0.09) 25px 27px);
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--glass);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.light-mode .glass,
.light-mode .step,
.light-mode .metric {
  border-color: rgba(17, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.ride-card {
  position: absolute;
  right: 20px;
  bottom: 26px;
  left: 20px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 24px;
}

.ride-card span,
.ride-card small,
.orbit-card span,
.metric span {
  color: var(--muted);
}

.orbit-card {
  position: absolute;
  right: -58px;
  bottom: 118px;
  width: 210px;
  padding: 18px;
  border-radius: 24px;
}

.float {
  animation: float 6s ease-in-out infinite;
}

.split,
.app-showcase,
.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.section-text p,
.section-copy p {
  max-width: 620px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

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

.feature-card,
.step,
.metric,
details,
.cta-panel,
.contact-card,
.form-card {
  border-radius: var(--radius);
}

.feature-card {
  min-height: 270px;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover,
.step:hover,
details:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 47, 159, 0.45);
  background: rgba(255, 255, 255, 0.11);
}

.light-mode .feature-card:hover,
.light-mode .step:hover,
.light-mode details:hover {
  background: rgba(255, 244, 250, 0.96);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--pink-soft);
  background: rgba(255, 47, 159, 0.14);
  font-weight: 900;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 47, 159, 0.18), transparent 30rem),
    #0a0a0c;
}

.light-mode .dark-band {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 47, 159, 0.16), transparent 30rem),
    #fff8fc;
}

.safety-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.safety-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.safety-list {
  display: grid;
  gap: 14px;
}

.safety-list div {
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.light-mode .safety-list div {
  border-bottom-color: rgba(17, 17, 20, 0.1);
}

.safety-list strong,
.safety-list span {
  display: block;
}

.safety-list span {
  margin-top: 7px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease;
}

.light-mode .step span {
  color: var(--white);
  background: var(--ink);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
}

.app-showcase {
  padding-top: 80px;
}

.showcase-phone {
  width: min(340px, 86vw);
  margin: 0 auto;
}

.app-ui {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 47, 159, 0.32), transparent 18rem),
    linear-gradient(180deg, #151217, #050505);
}

.app-pill,
.destination-card,
.driver-mini {
  align-self: flex-start;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.app-pill {
  color: var(--black);
  background: var(--white);
}

.app-ui h3 {
  margin-top: 32px;
  font-size: 2.3rem;
}

.destination-card,
.driver-mini {
  width: 100%;
}

.route-line {
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 32% 20%, var(--pink), transparent 5px),
    radial-gradient(circle at 62% 72%, var(--white), transparent 5px),
    linear-gradient(130deg, transparent 0 34%, rgba(255, 47, 159, 0.7) 35% 36%, transparent 37%);
}

.image-tile {
  overflow: hidden;
  border-radius: 8px;
}

.image-tile img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 54px;
}

.metric {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}

.investor-panel {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, var(--black), #14000c 48%, var(--black));
}

.light-mode .investor-panel {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 47, 159, 0.12), transparent 26rem),
    linear-gradient(180deg, #fff8fc, #fff0f8 48%, #fff8fc);
}

.compact .feature-card {
  min-height: 230px;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

details {
  padding: 22px 24px;
  transition: transform 220ms ease;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.1rem;
}

details p {
  margin: 16px 0 0;
}

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

.download-cta {
  padding-top: 70px;
}

.cta-panel {
  padding: clamp(34px, 7vw, 86px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 47, 159, 0.44), transparent 32rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.light-mode .cta-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 47, 159, 0.2), transparent 32rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 250, 0.76));
  border-color: rgba(17, 17, 20, 0.1);
}

.cta-panel p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.store-btn {
  min-width: 150px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.light-mode .footer {
  border-top-color: rgba(17, 17, 20, 0.1);
}

.footer div,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer span,
.footer a {
  color: var(--muted);
}

.page-hero {
  padding: 168px 0 80px;
}

.page-hero .section {
  padding: 0;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.22rem;
}

.light-section {
  width: 100%;
  max-width: none;
  color: var(--ink);
  background: var(--white);
}

.light-section .section {
  padding: 108px 0;
}

.light-section p,
.light-section .muted {
  color: var(--muted-dark);
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.story-card,
.contact-card,
.form-card {
  padding: 30px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  background: #fff7fb;
}

.story-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 47, 159, 0.08);
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-card a {
  color: var(--pink-strong);
  font-weight: 900;
}

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

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card .btn {
  border: 0;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@keyframes gradientDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 2%, 0) scale(1.04);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

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

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--white);
  }

  .light-mode .nav-toggle span {
    background: var(--ink);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-open .nav-links {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(24px);
  }

  .light-mode.menu-open .nav-links {
    background: rgba(255, 255, 255, 0.96);
  }

  .menu-open .nav-links a {
    padding: 14px;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .split,
  .app-showcase,
  .safety-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-main {
    height: 590px;
    transform: rotateY(-8deg) rotateX(4deg) rotateZ(1deg);
  }

  .orbit-card {
    right: 8px;
    bottom: 80px;
  }

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

  .feature-card,
  .step {
    min-height: auto;
  }

  .safety-panel img,
  .image-tile img {
    height: 420px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section,
  .section-inner,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .hero h1 {
    font-size: clamp(2.28rem, 11.8vw, 3.65rem);
  }

  .hero-copy p,
  p {
    font-size: 1rem;
  }

  .btn,
  .store-btn {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }

  .phone-main,
  .phone-large {
    height: 520px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .orbit-card {
    width: 180px;
    right: -2px;
  }

  .safety-panel img,
  .image-tile img {
    height: 340px;
  }
}
