:root {
  --road: #070b0c;
  --road-soft: #0d1314;
  --road-panel: #11191a;
  --road-panel-strong: #172021;
  --paper: #f2f0e8;
  --paper-soft: #c8cbc4;
  --muted: #899392;
  --line: rgba(237, 241, 232, 0.16);
  --line-strong: rgba(237, 241, 232, 0.32);
  --signal: #f2cc4d;
  --signal-dark: #171507;
  --online: #53d1c5;
  --danger: #ee6a55;
  --shell: min(1240px, calc(100% - 48px));
  color-scheme: dark;
  font-family: "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--road);
  color: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--signal);
  color: var(--signal-dark);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 14px;
  padding: 11px 15px;
  border: 1px solid var(--signal-dark);
  border-radius: 2px;
  background: var(--signal);
  color: var(--signal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 12, 0.42);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    height 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 68px;
  border-bottom-color: var(--line-strong);
  background: rgba(7, 11, 12, 0.94);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-grid;
  align-items: center;
  grid-template-columns: 34px auto;
  column-gap: 11px;
  min-height: 44px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  grid-row: 1 / 3;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  object-fit: cover;
}

.brand-name {
  align-self: end;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.brand-role {
  align-self: start;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.4;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--paper-soft);
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--paper);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(7, 11, 12, 0.7);
}

.language-switch button {
  min-width: 44px;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--paper-soft);
  cursor: pointer;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    background-color 140ms ease,
    color 140ms ease,
    transform 90ms ease-out;
}

.language-switch button + button {
  border-left: 1px solid var(--line-strong);
}

.language-switch button[aria-pressed="true"] {
  background: var(--signal);
  color: var(--signal-dark);
}

.language-switch button:active {
  transform: scale(0.96);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(7, 11, 12, 0.64);
  cursor: pointer;
}

.menu-button > span {
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] > span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 115;
  top: 68px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: 22px 24px max(32px, env(safe-area-inset-bottom));
  background: rgba(7, 11, 12, 0.98);
}

.mobile-nav a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Hero */

.road-hero {
  position: relative;
  min-height: 760px;
  max-height: 900px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  z-index: -4;
  inset: -9% -5%;
  width: 110%;
  height: 118%;
  max-width: none;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.96) contrast(1.04) brightness(0.9);
  transform: scale(1.13);
}

.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 8, 0.96) 0%, rgba(4, 7, 8, 0.72) 37%, rgba(4, 7, 8, 0.1) 70%, rgba(4, 7, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 7, 8, 0.82) 0%, transparent 42%, rgba(4, 7, 8, 0.25) 100%);
}

.lane-mark {
  position: absolute;
  z-index: -2;
  right: -12%;
  bottom: 12%;
  width: 72%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(242, 204, 77, 0.7) 0 72px, transparent 72px 128px);
  transform: rotate(-10deg);
  transform-origin: right;
}

.lane-mark-two {
  right: -18%;
  bottom: 4%;
  opacity: 0.36;
  transform: rotate(-8deg);
}

.hero-inner {
  display: grid;
  min-height: 760px;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 54px;
  padding-top: 136px;
  padding-bottom: 62px;
}

.hero-copy {
  align-self: end;
  max-width: 720px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--paper-soft);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.76rem;
  font-weight: 700;
}

.status-light {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 4px rgba(83, 209, 197, 0.13);
}

.hero-copy h1 {
  margin: 0;
  color: var(--paper);
  font-family: "Bahnschrift", "Arial Narrow", Impact, sans-serif;
  font-size: 7.8rem;
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    background-color 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    transform 100ms ease-out;
}

.action-primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--signal-dark);
}

.action-primary:hover {
  background: #ffe078;
}

.action-secondary {
  background: rgba(7, 11, 12, 0.48);
  color: var(--paper);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.action-secondary:hover {
  border-color: var(--paper);
  background: rgba(7, 11, 12, 0.78);
}

.action:active {
  transform: scale(0.98);
}

.driver-console {
  position: relative;
  align-self: end;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: rgba(7, 11, 12, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  backdrop-filter: blur(20px) saturate(125%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.driver-console::before {
  display: block;
  height: 5px;
  background: var(--signal);
  content: "";
}

.driver-identity {
  display: grid;
  align-items: center;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.driver-identity img {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--paper);
  object-fit: cover;
}

.driver-identity span,
.driver-rank > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.64rem;
  font-weight: 700;
}

.driver-identity a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.driver-data {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.driver-data > div {
  min-width: 0;
  padding: 17px 14px;
}

.driver-data > div + div {
  border-left: 1px solid var(--line);
}

.driver-data dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.58rem;
  font-weight: 700;
}

.driver-data dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--paper);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.45;
}

.driver-rank {
  padding: 19px 22px;
}

.driver-rank strong {
  color: var(--signal);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.api-state {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper-soft);
  font-size: 0.66rem;
  font-weight: 700;
}

html[data-profile-source="fallback"] .api-state .status-light {
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(242, 204, 77, 0.12);
}

/* Dispatch */

.dispatch {
  position: relative;
  padding: 84px 0 104px;
  overflow: hidden;
  background-color: #080d0e;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
}

.dispatch-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 22px;
  margin-bottom: 10px;
  padding: 22px 0 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.dispatch-heading p {
  margin: 0;
}

.dispatch-number {
  display: grid;
  align-items: center;
  align-self: stretch;
  grid-template-rows: auto 1fr;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.dispatch-number span {
  color: var(--signal);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.dispatch-number i {
  width: 1px;
  height: 100%;
  min-height: 28px;
  margin-left: 4px;
  background: linear-gradient(var(--signal), transparent);
}

.network-light {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 4px rgba(83, 209, 197, 0.11);
}

.dispatch-heading-copy > p {
  margin-bottom: 7px;
  color: var(--online);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.64rem;
  font-weight: 800;
}

.dispatch-heading-copy h2 {
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 0.92;
  text-wrap: balance;
}

.dispatch-count {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--paper-soft);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.66rem;
  font-weight: 800;
}

.service-board {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line-strong);
}

.service-board > li {
  border-top: 1px solid var(--line);
}

.service-entry {
  position: relative;
  display: grid;
  min-height: 142px;
  align-items: center;
  grid-template-columns: 50px minmax(190px, 250px) minmax(220px, 1fr) minmax(150px, 0.55fr) auto;
  gap: 22px;
  padding: 14px 18px 14px 0;
  color: var(--paper);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 100ms ease-out;
}

.service-entry::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--signal);
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.service-entry-download {
  background: rgba(242, 204, 77, 0.035);
}

.service-entry-download::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-sequence {
  justify-self: center;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.service-entry-download .service-sequence {
  color: var(--signal);
}

.service-thumb {
  position: relative;
  height: 112px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: #101617;
}

.service-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 12, 0.18), transparent 48%, rgba(7, 11, 12, 0.16));
  content: "";
  pointer-events: none;
}

.service-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04) brightness(0.78);
  transition:
    filter 260ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-thumb-bot {
  display: grid;
  place-items: center;
  background-color: #0b1719;
  background-image:
    linear-gradient(rgba(83, 209, 197, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 209, 197, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
}

.service-thumb-bot > img {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(83, 209, 197, 0.44);
  object-fit: cover;
  filter: saturate(0.88) brightness(0.9);
}

.service-copy {
  min-width: 0;
}

.service-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--online);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.61rem;
  font-weight: 800;
}

.service-copy h3 {
  display: inline;
  margin: 0;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.service-copy small {
  display: inline-block;
  margin-left: 10px;
  color: var(--signal);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.61rem;
  font-weight: 800;
  vertical-align: 0.22em;
}

.service-domain {
  overflow: hidden;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.service-action b {
  font-size: 0.7rem;
  font-weight: 800;
}

.service-action i {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  font-style: normal;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-entry-download .service-action i {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--signal-dark);
}

.service-entry:hover {
  background: #11191a;
}

.service-entry:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-entry:hover .service-thumb > img {
  filter: saturate(1) contrast(1.04) brightness(0.95);
  transform: scale(1.035);
}

.service-entry:hover .service-copy h3 {
  color: var(--signal);
}

.service-entry:hover .service-action i {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--signal-dark);
  transform: translate(2px, -2px);
}

.service-entry-download:hover .service-action i {
  transform: translateY(3px);
}

.service-entry:active {
  transform: translateY(1px);
}

/* Footer */

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #050809;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  grid-template-columns: 34px auto;
}

.back-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 15px;
  color: var(--paper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  transition: color 160ms ease;
}

.back-top:hover {
  color: var(--signal);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
}

.footer-legal strong,
.footer-legal a {
  color: #7f8887;
  font-size: 0.66rem;
  font-weight: 600;
}

.footer-legal > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal a:hover {
  color: var(--paper);
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: 6rem;
  }

  .service-entry {
    grid-template-columns: 46px minmax(180px, 220px) minmax(0, 1fr) auto;
    gap: 18px;
  }

  .service-domain {
    display: none;
  }

  .service-copy h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .brand-role,
  .desktop-nav {
    display: none;
  }

  .brand {
    grid-template-columns: 34px auto;
  }

  .brand-logo {
    grid-row: auto;
  }

  .brand-name {
    align-self: center;
  }

  .language-switch {
    margin-left: auto;
  }

  .menu-button {
    display: flex;
  }

  .road-hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-backdrop {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 7, 8, 0.96) 0%, rgba(4, 7, 8, 0.68) 62%, rgba(4, 7, 8, 0.35) 100%),
      linear-gradient(0deg, rgba(4, 7, 8, 0.95) 0%, transparent 60%, rgba(4, 7, 8, 0.38) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 124px;
    padding-bottom: 42px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero-copy h1 {
    font-size: 5.5rem;
  }

  .driver-console {
    width: 100%;
  }

  .dispatch-heading {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .dispatch-number {
    padding-right: 16px;
  }

  .dispatch-heading-copy h2 {
    font-size: 2.65rem;
  }

  .service-entry {
    min-height: 126px;
    grid-template-columns: 38px minmax(150px, 190px) minmax(0, 1fr) 44px;
    gap: 16px;
    padding-right: 0;
  }

  .service-thumb {
    height: 98px;
  }

  .service-copy h3 {
    font-size: 1.35rem;
  }

  .service-action b {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    height: 66px;
  }

  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 62px;
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    column-gap: 8px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .language-switch button {
    min-width: 42px;
    min-height: 40px;
    padding: 0 7px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    top: 62px;
  }

  .road-hero,
  .hero-inner {
    min-height: auto;
    max-height: none;
  }

  .road-hero {
    padding-top: 0;
  }

  .hero-backdrop {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 68% top;
    transform: scale(1.45);
    transform-origin: 68% top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 7, 8, 0.94), rgba(4, 7, 8, 0.45)),
      linear-gradient(0deg, rgba(4, 7, 8, 0.99) 0%, rgba(4, 7, 8, 0.82) 55%, rgba(4, 7, 8, 0.38) 100%);
  }

  .lane-mark {
    display: none;
  }

  .hero-inner {
    gap: 30px;
    padding-top: 116px;
    padding-bottom: 34px;
  }

  .hero-copy h1 {
    font-size: 4.35rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 23px;
  }

  .action {
    min-width: 0;
    gap: 10px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .driver-identity {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 16px;
  }

  .driver-identity img {
    width: 58px;
    height: 58px;
  }

  .driver-identity a {
    font-size: 1.08rem;
  }

  .driver-data > div {
    padding: 13px 9px;
  }

  .driver-data dt {
    min-height: 2.4em;
    margin-bottom: 5px;
  }

  .driver-data dd {
    font-size: 0.64rem;
  }

  .driver-rank {
    padding: 15px 16px;
  }

  .api-state {
    padding-inline: 16px;
  }

  .dispatch {
    padding: 64px 0 76px;
    background-size: 40px 40px;
  }

  .dispatch-heading {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 8px;
    padding: 18px 0 20px;
  }

  .dispatch-number {
    grid-row: 1 / 3;
    padding-right: 10px;
  }

  .dispatch-number i {
    min-height: 20px;
  }

  .dispatch-heading-copy h2 {
    font-size: 2.2rem;
    line-height: 0.96;
  }

  .dispatch-count {
    grid-column: 2;
    min-height: 28px;
  }

  .service-entry {
    min-height: 106px;
    grid-template-columns: 30px 94px minmax(0, 1fr) 42px;
    gap: 10px;
    padding-block: 10px;
  }

  .service-thumb {
    height: 84px;
  }

  .service-thumb-bot > img {
    width: 54px;
    height: 54px;
  }

  .service-copy > span {
    margin-bottom: 5px;
    font-size: 0.55rem;
    line-height: 1.35;
  }

  .service-copy h3 {
    display: block;
    font-size: 1.06rem;
    line-height: 1.08;
  }

  .service-copy small {
    display: block;
    margin: 5px 0 0;
    font-size: 0.56rem;
  }

  .service-action i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .footer-main {
    padding-bottom: 30px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .footer-legal > div {
    justify-content: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-backdrop {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .driver-console,
  .action-secondary,
  .mobile-nav {
    background: var(--road);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #b7c0bd;
    --line: rgba(255, 255, 255, 0.38);
    --line-strong: rgba(255, 255, 255, 0.7);
  }

  .site-header,
  .driver-console,
  .mobile-nav {
    background: #000;
  }
}
