:root {
  --bg: #f4f0e7;
  --bg-elevated: #fbf7ee;
  --section: #e7dfd0;
  --surface: rgba(255, 252, 244, 0.92);
  --surface-solid: #fffaf0;
  --ink: #181714;
  --muted: #665f53;
  --line: rgba(64, 53, 38, 0.18);
  --primary: #bf3b22;
  --primary-dark: #922613;
  --accent: #0f6b63;
  --accent-strong: #0a4e48;
  --warning: #d99a22;
  --dark: #111717;
  --white: #fffaf0;
  --glass: rgba(255, 250, 240, 0.62);
  --glass-line: rgba(255, 255, 255, 0.52);
  --header-bg: rgba(244, 240, 231, 0.78);
  --shadow: 0 8px 26px rgba(32, 27, 20, 0.12);
  --soft-shadow: 0 2px 10px rgba(32, 27, 20, 0.1);
  --route-grid: rgba(15, 107, 99, 0.18);
  --field-bg: #fffefa;
  --field-border: rgba(64, 53, 38, 0.26);
  --brand-mark-bg: #111717;
  --brand-mark-text: #fffaf0;
  --road: #222826;
  --road-line: rgba(244, 184, 66, 0.75);
  --radius: 8px;
  --radius-large: 12px;
  --max: 1180px;
  color-scheme: light dark;
}

html[data-theme="dark"] {
  --bg: #101414;
  --bg-elevated: #161d1d;
  --section: #182221;
  --surface: rgba(25, 32, 31, 0.84);
  --surface-solid: #1c2524;
  --ink: #f4efe5;
  --muted: #bbb1a1;
  --line: rgba(244, 239, 229, 0.16);
  --primary: #ff744f;
  --primary-dark: #d94e2d;
  --accent: #58d1c4;
  --accent-strong: #a0efe5;
  --warning: #f0b64a;
  --dark: #090c0c;
  --white: #fff7e8;
  --glass: rgba(28, 37, 36, 0.56);
  --glass-line: rgba(255, 255, 255, 0.16);
  --header-bg: rgba(16, 20, 20, 0.78);
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  --soft-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
  --route-grid: rgba(88, 209, 196, 0.18);
  --field-bg: #111818;
  --field-border: rgba(244, 239, 229, 0.22);
  --brand-mark-bg: #fff7e8;
  --brand-mark-text: #101414;
  --road: #0b0f0f;
  --road-line: rgba(240, 182, 74, 0.82);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  transition: background 180ms ease, color 180ms ease;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--surface-solid);
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--brand-mark-bg);
  color: var(--brand-mark-text);
  border-radius: var(--radius);
  font-weight: 700;
}

.brand strong,
.brand span span {
  display: block;
}

.brand span span {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--ink);
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: var(--primary);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  backdrop-filter: blur(12px) saturate(135%);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--primary);
}

.theme-toggle svg {
  width: 19px;
  height: 19px;
}

.theme-icon-dark,
html[data-theme="dark"] .theme-icon-light {
  display: none;
}

html[data-theme="dark"] .theme-icon-dark {
  display: block;
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(13, 15, 15, 0.9) 0%, rgba(13, 15, 15, 0.62) 48%, rgba(13, 15, 15, 0.08) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
  color: var(--white);
}

.availability,
.section-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 820px;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #eee7dc;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  padding: 12px 18px;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--primary);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.55);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.trust-line {
  margin: 18px 0 0;
  color: #d7d0c5;
}

.hero-board {
  align-self: end;
  margin-bottom: 14px;
  padding: 18px;
  color: var(--white);
  background: rgba(17, 23, 23, 0.64);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.board-top,
.board-route,
.board-metrics,
.board-note {
  display: flex;
  align-items: center;
}

.board-top,
.board-metrics {
  justify-content: space-between;
}

.board-top {
  color: rgba(255, 250, 240, 0.68);
}

.board-top strong {
  color: var(--warning);
}

.board-route {
  gap: 14px;
  margin-top: 22px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.board-route svg {
  width: 24px;
  height: 24px;
  color: var(--warning);
}

.board-metrics {
  gap: 12px;
  margin-top: 24px;
}

.board-metrics div {
  flex: 1;
  padding: 14px;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: var(--radius);
}

.board-metrics strong,
.board-metrics span {
  display: block;
}

.board-metrics strong {
  font-size: 24px;
}

.board-metrics span,
.board-note span {
  color: rgba(255, 250, 240, 0.72);
}

.board-note {
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 250, 240, 0.16);
}

.board-note svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--warning);
}

.lane-ticker {
  overflow: hidden;
  background: var(--road);
  color: var(--white);
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerMove 28s linear infinite;
}

.ticker-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 34px;
  color: rgba(255, 250, 240, 0.84);
  font-weight: 700;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  width: 34px;
  height: 3px;
  margin-right: 24px;
  background: var(--road-line);
}

.quick-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.quick-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item > span:first-child {
  display: block;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.quick-item > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.split-section,
.support-section,
.route-section,
.apply-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.section h2 {
  font-size: clamp(32px, 4.2vw, 54px);
}

.section-copy p:not(.section-kicker),
.section-heading p,
.route-copy p,
.apply-copy p {
  color: var(--muted);
  max-width: 640px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}

.pay-board {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.pay-row {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.pay-row:last-child {
  border-bottom: 0;
}

.pay-row strong,
.pay-row span {
  display: block;
}

.pay-row strong {
  font-size: 28px;
  line-height: 1.1;
}

.pay-row span {
  margin-top: 6px;
  color: #d7d0c5;
}

.pay-row svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--warning);
}

.dispatch-board-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
  padding-top: 24px;
}

.dispatch-copy p {
  color: var(--muted);
  max-width: 560px;
}

.dispatch-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.dispatch-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.dispatch-row:last-child {
  border-bottom: 0;
}

.dispatch-head {
  min-height: 48px;
  color: var(--muted);
  font-weight: 700;
  background: rgba(15, 107, 99, 0.08);
}

.dispatch-row strong {
  font-size: 20px;
}

.dispatch-row span {
  color: var(--muted);
}

.dispatch-row mark {
  justify-self: start;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(191, 59, 34, 0.12);
  color: var(--primary);
  font-weight: 700;
}

.support-section {
  width: 100%;
  max-width: none;
  padding: 104px max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 59, 34, 0.16), transparent 28%),
    linear-gradient(135deg, var(--section), var(--bg-elevated));
}

.support-visual {
  position: relative;
  min-height: 660px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.support-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.54));
  z-index: 1;
}

.support-visual img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  transform: scale(1.03);
  animation: imageFloat 16s ease-in-out infinite alternate;
}

.support-copy {
  min-width: 0;
}

.support-copy .section-copy p:not(.section-kicker) {
  font-size: 18px;
}

.support-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.support-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-large);
  box-shadow: var(--soft-shadow);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.support-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(15, 107, 99, 0.12);
  color: var(--accent-strong);
}

.support-icon svg {
  width: 25px;
  height: 25px;
}

.support-item h3 {
  margin: 0 0 6px;
  line-height: 1.2;
}

.support-item p {
  margin: 0;
  color: var(--muted);
}

.glass-card {
  position: absolute;
  z-index: 2;
  width: min(290px, calc(100% - 32px));
  padding: 18px;
  background: rgba(17, 23, 23, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-large);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.glass-card svg {
  width: 24px;
  height: 24px;
  color: var(--warning);
}

.glass-card strong,
.glass-card span {
  display: block;
}

.glass-card strong {
  margin-top: 14px;
  font-size: 18px;
}

.glass-card span {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.76);
}

.dispatch-card {
  left: 24px;
  bottom: 24px;
}

.safety-card {
  right: 24px;
  top: 24px;
}

.process-step,
.application-form,
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.role-card h3,
.process-step h3 {
  margin: 16px 0 8px;
  line-height: 1.2;
}

.role-card p,
.role-card li,
.process-step p,
details p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.role-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  overflow: hidden;
}

.role-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.role-card div {
  padding: 22px;
}

.role-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.route-section {
  padding-top: 28px;
}

.route-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(var(--surface), var(--surface)),
    repeating-linear-gradient(0deg, transparent 0, transparent 47px, var(--route-grid) 48px),
    repeating-linear-gradient(90deg, transparent 0, transparent 47px, var(--route-grid) 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.route-line {
  position: absolute;
  left: 14%;
  right: 18%;
  top: 48%;
  height: 3px;
  background: var(--primary);
}

.route-line::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink);
  animation: driveRoute 4s linear infinite;
}

.route-stop {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  background: var(--surface);
}

.route-stop span {
  position: absolute;
  left: 50%;
  top: 24px;
  width: max-content;
  transform: translateX(-50%);
  color: var(--ink);
  font-weight: 700;
}

.stop-a {
  left: 13%;
  top: calc(48% - 8px);
}

.stop-b {
  left: 48%;
  top: calc(48% - 8px);
}

.stop-c {
  right: 17%;
  top: calc(48% - 8px);
}

.route-note {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: 310px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.route-note span,
.route-note strong {
  display: block;
}

.route-note span {
  margin-top: 6px;
  color: var(--muted);
}

.driver-quote-section {
  width: 100%;
  padding: 0 max(16px, calc((100vw - var(--max)) / 2)) 96px;
  background: var(--bg);
}

.quote-inner {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.quote-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.quote-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 12, 12, 0.88), rgba(9, 12, 12, 0.5) 52%, rgba(9, 12, 12, 0.08));
}

.quote-inner blockquote {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0;
  padding: 64px;
  color: var(--white);
}

.quote-inner p {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
}

.quote-inner footer {
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 700;
}

.process {
  padding-top: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  padding: 26px;
}

.process-step span {
  color: var(--primary);
  font-weight: 700;
}

.apply-section {
  width: 100%;
  max-width: none;
  padding: 88px max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 16% 18%, rgba(191, 59, 34, 0.18), transparent 28%),
    linear-gradient(135deg, var(--dark), #172120);
  color: var(--white);
}

.apply-copy p {
  color: #d7d0c5;
}

.contact-card {
  max-width: 360px;
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
}

.contact-card svg {
  color: var(--warning);
}

.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card a {
  color: #f4c764;
}

.application-form {
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 700;
}

label span {
  color: var(--primary);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
  background: var(--field-bg);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
summary:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.menu-button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(231, 169, 58, 0.75);
  outline-offset: 3px;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.faq {
  padding-top: 88px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 22px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 0 20px;
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.06) translateX(-18px);
  }
}

@keyframes imageFloat {
  from {
    transform: scale(1.03) translateY(0);
  }
  to {
    transform: scale(1.07) translateY(-14px);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes driveRoute {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 13px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: rgba(13, 15, 15, 0.72);
  }

  .quick-strip,
  .roles-grid,
  .process-list,
  .split-section,
  .dispatch-board-section,
  .support-section,
  .route-section,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .support-section {
    gap: 34px;
  }

  .support-visual,
  .support-visual img {
    min-height: 520px;
  }

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

  .hero-board {
    max-width: 520px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .nav {
    width: calc(100% - 24px);
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand span span {
    display: none;
  }

  .nav-links.is-open {
    top: 64px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding: 72px 0 52px;
    gap: 26px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .ticker-track span {
    min-height: 48px;
    padding: 0 22px;
  }

  .ticker-track span::before {
    width: 24px;
    margin-right: 16px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }

  .support-section,
  .apply-section {
    width: 100%;
    padding: 64px 14px;
  }

  .dispatch-row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 16px;
  }

  .dispatch-head {
    display: none;
  }

  .dispatch-row mark {
    margin-top: 6px;
  }

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

  .support-visual,
  .support-visual img {
    min-height: 430px;
  }

  .support-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .support-icon {
    width: 44px;
    height: 44px;
  }

  .glass-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 0 14px 12px;
  }

  .dispatch-card {
    margin-top: -146px;
  }

  .role-card img {
    height: 210px;
  }

  .pay-row {
    min-height: auto;
    padding: 22px;
  }

  .route-map {
    min-height: 360px;
  }

  .route-stop span {
    font-size: 13px;
  }

  .route-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .driver-quote-section {
    padding: 0 14px 64px;
  }

  .quote-inner {
    min-height: 440px;
  }

  .quote-inner blockquote {
    padding: 28px;
  }

  .application-form {
    padding: 20px;
  }

  .footer {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
  }
}
