@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/inter-latin-variable.woff2") format("woff2");
}
:root {
  --ink: #061011;
  --deep: #03100f;
  --green: #15975f;
  --bright: #31b976;
  --mint: #e9f7f0;
  --paper: #f7f8f6;
  --muted: #66706c;
  --line: #dfe5e1;
  --logo: #49e3ae;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button[hidden] {
  display: none !important;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
h2 {
  font-size: 48px;
  font-weight: 700;
}
h3 {
  font-size: 20px;
  font-weight: 650;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: calc(100% - 112px);
  max-width: 1240px;
  margin-inline: auto;
}
.lucide {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
  stroke-width: 1.7;
}
.section-space {
  padding-block: 104px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--logo);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: white;
  padding: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--deep);
  color: white;
  border-bottom: 1px solid #ffffff16;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}
.brand-mark {
  width: 34px;
  height: 22px;
  flex-shrink: 0;
}
.brand-mark path {
  stroke: var(--logo);
  stroke-width: 112;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  color: #c3ceca;
}
.main-nav a {
  position: relative;
  padding-block: 10px;
  transition: color 0.2s;
}
.main-nav a::after {
  position: absolute;
  content: "";
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--logo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.main-nav a:hover {
  color: white;
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff29;
  border-radius: 50%;
  background: transparent;
  color: #c3ceca;
  transition: background 0.2s;
}
.icon-button:hover {
  background: #ffffff14;
}
.icon-button .lucide {
  width: 17px;
  height: 17px;
}
.login-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}
.login-link .lucide {
  width: 18px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 600px;
  height: calc(100svh - 156px);
  max-height: 820px;
  background: var(--deep);
  color: white;
}
.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  animation: hero-drift 22s ease-in-out infinite alternate;
  transform-origin: 72% 58%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(3, 16, 15, 0.89) 0%,
      rgba(3, 16, 15, 0.78) 29%,
      rgba(3, 16, 15, 0.21) 61%,
      rgba(3, 16, 15, 0.04) 100%
    ),
    linear-gradient(0deg, rgba(3, 16, 15, 0.62), transparent 28%);
}
.hero-inner {
  height: 100%;
  min-height: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 96px;
}
.hero-copy {
  max-width: 630px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bright);
  flex-shrink: 0;
}
.hero h1 {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1;
}
.hero-statement {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.12;
}
.hero-statement span {
  color: var(--logo);
}
.hero-description {
  max-width: 425px;
  font-size: 16px;
  line-height: 1.7;
  color: #d0dcd6;
  margin-top: 24px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button .lucide {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}
.button:hover .lucide {
  transform: translate(2px, -2px);
}
.button:hover {
  transform: translateY(-2px);
}
.button-bright {
  background: var(--logo);
  color: var(--deep);
}
.button-bright:hover {
  background: #73edc1;
  box-shadow: 0 6px 24px #03100f22;
}
.button-glass {
  background: #03100f35;
  border-color: #e9f7f065;
  color: white;
  backdrop-filter: blur(8px);
}
.button-glass:hover {
  background: #03100f70;
}
.button-dark {
  background: var(--deep);
  color: white;
}
.button-dark:hover {
  background: #11332c;
}
.button-outline {
  border-color: #ffffff4a;
  color: white;
}
.button-outline:hover {
  background: #ffffff10;
}
.hero-note {
  font-size: 11px;
  color: #bacbc2;
  margin-top: 16px;
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #d3dfd8;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-bottom a .lucide {
  width: 16px;
}
.hero-bottom > span {
  max-width: 260px;
  text-align: right;
}
.benefit-strip {
  background: var(--mint);
  border-bottom: 1px solid #dceae2;
}
.benefits {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.benefits > span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}
.benefits .lucide {
  color: var(--green);
  width: 21px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 44px;
}
.section-heading > p {
  max-width: 345px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 4px;
}
.journey-map {
  position: relative;
  min-height: 330px;
  background: var(--mint);
  overflow: hidden;
  border-radius: 8px;
  background-image:
    linear-gradient(#15975f05 1px, transparent 1px),
    linear-gradient(90deg, #15975f05 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-top {
  position: absolute;
  top: 23px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}
.map-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}
.map-top .status-dot {
  width: 5px;
  height: 5px;
}
.route-scene {
  position: absolute;
  bottom: 4px;
  width: 100%;
  height: 270px;
  overflow: visible;
}
.map-street {
  stroke: #d6e7dc;
  stroke-width: 9;
}
.road-edge {
  stroke: #c4d9cd;
  stroke-width: 58;
}
.road-surface {
  stroke: var(--paper);
  stroke-width: 56;
}
.road-dashes {
  stroke: #b9cfc1;
  stroke-width: 2;
  stroke-dasharray: 7 10;
}
.route-trail {
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 100;
  stroke-dashoffset: 92;
}
#journey-car {
  filter: drop-shadow(0 6px 5px #03100f30);
}
.map-place {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.map-place > .lucide {
  width: 34px;
  height: 34px;
  stroke-width: 1.1;
  color: var(--green);
}
.map-place strong,
.map-place small {
  display: block;
}
.map-place strong {
  font-size: 12px;
}
.map-place small {
  font-size: 10px;
  color: var(--muted);
}
.pickup-place {
  left: 7%;
}
.delivery-place {
  right: 7%;
}
.map-status {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--green);
  white-space: nowrap;
}
.map-status .lucide {
  width: 15px;
  height: 15px;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.journey-step {
  appearance: none;
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--line);
  color: var(--ink);
  padding: 22px 0 0;
  transition: border-color 0.2s;
}
.journey-step.is-active {
  border-color: var(--green);
}
.step-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
}
.journey-step.is-active .step-meta {
  color: var(--green);
}
.journey-step h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.journey-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.journey-step:hover {
  border-color: var(--green);
}
.dealer-section {
  background: white;
  border-top: 1px solid var(--line);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.section-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 24px;
  max-width: 480px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 23px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.feature-list li > .lucide {
  color: var(--green);
  margin-top: 2px;
  width: 22px;
}
.feature-list strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 650;
  margin-bottom: 3px;
}
.workspace-wrap {
  padding: 15px 8px;
}
.workspace {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 26px 70px #03100f10;
  transform: rotate(-2deg);
  overflow: hidden;
}
.workspace-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 24px;
  border-bottom: 1px solid var(--line);
  background: white;
  font-size: 12px;
}
.workspace-top > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.workspace-top .lucide {
  width: 17px;
  color: var(--green);
}
.workspace-top small {
  font-size: 10px;
  color: var(--muted);
}
.workspace-heading {
  padding: 30px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.workspace-heading .eyebrow {
  font-size: 9px;
  margin-bottom: 10px;
}
.workspace-heading h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}
.workspace-heading > .lucide {
  width: 70px;
  height: 70px;
  stroke-width: 0.8;
  color: var(--green);
}
.sample-run {
  background: white;
  border-block: 1px solid var(--line);
  padding: 22px 26px;
}
.sample-run-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
}
.sample-run-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sample-run-top .lucide {
  width: 17px;
}
.status-pill {
  background: var(--mint);
  color: #107348;
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 9px;
  white-space: nowrap;
}
.sample-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}
.sample-route small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 3px;
}
.sample-route strong {
  font-size: 19px;
  font-weight: 600;
}
.sample-route > .lucide {
  color: var(--green);
  width: 20px;
}
.sample-progress {
  display: flex;
  gap: 5px;
  margin-top: 24px;
}
.sample-progress > span {
  height: 3px;
  background: var(--line);
  flex: 1;
}
.sample-progress .complete {
  background: var(--green);
}
.sample-progress .current {
  background: var(--bright);
  animation: progress-pulse 3s ease-in-out infinite;
}
.sample-progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 8px;
  color: var(--muted);
  margin-top: 7px;
}
.workspace-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 26px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.workspace-row .lucide {
  width: 17px;
  height: 17px;
  color: var(--green);
}
.workspace-row .lucide:last-child {
  margin-left: auto;
  width: 15px;
}
.workspace-footer {
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
}
.workspace-footer .status-dot {
  width: 5px;
  height: 5px;
}
.workspace-caption {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 27px;
}
.driver-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
  color: white;
}
.driver-photo {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.driver-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #03100fbd, transparent 55%);
}
.driver-photo > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 82% center;
}
.driver-photo-caption {
  position: absolute;
  z-index: 1;
  left: 56px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #ccd9d3;
}
.driver-photo-caption .lucide {
  color: var(--logo);
  width: 32px;
  height: 32px;
}
.driver-photo-caption strong {
  color: white;
  font-size: 20px;
  font-weight: 600;
}
.driver-copy {
  padding: 88px 68px;
  max-width: 688px;
}
.driver-copy h2 span {
  color: var(--logo);
}
.driver-copy .section-intro,
.driver-copy .feature-list li {
  color: #aebfb6;
}
.driver-copy .feature-list strong {
  color: white;
}
.driver-copy .feature-list .lucide {
  color: var(--logo);
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  padding-top: 12px;
}
.confidence-grid > div {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.confidence-grid .lucide {
  color: var(--green);
  width: 29px;
  height: 29px;
  margin-bottom: 24px;
  stroke-width: 1.4;
}
.confidence-grid h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.confidence-grid p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.about-band {
  background: var(--mint);
  border-block: 1px solid #dceae2;
  padding-block: 78px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 90px;
}
.about-inner .eyebrow {
  grid-column: 1/-1;
}
.about-inner h2 {
  font-size: 34px;
  line-height: 1.25;
  grid-row: 2/4;
}
.about-inner > p:not(.eyebrow) {
  font-size: 14px;
  color: #53665b;
  line-height: 1.9;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 25px;
  width: fit-content;
  border-bottom: 1px solid var(--green);
  padding-bottom: 6px;
}
.text-link .lucide {
  width: 17px;
  color: var(--green);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 24px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .lucide {
  width: 19px;
  height: 19px;
  color: var(--green);
  transition: transform 0.2s;
}
.faq-list details[open] summary .lucide {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 32px 24px 0;
}
.final-cta {
  background: var(--deep);
  color: white;
  overflow: hidden;
  padding-top: 86px;
}
.final-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.final-heading h2 {
  font-size: 104px;
  line-height: 1.02;
  font-weight: 600;
}
.final-heading h2 span {
  color: var(--logo);
}
.final-heading > .lucide {
  width: 175px;
  height: 175px;
  stroke-width: 1;
  color: var(--logo);
  margin-right: 60px;
}
.final-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid #ffffff20;
}
.final-actions > p {
  font-size: 14px;
  color: #b8c9c0;
}
.final-actions > div {
  display: flex;
  gap: 12px;
}
.footer-road {
  position: relative;
  height: 85px;
  margin-top: 45px;
  border-bottom: 1px dashed #49e3ae40;
}
.road-vehicle {
  position: absolute;
  left: -60px;
  bottom: 8px;
  color: var(--logo);
  animation: road-drive 22s linear infinite;
}
.road-vehicle .lucide {
  width: 40px;
  height: 30px;
  stroke-width: 1.3;
}
.road-vehicle.second {
  animation-delay: -12s;
  color: #bdd8c9;
  animation-duration: 30s;
}
.site-footer {
  background: var(--deep);
  color: #aebeb5;
  padding: 40px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-top .brand {
  color: white;
}
.footer-top > a:not(.brand):not(.back-top) {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.footer-top .lucide {
  width: 18px;
}
.back-top {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff26;
  border-radius: 50%;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  max-width: 980px;
  font-size: 10px;
}
.legal-links a:hover,
.footer-top a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #ffffff16;
  padding-top: 22px;
  margin-top: 30px;
  font-size: 10px;
  color: #82978b;
}
body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes hero-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}
@keyframes progress-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes road-drive {
  from {
    left: -60px;
  }
  to {
    left: calc(100% + 20px);
  }
}
@media (min-width: 1600px) {
  .hero-image {
    object-position: center 58%;
  }
  .hero-shade {
    background:
      linear-gradient(
        90deg,
        #03100fed 0%,
        #03100fc7 25%,
        #03100f20 57%,
        transparent 100%
      ),
      linear-gradient(0deg, #03100f88, transparent 28%);
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .main-nav {
    gap: 20px;
    font-size: 12px;
  }
  .header-inner {
    gap: 20px;
  }
  .brand {
    font-size: 23px;
  }
  .header-actions {
    gap: 12px;
  }
  .audience-grid {
    gap: 55px;
  }
  .driver-copy {
    padding: 70px 40px;
  }
  .driver-photo {
    min-height: 680px;
  }
  .driver-copy h2 {
    font-size: 39px;
  }
  .faq-layout {
    gap: 65px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero-statement {
    font-size: 36px;
  }
  .hero-description {
    max-width: 350px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .benefits {
    gap: 12px;
  }
  .benefits > span {
    font-size: 11px;
    gap: 8px;
  }
  .about-inner {
    column-gap: 45px;
  }
  .final-heading h2 {
    font-size: 90px;
  }
}
@media (max-width: 850px) {
  .site-header {
    height: 72px;
  }
  .main-nav {
    gap: 14px;
  }
  .main-nav a {
    font-size: 11px;
  }
  .header-actions {
    gap: 10px;
  }
  .brand {
    font-size: 21px;
  }
  .brand-mark {
    width: 30px;
    height: 20px;
  }
  .header-inner {
    gap: 12px;
  }
  .login-link {
    font-size: 12px;
    gap: 4px;
  }
  .motion-toggle {
    width: 34px;
    height: 34px;
  }
  .hero {
    min-height: 580px;
    max-height: 720px;
  }
  .hero-image {
    object-position: 76% center;
  }
  .hero-copy {
    max-width: 450px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero-statement {
    font-size: 34px;
  }
  .hero-description {
    max-width: 330px;
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-bottom > span {
    max-width: 190px;
  }
  .section-space {
    padding-block: 76px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 30px;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .section-heading > p {
    max-width: 270px;
    font-size: 13px;
  }
  .journey-steps {
    gap: 18px;
  }
  .journey-step h3 {
    font-size: 15px;
  }
  .journey-step p {
    font-size: 11px;
  }
  .audience-grid {
    gap: 35px;
  }
  h2 {
    font-size: 36px;
  }
  .section-intro {
    font-size: 13px;
  }
  .feature-list li {
    font-size: 12px;
  }
  .feature-list strong {
    font-size: 13px;
  }
  .workspace-heading {
    padding: 23px 18px;
  }
  .workspace-heading h3 {
    font-size: 21px;
  }
  .workspace-heading > .lucide {
    width: 50px;
    height: 50px;
  }
  .workspace-top,
  .sample-run {
    padding: 18px;
  }
  .sample-route strong {
    font-size: 16px;
  }
  .workspace-row {
    margin-inline: 18px;
  }
  .sample-run-top {
    font-size: 9px;
  }
  .workspace-footer {
    font-size: 8px;
    padding-inline: 18px;
  }
  .workspace-caption {
    font-size: 8px;
  }
  .driver-copy {
    padding: 58px 32px;
  }
  .driver-copy h2 {
    font-size: 34px;
  }
  .driver-photo {
    min-height: 670px;
  }
  .driver-photo-caption {
    left: 30px;
    bottom: 36px;
  }
  .driver-photo-caption strong {
    font-size: 16px;
  }
  .confidence-grid {
    gap: 24px;
  }
  .confidence-grid h3 {
    font-size: 15px;
  }
  .confidence-grid p {
    font-size: 12px;
  }
  .about-inner h2 {
    font-size: 29px;
  }
  .about-inner > p:not(.eyebrow) {
    font-size: 12px;
  }
  .faq-layout {
    gap: 40px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .final-heading h2 {
    font-size: 80px;
  }
  .final-heading > .lucide {
    width: 130px;
    height: 130px;
    margin-right: 0;
  }
  .final-actions > p {
    max-width: 210px;
    font-size: 12px;
  }
  .final-actions .button {
    padding: 12px 16px;
    gap: 20px;
    font-size: 12px;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 90px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 68px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-mark {
    width: 30px;
    height: 20px;
  }
  .header-actions {
    gap: 9px;
  }
  .login-link {
    font-size: 12px;
  }
  .login-link .lucide {
    width: 15px;
  }
  .motion-toggle {
    width: 32px;
    height: 32px;
  }
  .icon-button.menu-toggle {
    display: grid;
    width: 32px;
    height: 32px;
    border: 0;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--deep);
    padding: 15px 24px 24px;
    gap: 0;
    border-top: 1px solid #ffffff20;
    box-shadow: 0 20px 30px #03100f25;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #ffffff15;
  }
  .main-nav a::after {
    display: none;
  }
  .hero {
    height: calc(100svh - 118px);
    min-height: 610px;
    max-height: 710px;
  }
  .hero-inner {
    justify-content: flex-start;
    padding-top: 38px;
    padding-bottom: 60px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero .eyebrow {
    margin-bottom: 19px;
    font-size: 9px;
  }
  .hero h1 {
    font-size: 56px;
    margin-bottom: 17px;
  }
  .hero-statement {
    font-size: 30px;
    line-height: 1.15;
  }
  .hero-description {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 17px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 23px;
  }
  .hero-actions .button {
    font-size: 12px;
    min-height: 48px;
    gap: 22px;
    padding: 12px 17px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 13px;
  }
  .hero-image {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 355px;
    object-position: 86% center;
    transform-origin: 80% 70%;
    mask-image: linear-gradient(to bottom, transparent, black 30%);
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #03100ff2 0%,
      #03100fe8 30%,
      #03100fc2 45%,
      #03100f00 73%,
      #03100f9c 100%
    );
  }
  .hero-bottom {
    bottom: 18px;
    font-size: 10px;
  }
  .hero-bottom > span {
    display: none;
  }
  .benefits {
    min-height: 92px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
    padding-block: 17px;
  }
  .benefits > span {
    font-size: 10px;
    gap: 8px;
  }
  .benefits .lucide {
    width: 17px;
    height: 17px;
  }
  .section-space {
    padding-block: 58px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 36px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 13px;
  }
  .journey-map {
    min-height: 260px;
  }
  .map-top {
    top: 18px;
    left: 16px;
    right: 16px;
    font-size: 8px;
  }
  .route-scene {
    height: 145px;
    bottom: 54px;
  }
  .map-place {
    bottom: 17px;
    gap: 6px;
  }
  .map-place > .lucide {
    width: 24px;
    height: 24px;
  }
  .map-place strong {
    font-size: 9px;
  }
  .map-place small {
    font-size: 8px;
  }
  .pickup-place {
    left: 17px;
  }
  .delivery-place {
    right: 17px;
  }
  .map-status {
    bottom: 69px;
    font-size: 8px;
    gap: 5px;
  }
  .map-status .lucide {
    width: 12px;
    height: 12px;
  }
  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 20px;
    margin-top: 25px;
  }
  .journey-step {
    padding-top: 15px;
  }
  .step-meta {
    font-size: 10px;
    margin-bottom: 13px;
  }
  .step-meta .lucide {
    width: 19px;
    height: 19px;
  }
  .journey-step h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .journey-step p {
    font-size: 11px;
    line-height: 1.75;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .section-intro {
    font-size: 14px;
    margin-top: 20px;
  }
  .feature-list {
    margin-block: 26px;
    gap: 21px;
  }
  .feature-list li {
    font-size: 12px;
  }
  .feature-list strong {
    font-size: 13px;
  }
  .audience-copy .button,
  .driver-copy .button {
    font-size: 13px;
    min-height: 50px;
  }
  .workspace-wrap {
    padding: 8px 9px;
  }
  .workspace {
    max-width: 420px;
    margin-inline: auto;
  }
  .workspace-top {
    padding: 18px 22px;
    font-size: 11px;
  }
  .workspace-heading {
    padding: 24px 22px;
  }
  .workspace-heading h3 {
    font-size: 25px;
  }
  .workspace-heading > .lucide {
    width: 62px;
    height: 62px;
  }
  .sample-run {
    padding: 20px 22px;
  }
  .sample-run-top {
    font-size: 10px;
  }
  .sample-route strong {
    font-size: 18px;
  }
  .workspace-row {
    margin-inline: 22px;
  }
  .workspace-footer {
    font-size: 9px;
    padding-inline: 22px;
  }
  .workspace-caption {
    font-size: 9px;
  }
  .driver-section {
    grid-template-columns: 1fr;
  }
  .driver-photo {
    min-height: 310px;
    order: 2;
  }
  .driver-photo > img {
    object-position: 80% center;
  }
  .driver-copy {
    padding: 58px 24px;
    max-width: none;
  }
  .driver-copy h2 {
    font-size: 36px;
  }
  .driver-photo-caption {
    left: 24px;
    bottom: 24px;
    font-size: 12px;
  }
  .driver-photo-caption strong {
    font-size: 18px;
  }
  .confidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    padding-top: 0;
  }
  .confidence-grid > div {
    padding-top: 20px;
  }
  .confidence-grid .lucide {
    width: 26px;
    height: 26px;
    margin-bottom: 17px;
  }
  .confidence-grid h3 {
    font-size: 14px;
  }
  .confidence-grid p {
    font-size: 12px;
  }
  .about-band {
    padding-block: 50px;
  }
  .about-inner {
    display: block;
  }
  .about-inner h2 {
    font-size: 30px;
    line-height: 1.25;
  }
  .about-inner > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 22px;
  }
  .text-link {
    font-size: 12px;
  }
  .faq-layout {
    display: block;
  }
  .faq-list {
    margin-top: 35px;
  }
  .faq-list summary {
    padding-block: 21px;
    font-size: 13px;
  }
  .faq-list details p {
    font-size: 12px;
    padding-right: 18px;
  }
  .final-cta {
    padding-top: 56px;
  }
  .final-heading h2 {
    font-size: 65px;
  }
  .final-heading > .lucide {
    width: 84px;
    height: 84px;
    align-self: flex-end;
    margin-bottom: 6px;
  }
  .final-actions {
    display: block;
    margin-top: 30px;
    padding-top: 24px;
  }
  .final-actions > p {
    max-width: none;
    font-size: 12px;
  }
  .final-actions > div {
    margin-top: 22px;
    gap: 10px;
  }
  .final-actions .button {
    flex: 1;
    min-height: 49px;
    font-size: 12px;
    padding: 12px 16px;
    gap: 12px;
  }
  .footer-road {
    height: 64px;
    margin-top: 24px;
  }
  .site-footer {
    padding-block: 30px 24px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-top .brand {
    font-size: 23px;
    order: 1;
  }
  .footer-top .back-top {
    order: 2;
    margin-left: auto;
    width: 34px;
    height: 34px;
  }
  .footer-top > a:not(.brand):not(.back-top) {
    margin-left: 0;
    order: 3;
    width: 100%;
    font-size: 12px;
  }
  .legal-links {
    gap: 12px 20px;
    font-size: 9px;
    margin-top: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 9px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
}
@media (max-width: 370px) {
  .shell {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 18px;
    gap: 8px;
  }
  .brand-mark {
    width: 24px;
  }
  .header-actions {
    gap: 4px;
  }
  .header-actions .icon-button {
    width: 28px;
    height: 28px;
  }
  .login-link {
    font-size: 11px;
  }
  .login-link .lucide {
    display: none;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-statement {
    font-size: 28px;
  }
  .hero-actions .button {
    gap: 14px;
    padding-inline: 14px;
  }
  .hero-description {
    max-width: 290px;
  }
  .final-heading h2 {
    font-size: 57px;
  }
  .final-heading > .lucide {
    width: 64px;
  }
  .benefits > span {
    font-size: 9px;
  }
  .journey-step h3 {
    font-size: 13px;
  }
}
@media (max-width: 650px) and (max-height: 740px) {
  .hero {
    min-height: 520px;
    height: calc(100svh - 110px);
  }
  .hero-inner {
    padding-top: 26px;
  }
  .hero h1 {
    font-size: 48px;
    margin-bottom: 13px;
  }
  .hero-statement {
    font-size: 26px;
  }
  .hero .eyebrow {
    margin-bottom: 15px;
  }
  .hero-description {
    font-size: 12px;
    margin-top: 14px;
  }
  .hero-actions {
    margin-top: 18px;
  }
  .hero-image {
    height: 290px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
