:root {
  color-scheme: dark;
  --ink: #f1f5fb;
  --muted: #9eabbc;
  --faint: #68788d;
  --line: rgba(196, 218, 247, 0.16);
  --line-strong: rgba(196, 218, 247, 0.3);
  --blue: #7ea6ff;
  --lime: #c3ff59;
  --red: #ff8f91;
  --navy: #060e19;
  --panel: #0a1726;
  --panel-strong: #0d1d2e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

main {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.site-nav,
footer {
  width: min(100% - 64px, 1180px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav {
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  line-height: 0;
}

.brand img {
  display: block;
  width: 168px;
  height: auto;
}

.nav-link,
footer a {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-link:hover,
footer a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  width: min(100% - 64px, 1180px);
  min-height: 680px;
  margin: auto;
  padding: 88px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: 76px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 -50vw;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(126, 166, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 166, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 88%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

h1 em {
  color: var(--lime);
  font-style: normal;
}

.lede {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 22px;
}

.button {
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: #0c1608;
}

.button-primary:hover {
  background: #d1ff7e;
}

.button-secondary {
  border-color: var(--line-strong);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.availability {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(195, 255, 89, 0.65);
}

.hud-window {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.hud-window::after {
  content: "";
  position: absolute;
  inset: 35px 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 58%, rgba(3, 9, 17, 0.78));
}

.window-bar {
  position: relative;
  z-index: 5;
  height: 36px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  background: #07111d;
  color: #8da1b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.window-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55708b;
}

.window-bar p {
  margin: 0 auto;
  transform: translateX(-20px);
}

.course-map {
  position: absolute;
  inset: 36px 0 0;
  background:
    linear-gradient(135deg, rgba(71, 111, 146, 0.22), transparent 46%), #0a1826;
}

.course-map svg {
  width: 100%;
  height: 100%;
}

.contour {
  fill: none;
  stroke: rgba(126, 166, 255, 0.1);
  stroke-width: 1.2;
}

.course-shadow,
.course-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-shadow {
  stroke: rgba(0, 0, 0, 0.55);
  stroke-width: 12;
}

.course-line {
  stroke: var(--lime);
  stroke-width: 4;
}

.course-start {
  fill: var(--panel);
  stroke: var(--lime);
  stroke-width: 4;
}

.course-rider {
  fill: var(--lime);
  stroke: rgba(195, 255, 89, 0.28);
  stroke-width: 14;
}

.hud-stat,
.route-card,
.comparison,
.preview-state {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(229, 241, 255, 0.38);
  background: rgba(4, 13, 23, 0.82);
  backdrop-filter: blur(7px);
}

.hud-stat {
  top: 62px;
  padding: 13px 16px;
  border-radius: 6px;
}

.hud-stat b {
  display: block;
  font-size: 2.1rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hud-stat small,
.route-card p,
.route-card small,
.comparison small {
  color: #b6cbe0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.speed {
  left: 24px;
}

.distance {
  right: 24px;
}

.route-card {
  bottom: 70px;
  left: 24px;
  width: 180px;
  padding: 13px 14px;
  border-radius: 6px;
}

.route-card p {
  margin-bottom: 4px;
  color: var(--lime);
}

.route-card b {
  display: block;
  margin-bottom: 4px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.comparison {
  right: 24px;
  bottom: 70px;
  padding: 12px 14px;
  border-radius: 6px;
  text-align: right;
}

.comparison small,
.comparison b {
  display: block;
}

.comparison b {
  margin-top: 3px;
  color: var(--red);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.preview-state {
  top: 50px;
  left: 50%;
  padding: 7px 9px;
  transform: translateX(-50%);
  border-color: rgba(255, 143, 145, 0.4);
  border-radius: 99px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.preview-timeline {
  position: absolute;
  right: 24px;
  bottom: 30px;
  left: 24px;
  z-index: 4;
  height: 2px;
  background: rgba(224, 237, 251, 0.22);
}

.preview-timeline span {
  display: block;
  width: 63%;
  height: 100%;
  background: var(--blue);
}

.preview-timeline i {
  position: absolute;
  top: -4px;
  left: calc(63% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
}

.proof,
.feature-rundown,
.release-callout {
  width: min(100% - 64px, 1180px);
  margin: auto;
  padding: 110px 0;
}

h2 {
  max-width: 790px;
  margin-bottom: 48px;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.steps article {
  min-height: 220px;
  margin-right: 28px;
  padding: 27px 28px 20px 0;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  margin-right: 0;
  border: 0;
}

.steps span,
.feature-grid span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.steps h3,
.feature-grid h3 {
  margin: 30px 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.steps p,
.feature-grid p,
.values p,
.release-callout > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.feature-rundown {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  border-top: 1px solid var(--line);
}

.section-intro {
  position: sticky;
  top: 36px;
  align-self: start;
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.1vw, 4rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.feature-grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.feature-grid h3 {
  margin-top: 32px;
}

.values {
  padding: 105px max(32px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.values h2 {
  max-width: 570px;
  margin-bottom: 0;
}

.values-copy {
  max-width: 560px;
  padding-top: 34px;
}

.values-copy p:last-child {
  margin-bottom: 0;
}

.release-callout {
  padding-top: 115px;
  padding-bottom: 120px;
}

.release-callout h1,
.release-callout h2 {
  max-width: 860px;
  margin-bottom: 20px;
}

.release-callout > p {
  max-width: 610px;
}

.release-callout > .lede {
  max-width: 670px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.release-steps {
  margin-top: 22px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 750;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  width: min(100% - 64px, 780px);
  margin: auto;
  padding: 88px 0 120px;
}

.legal-page h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.94;
}

.legal-page h2 {
  margin: 54px 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-page p,
.legal-page li {
  max-width: 70ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

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

.legal-page .updated {
  margin-bottom: 36px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.legal-page ul {
  padding-left: 1.25rem;
}

footer {
  min-height: 100px;
  gap: 28px;
  border-top: 1px solid var(--line);
}

footer div {
  display: flex;
  gap: 20px;
}

footer p {
  margin: 0;
  color: var(--faint);
  font-size: 0.72rem;
}

@media (max-width: 860px) {
  .site-nav,
  footer,
  .hero,
  .proof,
  .feature-rundown,
  .release-callout,
  .legal-page {
    width: min(100% - 40px, 700px);
  }

  .hero {
    min-height: auto;
    padding: 72px 0 84px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero::before {
    right: -20px;
  }

  .hud-window {
    min-height: 430px;
  }

  .proof,
  .feature-rundown,
  .release-callout {
    padding: 82px 0;
  }

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

  .steps article {
    min-height: auto;
    margin: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .feature-rundown {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-intro {
    position: static;
  }

  .values {
    padding: 80px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-copy {
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .site-nav {
    min-height: 72px;
  }

  .brand img {
    width: 145px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero {
    padding-top: 62px;
  }

  .lede {
    font-size: 1rem;
  }

  .hud-window {
    min-height: 360px;
  }

  .hud-stat {
    top: 55px;
    padding: 10px 12px;
  }

  .hud-stat b {
    font-size: 1.55rem;
  }

  .distance {
    right: 14px;
  }

  .speed {
    left: 14px;
  }

  .route-card {
    bottom: 61px;
    left: 14px;
    width: 155px;
  }

  .comparison {
    right: 14px;
    bottom: 61px;
  }

  .comparison b {
    font-size: 1.2rem;
  }

  .preview-timeline {
    right: 14px;
    bottom: 25px;
    left: 14px;
  }

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

  .feature-grid article {
    min-height: auto;
  }

  .legal-page {
    padding: 66px 0 90px;
  }

  .legal-page h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  footer {
    min-height: 0;
    padding: 24px 0 30px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  footer div {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
