:root {
  color-scheme: dark;
  --charcoal: #171411;
  --leather: #5a3520;
  --field-dark: #2f4a2e;
  --dust: #d8c3a5;
  --rust: #a6532d;
  --road-yellow: #d9a441;
  --old-white: #f4efe6;
  --steel: #6f6a61;
  --route-green: #4f7a3a;
  --gps-blue: #3d6f73;
  --black-solid: #0f0d0a;
  --panel-line: rgba(216, 195, 165, 0.24);
  --nav-height: 74px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--old-white);
  background: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

@media (pointer: fine) {
  body,
  a,
  button {
    cursor: none;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(244, 239, 230, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(244, 239, 230, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: soft-light;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section[id] {
  scroll-margin-top: 120px;
}

::selection {
  color: var(--charcoal);
  background: var(--road-yellow);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor-ring,
.cursor-dot {
  position: absolute;
  display: block;
}

.cursor-ring {
  inset: 0;
  border: 1px solid rgba(217, 164, 65, 0.95);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(15, 13, 10, 0.86),
    0 0 18px rgba(217, 164, 65, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.cursor-ring::before,
.cursor-ring::after {
  position: absolute;
  content: "";
  background: rgba(217, 164, 65, 0.92);
}

.cursor-ring::before {
  top: 50%;
  left: -8px;
  width: 56px;
  height: 1px;
}

.cursor-ring::after {
  top: -8px;
  left: 50%;
  width: 1px;
  height: 56px;
}

.cursor-dot {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--road-yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor.is-hovering .cursor-ring {
  background: rgba(217, 164, 65, 0.12);
  border-color: var(--old-white);
  transform: scale(1.45);
}

.cursor.is-hovering .cursor-dot {
  background: var(--old-white);
}

.app-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: var(--nav-height);
  padding: 10px 12px;
  color: var(--old-white);
  background: rgba(15, 13, 10, 0.68);
  border: 1px solid rgba(216, 195, 165, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 220ms ease,
    min-height 220ms ease,
    top 220ms ease;
}

.app-nav.is-scrolled {
  top: 10px;
  min-height: 62px;
  background: rgba(15, 13, 10, 0.9);
}

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

.brand-lockup img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-lockup span,
.site-footer span:first-child {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
}

.brand-lockup span {
  font-size: 1rem;
}

.route-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 5px;
  background: rgba(244, 239, 230, 0.055);
  border: 1px solid rgba(244, 239, 230, 0.11);
  border-radius: 7px;
}

.route-nav a,
.nav-install,
.ghost-link,
.contact-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 6px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.route-nav a {
  color: rgba(244, 239, 230, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.route-nav a:hover {
  color: var(--old-white);
  background: rgba(217, 164, 65, 0.12);
}

.route-nav svg,
.ghost-link svg,
.contact-link svg,
.section-kicker svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.nav-install {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 900;
  background: var(--road-yellow);
  border: 1px solid rgba(244, 239, 230, 0.18);
  box-shadow: inset 0 -2px 0 rgba(23, 20, 17, 0.28);
}

.nav-install:hover,
.play-button:hover,
.ghost-link:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.play-symbol {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(286px, 390px);
  gap: 36px;
  align-items: end;
  min-height: 96svh;
  padding: 142px max(28px, calc((100vw - var(--max)) / 2)) 72px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-video video,
.photo-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video video {
  z-index: 1;
  filter: saturate(0.9) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.hero-video::after,
.photo-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 13, 10, 0.94) 0%, rgba(15, 13, 10, 0.6) 42%, rgba(15, 13, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 13, 10, 0.08), rgba(15, 13, 10, 0.92));
}

.film-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(0deg, rgba(244, 239, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.hero-copy,
.hero-console {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker,
.scene-count {
  margin: 0 0 16px;
  color: var(--road-yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.hero h1,
.journey-brief h2,
.scene-panel h2,
.support-copy h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  font-size: 7.4rem;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(244, 239, 230, 0.84);
  font-size: 1.32rem;
  line-height: 1.5;
}

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

.play-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  color: var(--charcoal);
  font-weight: 900;
  background: var(--road-yellow);
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 7px;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    inset 0 -3px 0 rgba(23, 20, 17, 0.26);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.ghost-link {
  min-height: 54px;
  color: var(--old-white);
  background: rgba(244, 239, 230, 0.075);
  border: 1px solid rgba(244, 239, 230, 0.22);
}

.route-console {
  color: var(--old-white);
  background:
    linear-gradient(180deg, rgba(31, 26, 21, 0.86), rgba(15, 13, 10, 0.93)),
    var(--charcoal);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.hero-console {
  align-self: end;
  padding: 18px;
}

.console-topline,
.console-route,
.route-console dl {
  display: grid;
  gap: 10px;
}

.console-topline {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.14);
}

.console-topline span {
  color: rgba(244, 239, 230, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-topline strong {
  color: #192012;
  padding: 6px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  background: var(--road-yellow);
  border-radius: 5px;
}

.console-route {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 16px 0;
  font-weight: 900;
}

.console-route svg {
  width: 18px;
  color: var(--road-yellow);
}

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

.route-console dl div {
  min-width: 0;
  padding: 12px 10px;
  background: rgba(244, 239, 230, 0.065);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 6px;
}

.route-console dt {
  color: rgba(244, 239, 230, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-console dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  font-weight: 900;
}

.journey-brief {
  display: grid;
  place-items: center;
  min-height: 58svh;
  padding: 104px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(23, 20, 17, 0.98), rgba(47, 74, 46, 0.5)),
    var(--charcoal);
}

.journey-brief h2 {
  max-width: 900px;
  font-size: 3.9rem;
}

.journey-brief p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(244, 239, 230, 0.76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.photo-section {
  position: relative;
  height: 190svh;
  --progress: 0;
  --inverse: 1;
  --photo-scale: 1.08;
  --photo-shift: 14px;
  --panel-y: 34px;
  --panel-opacity: 0;
  --console-x: 54px;
  --event-y: 40px;
  --slat-x: -120vw;
  --split-left: -100%;
  --split-right: 100%;
  --route-mid: 0;
  --route-last: 0;
  --fold-x: 52deg;
  --fold-z: -8deg;
  --fold-opacity: 0;
  --gps-opacity: 0;
  --iris-stop: 0%;
  --iris-edge: 2%;
  --arrival-y: 28px;
  background: var(--charcoal);
}

.photo-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
}

.photo-stage img {
  z-index: 1;
  filter: saturate(0.88) contrast(1.08) brightness(0.74);
  transform:
    scale(var(--photo-scale))
    translate3d(var(--photo-shift), 0, 0);
  will-change: transform, clip-path;
}

.photo-vignette {
  background:
    linear-gradient(90deg, rgba(15, 13, 10, 0.88), rgba(15, 13, 10, 0.12) 52%, rgba(15, 13, 10, 0.72)),
    linear-gradient(180deg, rgba(15, 13, 10, 0.46), rgba(15, 13, 10, 0.88));
}

.scene-panel {
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 96px;
  z-index: 8;
  width: min(760px, calc(100% - 56px));
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  clip-path: inset(0 calc(var(--inverse) * 100%) 0 0);
  transform: translateY(var(--panel-y)) translateX(calc(var(--inverse) * -28px));
  opacity: var(--panel-opacity);
}

.scene-panel.align-right {
  right: max(28px, calc((100vw - var(--max)) / 2));
  left: auto;
}

.split-scene .scene-panel.align-right {
  bottom: 128px;
}

.scene-panel h2 {
  max-width: 820px;
  font-size: 7rem;
  line-height: 0.88;
  overflow-wrap: break-word;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.58);
}

.scene-panel p:last-child {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(244, 239, 230, 0.78);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.scene-console {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  top: 122px;
  z-index: 8;
  width: min(430px, calc(100% - 56px));
  padding: 16px;
  transform: translateX(var(--console-x));
  opacity: var(--panel-opacity);
}

.progress-bar {
  height: 5px;
  margin-top: 16px;
  overflow: hidden;
  background: rgba(244, 239, 230, 0.12);
  border-radius: 99px;
}

.progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--road-yellow);
  transform: scaleX(var(--progress));
  transform-origin: left center;
}

.transition-slat {
  position: absolute;
  z-index: 5;
  inset-block: -10%;
  width: 24vw;
  background: linear-gradient(180deg, rgba(216, 195, 165, 0.2), rgba(90, 53, 32, 0.45));
  transform: skewX(-12deg) translateX(var(--slat-x));
  mix-blend-mode: overlay;
}

.slat-a {
  left: 4vw;
}

.slat-b {
  left: 38vw;
  transition-delay: 60ms;
}

.slat-c {
  left: 70vw;
  width: 18vw;
}

.split-plates {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.split-plates span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    linear-gradient(90deg, rgba(15, 13, 10, 0.88), rgba(166, 83, 45, 0.2)),
    rgba(15, 13, 10, 0.34);
  transform: translateX(var(--split-left));
}

.split-plates span + span {
  right: 0;
  transform: translateX(var(--split-right));
}

.event-strip {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 86px;
  z-index: 8;
  display: flex;
  gap: 10px;
  width: min(calc(100% - 56px), 620px);
  transform: translateY(var(--event-y));
  opacity: var(--panel-opacity);
}

.event-strip span {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  color: var(--old-white);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-top: 2px solid rgba(217, 164, 65, 0.78);
  border-radius: 0;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.route-ribbon {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.route-ribbon span {
  position: absolute;
  left: -20vw;
  width: 140vw;
  height: 2px;
  background: rgba(217, 164, 65, 0.72);
  box-shadow: 0 0 18px rgba(217, 164, 65, 0.4);
  transform-origin: left center;
}

.route-ribbon span:nth-child(1) {
  top: 34%;
  transform: rotate(-9deg) scaleX(var(--progress));
}

.route-ribbon span:nth-child(2) {
  top: 49%;
  transform: rotate(5deg) scaleX(var(--route-mid));
}

.route-ribbon span:nth-child(3) {
  top: 63%;
  transform: rotate(-3deg) scaleX(var(--route-last));
}

.route-hud {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 72px;
  z-index: 8;
  width: min(420px, calc(100% - 56px));
  padding: 18px;
  background: rgba(15, 13, 10, 0.72);
  border: 1px solid rgba(216, 195, 165, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  transform: translateX(var(--console-x));
  opacity: var(--panel-opacity);
}

.hud-status {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.13);
}

.hud-status span {
  color: var(--route-green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hud-status strong {
  color: var(--old-white);
  font-size: 1.85rem;
  line-height: 1;
}

.hud-track {
  position: relative;
  height: 44px;
  margin-top: 18px;
}

.hud-line,
.hud-line::before {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 3px;
  content: "";
  border-radius: 99px;
}

.hud-line {
  background: rgba(244, 239, 230, 0.18);
}

.hud-line::before {
  left: 0;
  right: 0;
  background: var(--road-yellow);
  transform: scaleX(var(--progress));
  transform-origin: left center;
}

.hud-pin {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 16px;
  height: 16px;
  background: var(--road-yellow);
  border: 3px solid var(--charcoal);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 8px rgba(217, 164, 65, 0.12);
}

.hud-pin.origin {
  left: 4px;
}

.hud-pin.destination {
  right: 4px;
  background: var(--route-green);
  box-shadow: 0 0 0 8px rgba(79, 122, 58, 0.15);
}

.hud-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(244, 239, 230, 0.58);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-fold {
  position: absolute;
  inset: 9% 8%;
  z-index: 5;
  border: 1px solid rgba(61, 111, 115, 0.28);
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(244, 239, 230, 0.035) 1px, transparent 1px),
    rgba(15, 13, 10, 0.22);
  background-size: 96px 96px;
  transform:
    perspective(900px)
    rotateX(var(--fold-x))
    rotateZ(var(--fold-z));
  transform-origin: center bottom;
  opacity: var(--fold-opacity);
}

.gps-overlay {
  position: absolute;
  inset: 82px max(28px, calc((100vw - var(--max)) / 2)) 82px;
  z-index: 6;
  pointer-events: none;
  border: 1px solid rgba(61, 111, 115, 0.32);
  border-radius: 8px;
  opacity: var(--gps-opacity);
}

.gps-line {
  position: absolute;
  height: 4px;
  background: var(--road-yellow);
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(217, 164, 65, 0.36);
  transform-origin: left center;
}

.segment-one {
  left: 12%;
  bottom: 22%;
  width: 28%;
  transform: rotate(-23deg) scaleX(var(--progress));
}

.segment-two {
  left: 36%;
  bottom: 46%;
  width: 25%;
  background: var(--gps-blue);
  transform: rotate(14deg) scaleX(var(--progress));
}

.segment-three {
  right: 16%;
  top: 24%;
  width: 24%;
  transform: rotate(-31deg) scaleX(var(--progress));
}

.gps-pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: var(--road-yellow);
  border: 3px solid var(--charcoal);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 8px rgba(217, 164, 65, 0.12);
}

.pin-origin {
  left: 10%;
  bottom: 19%;
}

.pin-mid {
  left: 47%;
  bottom: 49%;
  background: var(--gps-blue);
}

.pin-destination {
  right: 14%;
  top: 19%;
  background: var(--route-green);
}

.coordinate,
.compass {
  position: absolute;
  z-index: 3;
  color: rgba(244, 239, 230, 0.74);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coord-one {
  left: 24px;
  bottom: 22px;
}

.coord-two {
  right: 24px;
  top: 22px;
}

.compass {
  right: 24px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--road-yellow);
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 50%;
  background: rgba(15, 13, 10, 0.4);
}

.compass svg {
  width: 32px;
  height: 32px;
}

.compass span {
  position: absolute;
  top: 8px;
  color: var(--old-white);
}

.arrival-iris {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 38%, transparent var(--iris-stop), rgba(15, 13, 10, 0.78) var(--iris-edge)),
    radial-gradient(circle at 68% 38%, rgba(217, 164, 65, 0.28), transparent 32%);
}

.arrival-badge {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  top: 124px;
  z-index: 8;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  color: var(--charcoal);
  font-weight: 900;
  background: var(--road-yellow);
  border: 2px solid rgba(23, 20, 17, 0.65);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(var(--arrival-y));
  opacity: var(--panel-opacity);
}

.arrival-badge svg {
  width: 20px;
}

.app-proof-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
  padding: 118px max(28px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 13, 10, 0.98), rgba(47, 74, 46, 0.7)),
    var(--charcoal);
}

.app-proof-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.3;
  background:
    linear-gradient(90deg, rgba(217, 164, 65, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(244, 239, 230, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000 82%, transparent);
}

.app-proof-copy,
.app-screens {
  position: relative;
  z-index: 2;
}

.app-proof-copy h2 {
  max-width: 640px;
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 4.35rem;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.app-proof-copy > p:last-child {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(244, 239, 230, 0.76);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
}

.app-screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(128px, 1fr));
  gap: 18px;
  align-items: end;
  min-width: 0;
  perspective: 1200px;
}

.phone-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.14), rgba(15, 13, 10, 0.9)),
    #0b0a08;
  border: 1px solid rgba(216, 195, 165, 0.22);
  border-radius: 26px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(244, 239, 230, 0.06);
  transform: rotateY(-10deg) translateY(18px);
}

.phone-shot:nth-child(even) {
  transform: rotateY(8deg) translateY(-12px);
}

.phone-shot.shot-main {
  transform: rotateY(-6deg) translateY(-30px);
}

.phone-shot.shot-muted {
  opacity: 0.82;
}

.phone-shot img {
  width: 100%;
  aspect-ratio: 407 / 914;
  object-fit: cover;
  border-radius: 19px;
  background: var(--black-solid);
}

.phone-shot figcaption {
  position: absolute;
  left: 50%;
  bottom: -34px;
  color: rgba(244, 239, 230, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.support-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(280px, 420px);
  gap: 46px;
  align-items: center;
  padding: 108px max(28px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(23, 20, 17, 0.98), rgba(47, 74, 46, 0.5)),
    var(--charcoal);
}

.support-copy h2 {
  font-size: 3.25rem;
}

.support-copy p {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(244, 239, 230, 0.76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.labs-mark {
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 8px;
}

.labs-mark img {
  width: 112px;
}

.support-actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.contact-link {
  min-height: 54px;
  justify-content: flex-start;
  color: var(--old-white);
  background: rgba(244, 239, 230, 0.08);
  border: 1px solid rgba(244, 239, 230, 0.16);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 24px max(28px, calc((100vw - var(--max)) / 2));
  color: rgba(244, 239, 230, 0.66);
  background: var(--black-solid);
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--old-white);
}

@media (max-width: 1020px) {
  .app-nav {
    grid-template-columns: 1fr auto;
  }

  .route-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 94svh;
  }

  .hero h1 {
    font-size: 5.4rem;
  }

  .scene-panel h2 {
    font-size: 5.4rem;
  }

  .hero-console {
    max-width: 520px;
  }

  .support-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .app-proof-section {
    grid-template-columns: 1fr;
  }

  .app-proof-copy h2 {
    font-size: 3.3rem;
  }

  .app-screens {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    overflow-x: auto;
    padding: 18px 0 42px;
    scrollbar-width: none;
  }

  .app-screens::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 64px;
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .app-nav {
    top: 10px;
    grid-template-columns: 40px minmax(0, 1fr) 48px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 8px;
    overflow: hidden;
  }

  section[id] {
    scroll-margin-top: 142px;
  }

  .brand-lockup span,
  .route-nav span,
  .nav-install span:not(.play-symbol) {
    display: none;
  }

  .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .route-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    padding: 4px;
  }

  .route-nav a {
    min-width: 0;
    width: 100%;
    padding: 0;
  }

  .nav-install {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-width: 48px;
    padding: 0 13px;
  }

  .hero {
    min-height: 90svh;
    padding: 134px 20px 44px;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1.06rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
  }

  .play-button,
  .ghost-link {
    width: 100%;
    min-height: 54px;
  }

  .hero-console {
    display: none;
  }

  .journey-brief {
    min-height: auto;
    padding: 76px 20px;
  }

  .journey-brief h2,
  .support-copy h2 {
    font-size: 2.35rem;
  }

  .journey-brief p,
  .support-copy p,
  .app-proof-copy > p:last-child {
    font-size: 1rem;
  }

  .app-proof-section {
    gap: 30px;
    padding: 78px 20px;
  }

  .app-proof-copy h2 {
    font-size: 2.55rem;
  }

  .app-screens {
    grid-template-columns: repeat(4, 178px);
    gap: 14px;
    margin-inline: -20px;
    padding: 22px 20px 42px;
    scroll-snap-type: x mandatory;
  }

  .phone-shot,
  .phone-shot:nth-child(even),
  .phone-shot.shot-main {
    scroll-snap-align: center;
    transform: none;
  }

  .phone-shot {
    border-radius: 22px;
  }

  .phone-shot img {
    border-radius: 16px;
  }

  .photo-section {
    height: 145svh;
  }

  .photo-stage img {
    transform: scale(var(--photo-scale));
  }

  .scene-panel,
  .scene-panel.align-right {
    left: 18px;
    right: auto;
    bottom: 42px;
    width: calc(100% - 36px);
    padding: 0;
  }

  .split-scene .scene-panel.align-right {
    bottom: 42px;
  }

  .scene-panel h2 {
    font-size: 3.25rem;
    line-height: 0.9;
  }

  .scene-panel p:last-child {
    max-width: 94%;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .scene-console {
    top: 124px;
    right: 18px;
    width: calc(100% - 36px);
    padding: 14px;
  }

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

  .scene-console dd {
    font-size: 0.78rem;
  }

  .event-strip {
    display: none;
  }

  .route-hud {
    left: 18px;
    right: auto;
    top: 152px;
    bottom: auto;
    width: calc(100% - 36px);
    padding: 14px;
    transform: translateY(calc(var(--inverse) * -14px));
  }

  .hud-status strong {
    font-size: 1.4rem;
  }

  .route-scene .scene-panel {
    bottom: 34px;
  }

  .route-scene .scene-panel h2 {
    font-size: 3rem;
  }

  .gps-overlay {
    inset: 126px 18px 220px;
  }

  .coordinate {
    display: none;
  }

  .compass {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .compass svg {
    width: 26px;
    height: 26px;
  }

  .arrival-badge {
    top: 128px;
    right: 18px;
    max-width: calc(100% - 36px);
  }

  .support-section {
    padding: 76px 20px;
  }

  .labs-mark {
    width: 136px;
    height: 136px;
  }

  .labs-mark img {
    width: 96px;
  }
}

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

  .photo-section {
    height: 115svh;
  }
}
