:root {
  color-scheme: dark;
  --bg: #202020;
  --bg-deep: #151515;
  --road: #2b2b2b;
  --panel: #313131;
  --panel-soft: #3a3a3a;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 203, 61, 0.34);
  --text: #f7f7f2;
  --muted: #b8b8b3;
  --yellow: #f6c93d;
  --yellow-soft: rgba(246, 201, 61, 0.16);
  --green: #32cf5b;
  --green-soft: rgba(50, 207, 91, 0.18);
  --blue: #35a7ff;
  --danger: #ff5d67;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 12%, rgba(246, 201, 61, 0.1), transparent 25rem),
    radial-gradient(circle at 86% 18%, rgba(50, 207, 91, 0.1), transparent 26rem),
    linear-gradient(180deg, #242424 0%, #1c1c1c 50%, #141414 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(82deg, transparent 0 9%, rgba(255, 255, 255, 0.08) 9.2% 9.45%, transparent 9.7% 90%, rgba(255, 255, 255, 0.08) 90.2% 90.45%, transparent 90.7%),
    repeating-linear-gradient(180deg, transparent 0 5.5rem, rgba(255, 255, 255, 0.1) 5.5rem 10rem, transparent 10rem 15rem);
  background-position: center;
  background-size: min(54rem, 92vw) 100%, 0.2rem 15rem;
  background-repeat: no-repeat, repeat-y;
  opacity: 0.54;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46));
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 4.5rem;
  background: rgba(31, 31, 31, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.screen-picker,
.pill-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(246, 201, 61, 0.42);
  border-radius: 0.8rem;
  box-shadow: 0 0 2.1rem rgba(246, 201, 61, 0.24);
}

.nav-links {
  gap: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a,
.header-action,
.button,
.screen-picker button,
.feature-list article,
.screen-grid article,
.ui-card,
.steps article,
.benefit-grid article,
.route-grid article {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-weight: 900;
}

.header-action {
  min-width: 7.5rem;
  padding: 0 1.25rem;
  color: #202020;
  background: var(--green);
  box-shadow: 0 1rem 2.7rem rgba(50, 207, 91, 0.25);
}

.button {
  min-width: 12rem;
  padding: 0 1.4rem;
}

.button.primary {
  color: #202020;
  background: var(--green);
  box-shadow: 0 1.25rem 3.25rem rgba(50, 207, 91, 0.28);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
  gap: 5rem;
  width: min(76rem, calc(100% - 2.5rem));
  min-height: calc(100svh - 5rem);
  align-items: center;
  margin: 0 auto;
  padding: 4.5rem 0 6rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yellow-text {
  color: var(--yellow);
}

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

h1 {
  max-width: 45rem;
  margin-bottom: 1.25rem;
  font-size: 5.4rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.55rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: #d0d0ca;
  font-size: 1.28rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats div {
  display: grid;
  gap: 0.2rem;
  min-width: 10.5rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}

.hero-stats strong {
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-showcase {
  position: relative;
  display: grid;
  justify-items: center;
}

.halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.4rem);
}

.halo.yellow {
  top: 12%;
  left: 0;
  width: 14rem;
  height: 14rem;
  background: rgba(246, 201, 61, 0.18);
}

.halo.green {
  right: 0;
  bottom: 8%;
  width: 16rem;
  height: 16rem;
  background: rgba(50, 207, 91, 0.18);
}

.phone-device {
  position: relative;
  z-index: 1;
  width: min(20.5rem, 100%);
  padding: 0.55rem;
  aspect-ratio: 9 / 19;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.1rem;
  box-shadow:
    var(--shadow),
    inset 0 0 0 0.45rem rgba(255, 255, 255, 0.04);
}

.phone-device::before {
  position: absolute;
  top: 0.58rem;
  left: 50%;
  z-index: 2;
  width: 5.4rem;
  height: 1.1rem;
  content: "";
  background: #050505;
  border-radius: 0 0 0.9rem 0.9rem;
  transform: translateX(-50%);
}

.phone-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.hero-phone {
  width: min(23rem, 100%);
}

.screen-picker {
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: min(29rem, 100%);
  margin-top: -1.15rem;
  padding: 0.55rem;
  background: rgba(49, 49, 49, 0.9);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.screen-picker button {
  min-height: 2.6rem;
  flex: 1;
  min-width: 6rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0.75rem;
  font-weight: 900;
}

.screen-picker button.active {
  color: #222;
  background: var(--yellow);
}

.section {
  width: min(76rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 42rem;
}

.section-heading.centered {
  max-width: 45rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.parcel-section > div > p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.screen-grid article,
.feature-list article,
.ui-card,
.steps article,
.benefit-grid article,
.route-grid article,
.final-cta,
.parcel-section {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(49, 49, 49, 0.86);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.28);
}

.screen-grid article {
  min-height: 30rem;
  padding: 1rem;
}

.screen-grid article:hover,
.feature-list article:hover,
.ui-card:hover,
.steps article:hover,
.benefit-grid article:hover,
.route-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.42);
}

.mini-phone {
  width: min(14.5rem, 100%);
  margin: 0 auto 1.15rem;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: #111;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-grid h3,
.screen-grid p {
  padding: 0 0.3rem;
}

.screen-grid p,
.ui-card p,
.steps p,
.route-grid span {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
  gap: 3rem;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(20rem, 1.05fr) minmax(0, 0.95fr);
}

.feature-list {
  display: grid;
  gap: 0.8rem;
}

.feature-list.compact {
  margin-top: 1.8rem;
}

.feature-list article {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  column-gap: 1rem;
  padding: 1rem;
}

.feature-list h3,
.feature-list p {
  grid-column: 2;
}

.feature-list h3 {
  margin-bottom: 0.2rem;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: #1f1f1f;
  background: var(--green);
  border-radius: 0.8rem;
  font-weight: 950;
}

.icon.yellow {
  background: var(--yellow);
}

.ui-card {
  padding: 1.6rem;
}

.passenger-card {
  border-color: rgba(246, 201, 61, 0.32);
}

.status-chip {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.8rem;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(50, 207, 91, 0.32);
  border-radius: 0.8rem;
  font-size: 0.88rem;
  font-weight: 900;
}

.status-chip.yellow {
  color: var(--yellow);
  background: var(--yellow-soft);
  border-color: rgba(246, 201, 61, 0.32);
}

.ui-card h3 {
  font-size: 2rem;
}

.pill-row {
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0;
}

.pill-row span {
  min-height: 2.1rem;
  padding: 0.45rem 0.75rem;
  color: var(--yellow);
  background: rgba(246, 201, 61, 0.13);
  border-radius: 0.8rem;
  font-weight: 900;
}

.pill-row.green span {
  color: var(--green);
  background: var(--green-soft);
}

.phone-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-items: center;
}

.phone-pair .phone-device {
  width: 100%;
}

.phone-pair .offset {
  margin-top: 4rem;
}

.parcel-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.parcel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.8fr);
  gap: 1rem;
  align-items: center;
}

.parcel-phone {
  width: min(16rem, 100%);
  justify-self: end;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  min-height: 13rem;
  padding: 1.25rem;
}

.steps span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  margin-bottom: 1.6rem;
  color: #202020;
  background: var(--green);
  border-radius: 0.8rem;
  font-weight: 950;
}

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

.benefit-grid article {
  display: flex;
  min-height: 7.3rem;
  align-items: flex-end;
  padding: 1.15rem;
  font-weight: 900;
}

.benefit-grid article:nth-child(2),
.benefit-grid article:nth-child(6) {
  background:
    linear-gradient(160deg, rgba(246, 201, 61, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(49, 49, 49, 0.86);
}

.benefit-grid article:nth-child(4),
.benefit-grid article:nth-child(5) {
  background:
    linear-gradient(160deg, rgba(50, 207, 91, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(49, 49, 49, 0.86);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.route-grid article {
  display: grid;
  gap: 0.8rem;
  min-height: 8.5rem;
  align-content: space-between;
  padding: 1.15rem;
}

.route-grid strong {
  font-size: 1.08rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  width: min(76rem, calc(100% - 2.5rem));
  margin: 0 auto 4.5rem;
  padding: 2.4rem;
  border-color: rgba(50, 207, 91, 0.32);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: 3.4rem;
}

.legal-page {
  width: min(76rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.legal-hero {
  max-width: 56rem;
  padding: 2.5rem 0 2rem;
}

.legal-hero h1 {
  max-width: 54rem;
  margin-bottom: 1rem;
  font-size: 4.8rem;
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.18rem;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 52rem);
}

.legal-card {
  padding: 2.2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(49, 49, 49, 0.86);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 2.1rem 0 0.75rem;
  font-size: 1.65rem;
  line-height: 1.16;
}

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

.legal-card p,
.legal-list {
  color: #d0d0ca;
  font-size: 1.05rem;
}

.legal-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding-left: 1.25rem;
}

.legal-list.numbered {
  gap: 0.7rem;
}

.contact-link {
  color: var(--yellow);
  font-weight: 900;
  word-break: break-word;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 4.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 2.2rem;
  height: 2.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

@media (max-width: 1100px) {
  .site-header {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .hero,
  .split-section,
  .split-section.reverse,
  .parcel-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 3rem;
  }

  h1 {
    font-size: 4.3rem;
  }

  .legal-hero h1 {
    font-size: 4rem;
  }

  h2,
  .final-cta h2 {
    font-size: 3rem;
  }

  .phone-pair {
    width: min(40rem, 100%);
    margin: 0 auto;
  }

  .steps,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .header-action {
    min-height: 2.65rem;
    min-width: 6rem;
    padding: 0 1rem;
  }

  .hero,
  .section,
  .final-cta,
  .legal-page {
    width: calc(100% - 2rem);
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
  }

  h1 {
    font-size: 3.35rem;
    line-height: 1;
  }

  .legal-page {
    padding-top: 2.25rem;
  }

  .legal-hero {
    padding-top: 1.5rem;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2.45rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-width: 0;
  }

  .screen-grid,
  .parcel-layout,
  .steps,
  .benefit-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .screen-grid article {
    min-height: 0;
  }

  .phone-pair {
    grid-template-columns: 1fr;
    width: min(21rem, 100%);
  }

  .phone-pair .offset {
    margin-top: 0;
  }

  .parcel-phone {
    justify-self: center;
  }

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

  .feature-list h3,
  .feature-list p {
    grid-column: auto;
  }

  .icon {
    margin-bottom: 0.75rem;
  }

  .final-cta {
    padding: 1.6rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1rem;
  }

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

@media (max-width: 430px) {
  body::before {
    background-size: min(30rem, 96vw) 100%, 0.18rem 12rem;
  }

  .hero,
  .section,
  .final-cta,
  .legal-page {
    width: calc(100% - 1.5rem);
  }

  h1 {
    font-size: 2.75rem;
  }

  .legal-hero h1 {
    font-size: 2.45rem;
  }

  .legal-card {
    padding: 1.35rem;
    border-radius: 1rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2.1rem;
  }

  .hero-phone {
    width: min(20.5rem, 100%);
  }

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

  .ui-card h3 {
    font-size: 1.55rem;
  }

  .parcel-section {
    padding: 1rem;
  }
}
