:root {
  --ink: #0f1115;
  --ink-soft: #171a20;
  --panel: #1c1f26;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #aeb3bd;
  --white: #f8faf9;
  --green: #2eff6b;
  --green-deep: #1ec95a;
  --green-dim: rgba(46, 255, 107, 0.13);
  --blue: #38bdf8;
  --display: "Archivo Black", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(46, 255, 107, 0.08), transparent 26rem),
    var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

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

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

.site-shell {
  overflow: hidden;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.brand img,
.footer-brand img {
  width: 155px;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

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

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green);
}

.nav-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 0 86px;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(46, 255, 107, 0.28);
  border-radius: 999px;
  background: var(--green-dim);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 30px 0 28px;
  font-size: clamp(4.2rem, 8.2vw, 7.3rem);
}

h1 em,
h2 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.button-primary {
  color: #07110a;
  background: var(--green);
  box-shadow: 0 16px 50px rgba(46, 255, 107, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.button-primary:hover {
  background: #64ff91;
  transform: translateY(-2px);
}

.availability {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.76rem;
}

.availability strong {
  color: var(--white);
  font-size: 0.9rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  color: #7f8792;
  font-size: 0.73rem;
  font-weight: 600;
}

.trust-row span::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}

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

.map-card {
  position: absolute;
  inset: 30px 14px 30px 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #171b21;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

.map-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 68% 38%, rgba(46, 255, 107, 0.16), transparent 34%);
  content: "";
}

.map-grid {
  position: absolute;
  inset: -20%;
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: rotate(-16deg);
}

.road {
  position: absolute;
  z-index: 1;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #252a32;
}

.road-one {
  top: 43%;
  left: -18%;
  width: 145%;
  transform: rotate(-25deg);
}

.road-two {
  top: 17%;
  left: 47%;
  width: 80%;
  transform: rotate(70deg);
}

.map-topbar {
  position: absolute;
  top: 25px;
  right: 26px;
  left: 26px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
}

.map-pill,
.live-dot {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 17, 21, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.68rem;
  font-weight: 700;
}

.live-dot {
  color: var(--green);
}

.live-dot::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.passenger-marker {
  position: absolute;
  top: 50%;
  left: 25%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  box-shadow: 0 0 0 12px rgba(56, 189, 248, 0.06);
}

.passenger-marker span {
  width: 13px;
  height: 13px;
  border: 3px solid #dff6ff;
  border-radius: 50%;
  background: var(--blue);
}

.driver-marker {
  position: absolute;
  top: 27%;
  right: 21%;
  z-index: 4;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(46, 255, 107, 0.5);
  border-radius: 18px;
  background: var(--green);
  box-shadow: 0 10px 32px rgba(46, 255, 107, 0.28);
  animation: hover 3s ease-in-out infinite;
}

.driver-marker img {
  width: 42px;
}

.route-line {
  position: absolute;
  top: 41%;
  left: 31%;
  z-index: 3;
  width: 45%;
  border-top: 3px dashed rgba(46, 255, 107, 0.76);
  transform: rotate(-25deg);
}

.request-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(18px);
}

.request-card div {
  display: flex;
  flex-direction: column;
}

.request-card small {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-card strong {
  margin-top: 3px;
  font-size: 0.9rem;
}

.request-time {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-badge {
  position: absolute;
  z-index: 6;
  display: flex;
  flex-direction: column;
  min-width: 112px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.floating-badge strong {
  color: var(--green);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
}

.floating-badge span {
  color: var(--muted);
  font-size: 0.66rem;
}

.badge-fast {
  top: 92px;
  left: 0;
}

.badge-near {
  right: -10px;
  bottom: 110px;
}

.signal {
  position: absolute;
  border: 1px solid rgba(46, 255, 107, 0.17);
  border-radius: 50%;
}

.signal-one {
  top: -20px;
  right: -80px;
  width: 330px;
  height: 330px;
}

.signal-two {
  right: -135px;
  bottom: -40px;
  width: 470px;
  height: 470px;
}

.motion-strip {
  overflow: hidden;
  border-top: 1px solid rgba(46, 255, 107, 0.38);
  border-bottom: 1px solid rgba(46, 255, 107, 0.38);
  color: #07110a;
  background: var(--green);
}

.motion-strip div {
  display: flex;
  width: max-content;
  padding: 13px 0;
  animation: marquee 22s linear infinite;
}

.motion-strip span {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.motion-strip i {
  margin: 0 28px;
  font-style: normal;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  margin-bottom: 55px;
  gap: 60px;
}

.section h2,
.final-cta h2,
.legal-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.step-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.step-card-accent {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
}

.step-number {
  color: #6e747e;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-card-accent .step-number {
  color: rgba(15, 17, 21, 0.6);
}

.step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 52px 0 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.5rem;
}

.step-card-accent .step-icon {
  border-color: rgba(15, 17, 21, 0.18);
  color: var(--ink);
  background: rgba(15, 17, 21, 0.08);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.step-card-accent p {
  color: rgba(15, 17, 21, 0.74);
}

.dual-section {
  border-top: 1px solid var(--line);
}

.dual-intro {
  max-width: 910px;
  margin-bottom: 56px;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 42px;
  border-radius: 30px;
}

.passenger-card {
  border: 1px solid var(--line);
  background: #171a20;
}

.driver-card {
  color: var(--ink);
  background: var(--white);
}

.audience-label {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.passenger-card .audience-label {
  color: var(--green);
}

.audience-card h3 {
  max-width: 420px;
  margin: 55px 0 32px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.audience-card ul {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  opacity: 0.72;
}

.audience-card li::before {
  margin-right: 10px;
  content: "↳";
}

.card-orbit {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(46, 255, 107, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(46, 255, 107, 0.03), 0 0 0 100px rgba(46, 255, 107, 0.02);
}

.driver-arrow {
  position: absolute;
  right: -22px;
  bottom: -92px;
  color: var(--green-deep);
  font-family: var(--display);
  font-size: 15rem;
  line-height: 1;
  transform: rotate(-18deg);
}

.safety-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.safety-copy p {
  max-width: 530px;
  margin: 28px 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}

.safety-list {
  border-top: 1px solid var(--line);
}

.safety-list > div {
  display: grid;
  grid-template-columns: 50px 0.65fr 1fr;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.safety-list span {
  color: var(--green);
  font-size: 0.72rem;
}

.safety-list strong {
  font-size: 0.94rem;
}

.safety-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 80px;
  padding: 70px;
  border-radius: 32px;
  color: var(--ink);
  background: var(--green);
  gap: 60px;
}

.final-cta .section-kicker {
  color: rgba(15, 17, 21, 0.65);
}

.final-cta h2 em {
  color: var(--ink);
  -webkit-text-stroke: 1px rgba(15, 17, 21, 0.4);
}

.final-copy p {
  font-weight: 600;
}

.coming-badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  gap: 50px;
}

.footer-brand p,
.copyright {
  margin: 9px 0 0;
  color: #747b85;
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.copyright {
  white-space: nowrap;
}

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

.reveal-delay {
  transition-delay: 130ms;
}

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

/* Legal pages */
.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 120px;
}

.legal-hero {
  padding: 48px 0 58px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 820px;
}

.legal-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
}

.legal-meta {
  display: inline-block;
  margin-top: 25px;
  color: #767d88;
  font-size: 0.75rem;
}

.legal-content {
  padding-top: 30px;
}

.legal-content section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 15px;
  font-family: var(--body);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 0.96rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.91rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(46, 255, 107, 0.25);
  border-radius: 16px;
  background: var(--green-dim);
}

.delete-steps {
  display: grid;
  margin: 30px 0;
  padding: 0;
  counter-reset: delete-step;
  list-style: none;
  gap: 12px;
}

.delete-steps li {
  position: relative;
  padding: 20px 20px 20px 68px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ink-soft);
  counter-increment: delete-step;
}

.delete-steps li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  content: counter(delete-step, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 800;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes hover {
  50% { transform: translateY(-7px) rotate(2deg); }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

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

  .section-heading,
  .safety-section,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading p {
    max-width: 590px;
  }

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

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

  .step-icon {
    margin-top: 35px;
  }

  .safety-list > div {
    grid-template-columns: 42px 0.8fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header,
  .hero,
  .section,
  .final-cta,
  .site-footer,
  .legal-main {
    width: min(100% - 28px, 1180px);
  }

  .brand img,
  .footer-brand img {
    width: 132px;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 0.65rem;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 66px;
    gap: 42px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row {
    gap: 10px 15px;
  }

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

  .map-card {
    inset: 24px 5px 24px 22px;
  }

  .badge-fast {
    top: 3px;
  }

  .badge-near {
    right: -6px;
    bottom: 76px;
  }

  .floating-badge {
    min-width: 94px;
    padding: 10px 12px;
  }

  .request-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .request-time {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 86px 0;
  }

  .section h2,
  .final-cta h2,
  .legal-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  .audience-card {
    min-height: 400px;
    padding: 30px;
  }

  .safety-list > div {
    grid-template-columns: 38px 1fr;
  }

  .safety-list p {
    grid-column: 2;
  }

  .final-cta {
    margin-bottom: 50px;
    padding: 42px 28px;
  }

  .legal-main {
    padding-top: 35px;
  }
}

@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; }
}
