:root {
  color-scheme: light;
  --paper: #f7f7f3;
  --white: #ffffff;
  --ink: #0a0c10;
  --navy: #082f64;
  --navy-deep: #071d3e;
  --cyan: #1cb1c5;
  --red: #ed1748;
  --yellow: #ffcc5c;
  --muted: #b9bbc0;
  --line: rgba(10, 12, 16, 0.18);
  --page-x: clamp(1.25rem, 3.6vw, 4.5rem);
  --header-h: 5.25rem;
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 120ms;
  --default: 220ms;
  --slow: 420ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: rgba(8, 47, 100, 0.16);
  touch-action: manipulation;
}

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

button {
  border: 0;
}

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

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p,
figure,
ol {
  margin: 0;
}

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

[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transition: transform var(--fast) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--page-x);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  transition:
    min-height var(--default) var(--ease-out),
    border-color var(--default) var(--ease-out),
    background-color var(--default) var(--ease-out);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  min-height: 4.5rem;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  width: 3.7rem;
  height: 2rem;
  object-fit: contain;
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3.75rem);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.site-menu a,
.footer-nav a,
.footer-contact a {
  position: relative;
}

.site-menu a::after,
.footer-nav a::after,
.footer-contact a::after {
  position: absolute;
  inset: auto 0 -0.3rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--default) var(--ease-out);
}

.site-menu a:hover::after,
.footer-nav a:hover::after,
.footer-contact a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 2.8rem;
  padding: 0.75rem 0.9rem 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background-color var(--fast) var(--ease-out),
    transform 90ms var(--ease-out);
}

.header-cta:hover,
.button-link:hover {
  background: var(--red);
}

.header-cta:active,
.button-link:active {
  transform: scale(0.98);
}

.menu-toggle {
  display: none;
}

.hero {
  display: flex;
  min-height: max(46rem, 100svh);
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-h) + 2.25rem) var(--page-x) 2.25rem;
  background: var(--white);
}

.hero-kicker,
.hero-footer,
.route-topline,
.mini-proof,
.manifesto-image figcaption,
.service-image figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin: auto 0;
  padding: 3.5rem 0;
  font-size: clamp(4.4rem, 10.8vw, 11.5rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero-line {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: none;
  gap: 0.18em;
  will-change: transform;
}

.hero-line-one {
  transform: translate3d(calc(var(--hero-shift, 0) * -0.14px), 0, 0);
}

.hero-line-two {
  align-self: flex-end;
  transform: translate3d(calc(var(--hero-shift, 0) * 0.08px), 0, 0);
}

.hero-line-three {
  transform: translate3d(calc(var(--hero-shift, 0) * -0.05px), 0, 0);
}

.hero-muted {
  color: #d9dadd;
}

.hero-asterisk {
  color: var(--red);
  font-size: 0.68em;
  line-height: 1;
  transform: translateY(-0.04em);
}

.hero-arrow {
  color: var(--cyan);
  font-weight: 400;
}

.hero-footer {
  align-items: flex-end;
  gap: 2rem;
}

.hero-footer p {
  max-width: 30rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.35;
  text-wrap: pretty;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link span {
  transition: transform var(--fast) var(--ease-out);
}

.text-link:hover span {
  transform: translateY(3px);
}

.manifesto {
  padding: 2.2rem var(--page-x) var(--page-x);
  background: var(--red);
  color: var(--white);
}

.section-tag {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag span:first-child {
  display: grid;
  min-width: 2rem;
  height: 1.6rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.section-tag-light {
  color: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(16rem, 0.65fr);
  gap: 8vw;
  align-items: end;
  padding: 8vw 0 5vw;
}

.manifesto h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 6.9vw, 7.75rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.manifesto h2 span {
  color: var(--yellow);
}

.manifesto-aside {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.manifesto-aside > p {
  max-width: 30rem;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.4;
  text-wrap: pretty;
}

.mini-proof {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.mini-proof strong {
  font-weight: 600;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0.35rem rgba(255, 204, 92, 0.18);
}

.manifesto-image {
  overflow: hidden;
  background: var(--navy);
}

.manifesto-image img {
  width: 100%;
  height: min(66vw, 49rem);
  object-fit: cover;
  object-position: center 48%;
  transition: transform 900ms var(--ease-out);
}

.manifesto-image:hover img {
  transform: scale(1.018);
}

.manifesto-image figcaption,
.service-image figcaption {
  min-height: 3rem;
  padding: 0.8rem 1rem;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-story {
  position: relative;
  height: 285svh;
  scroll-margin-top: 0;
  background: var(--paper);
}

.route-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 42rem;
  overflow: hidden;
  padding: calc(var(--header-h) + 1.25rem) var(--page-x) 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 63%, rgba(8, 47, 100, 0.06) 63% 100%),
    var(--paper);
}

.route-topline {
  position: relative;
  z-index: 2;
}

.scroll-cue {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-heading {
  position: absolute;
  z-index: 0;
  top: 23%;
  left: var(--page-x);
  right: var(--page-x);
}

.route-heading p {
  margin-left: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-heading h2 {
  margin-top: 0.5rem;
  color: rgba(8, 47, 100, 0.1);
  font-size: clamp(5.5rem, 15.5vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.8;
  white-space: nowrap;
}

.route-track {
  position: absolute;
  z-index: 1;
  bottom: 16%;
  left: 0;
  right: 0;
  height: 8.5rem;
}

.route-track-line {
  position: absolute;
  inset: auto 0 0;
  height: 5.4rem;
  border-top: 0.36rem solid var(--navy);
  border-bottom: 0.36rem solid var(--navy);
  background: var(--white);
}

.road-dash {
  position: absolute;
  z-index: 1;
  bottom: 2.6rem;
  width: 9vw;
  height: 0.26rem;
  background: var(--yellow);
}

.road-dash-one {
  left: 11%;
}

.road-dash-two {
  left: 46%;
}

.road-dash-three {
  right: 10%;
}

.route-stops {
  position: absolute;
  z-index: 3;
  right: var(--page-x);
  bottom: calc(16% + 13rem);
  left: var(--page-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
}

.route-stops li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding-top: 1.1rem;
  color: rgba(10, 12, 16, 0.42);
  transition: color var(--default) var(--ease-out);
}

.route-stops li:nth-child(2) {
  align-items: center;
}

.route-stops li:nth-child(3) {
  align-items: flex-end;
}

.route-stops li.is-active {
  color: var(--ink);
}

.stop-marker {
  position: absolute;
  top: 0;
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 1px currentColor;
}

.route-stops li:nth-child(1) .stop-marker {
  left: 0;
}

.route-stops li:nth-child(3) .stop-marker {
  right: 0;
}

.stop-time {
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.route-stops strong {
  font-size: clamp(0.85rem, 1.3vw, 1.15rem);
  line-height: 1.1;
}

.vehicle-group {
  position: absolute;
  z-index: 5;
  bottom: calc(16% - 0.8rem);
  left: 0;
  width: clamp(22rem, 36vw, 40rem);
  will-change: transform;
  filter: drop-shadow(0 1.1rem 0.9rem rgba(7, 29, 62, 0.19));
}

.pit-truck,
.pit-truck-sprite {
  width: 100%;
}

.pit-truck-sprite {
  height: auto;
  object-fit: contain;
}

.floating-cup {
  position: absolute;
  z-index: 2;
  bottom: 74%;
  left: 49%;
  width: clamp(3rem, 5.5vw, 5.5rem);
  height: clamp(4.2rem, 7.3vw, 7.2rem);
  transform-origin: center bottom;
  filter: drop-shadow(0 0.8rem 0.55rem rgba(7, 29, 62, 0.2));
  will-change: transform;
}

.cup-lid {
  position: absolute;
  z-index: 3;
  top: 0;
  left: -7%;
  width: 114%;
  height: 16%;
  border-radius: 0.35rem 0.35rem 0.15rem 0.15rem;
  background: var(--navy-deep);
  box-shadow: inset 0 -0.2rem rgba(255, 255, 255, 0.16);
}

.cup-body {
  position: absolute;
  inset: 12% 7% 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 16% 100%);
  background: var(--white);
  color: var(--navy);
}

.cup-body strong {
  z-index: 1;
  font-size: clamp(0.74rem, 1.5vw, 1.35rem);
  font-style: italic;
  letter-spacing: -0.08em;
}

.cup-body i {
  position: absolute;
  right: -10%;
  bottom: 8%;
  left: -10%;
  height: 26%;
  background: linear-gradient(160deg, var(--cyan) 0 34%, var(--yellow) 34% 62%, var(--red) 62%);
  transform: skewY(-12deg);
}

.steam {
  position: absolute;
  top: -29%;
  width: 0.48rem;
  height: 24%;
  border-left: 2px solid rgba(8, 47, 100, 0.48);
  border-radius: 50%;
}

.steam-one {
  left: 36%;
  transform: rotate(8deg);
}

.steam-two {
  left: 60%;
  transform: rotate(-7deg) translateY(-0.45rem);
}

.route-progress {
  position: absolute;
  z-index: 6;
  right: var(--page-x);
  bottom: 2rem;
  left: var(--page-x);
  height: 2px;
  overflow: hidden;
  background: rgba(8, 47, 100, 0.18);
}

.route-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.route-status {
  position: absolute;
  z-index: 6;
  right: var(--page-x);
  bottom: 2.55rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem 0 0.55rem 1rem;
  background: var(--paper);
  font-size: 0.68rem;
}

.route-status span {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-proof {
  display: grid;
  grid-template-columns: minmax(22rem, 0.85fr) minmax(0, 1.55fr);
  min-height: 100svh;
  background: var(--white);
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem) var(--page-x);
}

.service-copy h2,
.how h2,
.app-copy h2,
.request-copy h2 {
  margin: 3.5rem 0 2rem;
  font-size: clamp(3.4rem, 7vw, 8.2rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.service-copy > p {
  max-width: 28rem;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  text-wrap: pretty;
}

.button-link {
  min-width: 14rem;
  background: var(--ink);
}

.service-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.service-image img {
  width: 100%;
  height: calc(100% - 3rem);
  object-fit: cover;
  object-position: 52% center;
  transition: transform 900ms var(--ease-out);
}

.service-image:hover img {
  transform: scale(1.018);
}

.service-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.how {
  padding: 2.2rem var(--page-x) var(--page-x);
  background: var(--navy);
  color: var(--white);
}

.how-header {
  padding: 0 0 5vw;
}

.how h2 {
  max-width: 9ch;
  color: var(--white);
}

.steps-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.steps-list li {
  display: grid;
  grid-template-columns: 4rem minmax(14rem, 1fr) minmax(20rem, 1fr);
  gap: 2rem;
  align-items: baseline;
  padding: 1.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition:
    padding-left var(--default) var(--ease-out),
    color var(--default) var(--ease-out);
}

.steps-list li:hover {
  padding-left: 1rem;
  color: var(--yellow);
}

.steps-list > li > span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.steps-list h3 {
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.steps-list p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
}

.app-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 100svh;
  background: var(--paper);
}

.app-media {
  position: relative;
  min-height: 52rem;
  overflow: hidden;
}

.app-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(4.5rem, 7vw, 8rem) var(--page-x);
}

.app-copy h2 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
}

.app-copy > p {
  max-width: 32rem;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  text-wrap: pretty;
}

.phone {
  width: min(100%, 22rem);
  margin-top: auto;
  padding: 1rem;
  border: 0.5rem solid var(--ink);
  border-radius: 2.2rem;
  background: var(--white);
  box-shadow: 0 2rem 4rem rgba(7, 29, 62, 0.2);
}

.phone-bar,
.phone-title,
.phone-arrival {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.phone-bar {
  padding: 0.1rem 0.45rem 1.2rem;
  font-size: 0.58rem;
  font-weight: 700;
}

.phone-title {
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.4rem;
}

.phone-title span,
.phone-arrival span {
  color: rgba(10, 12, 16, 0.57);
  font-size: 0.68rem;
}

.phone-title strong {
  font-size: 1.5rem;
  line-height: 1;
}

.phone-route {
  position: relative;
  height: 9.5rem;
  margin: 1rem 0;
  overflow: hidden;
  border-radius: 1.1rem;
  background:
    linear-gradient(31deg, transparent 44%, rgba(8, 47, 100, 0.1) 45% 47%, transparent 48%),
    linear-gradient(-34deg, transparent 50%, rgba(8, 47, 100, 0.08) 51% 53%, transparent 54%),
    #e8f4f5;
}

.phone-pin,
.phone-destination {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 800;
  transform: rotate(-45deg);
}

.phone-pin {
  top: 1.4rem;
  left: 2.1rem;
  background: var(--red);
}

.phone-destination {
  right: 2rem;
  bottom: 1.25rem;
  background: var(--navy);
}

.phone-pin::first-line,
.phone-destination::first-line {
  transform: rotate(45deg);
}

.phone-path {
  position: absolute;
  top: 4.2rem;
  right: 3.2rem;
  left: 3.2rem;
  height: 2.6rem;
  border-top: 3px dashed var(--yellow);
  border-radius: 50%;
  transform: rotate(10deg);
}

.phone-arrival {
  align-items: flex-end;
  padding: 0.2rem 0.4rem 1.2rem;
}

.phone-arrival strong {
  max-width: 9rem;
  font-size: 0.74rem;
  text-align: right;
}

.phone button {
  display: flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color var(--fast) var(--ease-out),
    transform 90ms var(--ease-out);
}

.phone button:hover {
  background: var(--red);
}

.phone button:active {
  transform: scale(0.98);
}

.order-demo {
  padding: clamp(5rem, 8vw, 9rem) var(--page-x);
  background: var(--paper);
}

.order-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.65fr);
  gap: 7vw;
  align-items: end;
}

.order-intro .section-tag {
  grid-column: 1 / -1;
}

.order-intro h2 {
  margin-top: 4rem;
  font-size: clamp(4rem, 8vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.order-intro h2 span {
  color: var(--cyan);
}

.order-intro > p {
  max-width: 31rem;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  text-wrap: pretty;
}

.order-stepper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: 0;
  border-top: 1px solid var(--line);
}

.order-stepper li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 0;
  color: rgba(10, 12, 16, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--default) var(--ease-out);
}

.order-stepper li:nth-child(2) {
  justify-content: center;
}

.order-stepper li:nth-child(3) {
  justify-content: flex-end;
}

.order-stepper li.is-active {
  color: var(--ink);
}

.order-stepper span {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-variant-numeric: tabular-nums;
}

.order-experience {
  margin-top: 0;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--navy-deep);
  color: var(--white);
}

.order-panel fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.order-panel legend,
.destination-field label {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-panel legend span,
.destination-field label span {
  color: var(--yellow);
}

.product-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.product-option {
  position: relative;
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition:
    background-color var(--default) var(--ease-out),
    color var(--default) var(--ease-out);
}

.product-option:last-child {
  border-right: 0;
}

.product-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.product-option:has(input:checked) {
  background: var(--yellow);
  color: var(--ink);
}

.product-option:focus-within {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.product-code {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.product-name {
  margin-top: auto;
  padding-top: 2rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-option strong {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.destination-field select {
  width: 100%;
  padding: 1rem 2.5rem 1rem 0;
  border: 0;
  border-bottom: 2px solid var(--white);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
}

.destination-field select:focus-visible {
  border-color: var(--yellow);
}

.destination-field select option {
  background: var(--navy-deep);
}

.destination-field p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.order-total {
  display: flex;
  grid-column: 2;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.order-total span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-total strong {
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
}

.confirm-order-button {
  display: flex;
  grid-column: 2;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color var(--fast) var(--ease-out),
    transform 90ms var(--ease-out);
}

.confirm-order-button:hover {
  background: var(--cyan);
}

.confirm-order-button:active {
  transform: scale(0.99);
}

.order-confirmation {
  background: var(--white);
}

.confirmation-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.3rem;
  align-items: center;
  padding: 1.35rem clamp(1.2rem, 3vw, 2.5rem);
  background: var(--red);
  color: var(--white);
}

.confirmation-check {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.4rem;
}

.confirmation-header > div > span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirmation-header h3 {
  margin-top: 0.15rem;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.confirmation-header > strong {
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(20rem, 0.65fr);
  min-height: 38rem;
}

.map-wrap {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: #e9ece9;
}

.pit-map {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.map-fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  padding: 2rem;
  background:
    linear-gradient(30deg, transparent 45%, rgba(8, 47, 100, 0.08) 46% 48%, transparent 49%),
    #eef2ef;
  text-align: center;
}

.map-fallback span {
  color: rgba(10, 12, 16, 0.6);
  font-size: 0.78rem;
}

.map-caption {
  position: absolute;
  z-index: 500;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(7, 29, 62, 0.92);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  pointer-events: none;
  text-transform: uppercase;
}

.delivery-summary {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
  background: var(--navy-deep);
  color: var(--white);
}

.delivery-status {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
}

.live-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0.4rem rgba(28, 177, 197, 0.15);
}

.delivery-progress {
  height: 3px;
  margin: 1.3rem 0 2.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.delivery-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--yellow);
  transition: width 160ms linear;
}

.delivery-summary dl {
  margin: 0;
}

.delivery-summary dl div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.delivery-summary dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.delivery-summary dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.replay-route,
.edit-order {
  min-height: 3.2rem;
  margin-top: auto;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.replay-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  color: var(--ink);
}

.edit-order {
  margin-top: 0.55rem;
  background: transparent;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.pit-map .leaflet-tile-pane {
  filter: saturate(0.32) contrast(0.88) brightness(1.06);
}

.pit-map .leaflet-control-zoom a {
  color: var(--navy-deep);
}

.pit-map .leaflet-control-attribution {
  margin-bottom: 4.3rem;
  font-size: 9px;
}

.route-truck-icon {
  border: 0;
  background: transparent;
}

.route-truck-icon img {
  width: 84px !important;
  max-width: 84px !important;
  height: auto !important;
  filter: drop-shadow(0 8px 7px rgba(7, 29, 62, 0.28));
  transform: translate(-24px, -22px);
}

.destination-map-marker,
.origin-map-marker {
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 5px 14px rgba(7, 29, 62, 0.28);
}

.destination-map-marker {
  width: 38px;
  height: 38px;
  background: var(--red);
}

.origin-map-marker {
  width: 28px;
  height: 28px;
  background: var(--navy-deep);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  gap: 8vw;
  align-items: end;
  min-height: 82svh;
  padding: clamp(5rem, 9vw, 10rem) var(--page-x);
  background: var(--yellow);
}

.request-copy h2 {
  margin-bottom: 1.8rem;
}

.request-copy p {
  max-width: 34rem;
  font-size: 1.1rem;
  text-wrap: pretty;
}

.request-form {
  padding-top: 1.3rem;
  border-top: 1px solid rgba(10, 12, 16, 0.4);
}

.request-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--ink);
}

.input-row input {
  min-width: 0;
  padding: 1rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  outline: none;
}

.input-row input::placeholder {
  color: rgba(10, 12, 16, 0.45);
}

.input-row:focus-within {
  border-color: var(--red);
}

.input-row button {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0 0.85rem 1rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.form-note,
.form-status {
  margin-top: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.form-status {
  min-height: 1em;
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  min-height: 70svh;
  padding: clamp(4rem, 7vw, 7rem) var(--page-x) 2rem;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.7fr;
  gap: 4rem;
}

.footer-brand {
  font-size: clamp(3.8rem, 8vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  margin-top: clamp(9rem, 20vw, 20rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom strong {
  font-size: clamp(1.5rem, 4vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.footer-bottom a {
  justify-self: end;
}

.demo-toast {
  position: fixed;
  z-index: 150;
  right: 1rem;
  bottom: 1rem;
  max-width: 20rem;
  padding: 0.95rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity var(--default) var(--ease-out),
    transform var(--default) var(--ease-out);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-h: 4.5rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-menu {
    position: fixed;
    z-index: -1;
    inset: var(--header-h) 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--page-x) 1.5rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity var(--default) var(--ease-out),
      transform var(--default) var(--ease-out);
  }

  .site-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-header.menu-open .site-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    justify-self: end;
    place-items: center;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 1.15rem;
    height: 1px;
    background: var(--ink);
    transition: transform var(--default) var(--ease-out);
  }

  .menu-toggle span:first-child {
    transform: translateY(-0.22rem);
  }

  .menu-toggle span:last-child {
    transform: translateY(0.22rem);
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto-aside {
    max-width: 34rem;
  }

  .service-proof,
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 48rem;
  }

  .app-media {
    min-height: 48rem;
  }

  .steps-list li {
    grid-template-columns: 3.2rem 0.8fr 1fr;
  }

  .request-section {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 0.7fr 0.7fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  :root {
    --page-x: 1rem;
    --header-h: 4.25rem;
  }

  body {
    font-size: 0.95rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 3.35rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 1rem;
  }

  .hero-kicker span:last-child {
    display: none;
  }

  .hero-title {
    padding: 3rem 0;
    font-size: clamp(3.35rem, 18vw, 5.2rem);
    line-height: 0.83;
  }

  .hero-line-two {
    align-self: flex-start;
    margin-left: 12vw;
  }

  .hero-line-three {
    margin-top: 0.06em;
  }

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

  .hero-footer p {
    max-width: 21rem;
    font-size: 0.95rem;
  }

  .manifesto {
    padding-top: 1.4rem;
    padding-bottom: 1rem;
  }

  .manifesto-grid {
    padding: 5rem 0 3.5rem;
  }

  .manifesto h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .manifesto-aside {
    gap: 1.75rem;
  }

  .mini-proof strong {
    max-width: 9rem;
    text-align: right;
  }

  .manifesto-image img {
    height: 115vw;
    object-position: 39% center;
  }

  .route-story {
    height: 235svh;
  }

  .route-stage {
    min-height: 39rem;
    padding-top: calc(var(--header-h) + 1rem);
  }

  .scroll-cue span:first-child {
    display: none;
  }

  .route-heading {
    top: 21%;
  }

  .route-heading h2 {
    margin-left: -0.06em;
    font-size: clamp(5rem, 26vw, 7rem);
    white-space: normal;
  }

  .route-track {
    bottom: 17%;
    height: 6rem;
  }

  .route-track-line {
    height: 4rem;
  }

  .road-dash {
    bottom: 1.9rem;
    width: 15vw;
  }

  .route-stops {
    bottom: calc(17% + 9.1rem);
  }

  .route-stops strong {
    max-width: 5rem;
    font-size: 0.72rem;
  }

  .route-stops li:nth-child(2) strong {
    text-align: center;
  }

  .route-stops li:nth-child(3) strong {
    text-align: right;
  }

  .vehicle-group {
    bottom: calc(17% + 0.85rem);
    width: 14.5rem;
  }

  .floating-cup {
    bottom: 76%;
    left: 50%;
    width: 3.2rem;
    height: 4.5rem;
  }

  .route-progress {
    bottom: 1.1rem;
  }

  .route-status {
    right: var(--page-x);
    bottom: 1.55rem;
    padding-left: 0.65rem;
  }

  .route-status strong {
    max-width: 10rem;
    text-align: right;
  }

  .service-copy {
    min-height: 85svh;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .service-copy h2,
  .how h2,
  .app-copy h2,
  .request-copy h2 {
    margin-top: 3rem;
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .service-image,
  .app-media {
    min-height: 85svh;
  }

  .service-image img {
    object-position: 48% center;
  }

  .how {
    padding-top: 1.4rem;
  }

  .how-header {
    padding-bottom: 3rem;
  }

  .steps-list li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.9rem 0.75rem;
    padding: 1.5rem 0;
  }

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

  .steps-list li:hover {
    padding-left: 0;
  }

  .app-media {
    min-height: 72svh;
  }

  .app-media > img {
    object-position: 58% center;
  }

  .app-copy {
    padding: 4.5rem var(--page-x) 5rem;
  }

  .phone {
    width: 100%;
    margin-top: 0;
  }

  .request-section {
    gap: 4rem;
    min-height: 100svh;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .input-row input {
    font-size: 1.1rem;
  }

  .input-row button span:first-child {
    display: none;
  }

  .site-footer {
    min-height: 100svh;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    font-size: 17vw;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 2rem 1rem;
    margin-top: 10rem;
  }

  .footer-bottom strong {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 12vw;
  }

  .footer-bottom a {
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .order-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .order-intro h2 {
    margin-top: 3rem;
  }

  .order-panel {
    grid-template-columns: 1fr;
  }

  .order-total,
  .confirm-order-button {
    grid-column: 1;
  }

  .delivery-layout {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .delivery-layout {
    min-height: 32rem;
  }

  .delivery-summary {
    min-height: 32rem;
  }
}

@media (max-width: 640px) {
  .vehicle-group {
    bottom: calc(17% - 0.35rem);
    width: 20rem;
  }

  .route-stops {
    bottom: calc(17% + 13.3rem);
  }

  .order-demo {
    padding: 4.5rem var(--page-x);
  }

  .order-intro h2 {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

  .order-stepper {
    margin-top: 3rem;
  }

  .order-stepper li {
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-start;
    font-size: 0.58rem;
  }

  .order-stepper li:nth-child(2) {
    align-items: center;
  }

  .order-stepper li:nth-child(3) {
    align-items: flex-end;
  }

  .order-panel {
    gap: 2.5rem;
    padding: 1rem;
  }

  .product-options {
    grid-template-columns: 1fr;
  }

  .product-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 5.8rem;
    border-right: 0;
  }

  .product-name,
  .product-option strong {
    margin: 0;
    padding: 0;
  }

  .product-name {
    font-size: 1.35rem;
  }

  .destination-field select {
    font-size: 1rem;
  }

  .confirmation-header {
    grid-template-columns: auto 1fr;
  }

  .confirmation-header > strong {
    grid-column: 2;
  }

  .map-wrap,
  .delivery-layout {
    min-height: 28rem;
  }

  .map-caption {
    flex-direction: column;
    gap: 0.2rem;
  }

  .delivery-summary {
    min-height: 34rem;
  }

  .delivery-summary dl div {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

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

  .hero-line,
  .vehicle-group,
  .floating-cup,
  [data-reveal] {
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1;
  }
}
