/* Northlane Delivery — static marketing site */

:root {
  --ink: #0b1720;
  --ink-soft: #142733;
  --ink-muted: #203744;
  --amber: #ffb547;
  --amber-strong: #f5a623;
  --amber-pale: #fff2db;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: #dfe3df;
  --text: #17242c;
  --muted: #65727a;
  --green: #42c98a;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 16px 36px rgba(11, 23, 32, 0.08);
  --shadow-lg: 0 32px 80px rgba(5, 17, 24, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 124px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 181, 71, 0.72);
  outline-offset: 4px;
}

.topbar {
  position: relative;
  z-index: 102;
  background: var(--amber);
  color: var(--ink);
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.topbar__inner p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.topbar__inner a {
  border-bottom: 1px solid rgba(11, 23, 32, 0.45);
  line-height: 1.3;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #077744;
  box-shadow: 0 0 0 4px rgba(7, 119, 68, 0.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 23, 32, 0.86);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(11, 23, 32, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand__mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  background: var(--amber);
  color: var(--ink);
}

.brand__letter {
  position: relative;
  z-index: 2;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.08em;
  transform: translateX(-1px);
}

.brand__route {
  position: absolute;
  right: -5px;
  bottom: 7px;
  width: 25px;
  height: 7px;
  border-top: 2px solid rgba(11, 23, 32, 0.65);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.brand__route::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ink);
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__copy strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand__copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.1vw, 34px);
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 27px 0 25px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

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

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher button {
  min-width: 27px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--amber);
  color: var(--ink);
}

.language-switcher > span {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  gap: 11px;
  padding: 0 18px;
  font-size: 11px;
}

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

.button--dark:hover {
  background: var(--amber);
  box-shadow: 0 10px 30px rgba(255, 181, 71, 0.18);
}

.button--amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255, 181, 71, 0.14);
}

.button--amber:hover {
  background: #ffc364;
  box-shadow: 0 18px 42px rgba(255, 181, 71, 0.23);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button__arrow {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 23, 32, 0.12);
  font-size: 15px;
  transition: transform 220ms var(--ease);
}

.button:hover .button__arrow {
  transform: translateX(3px);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-button span {
  grid-area: 1 / 1;
  width: 17px;
  height: 1.5px;
  background: var(--white);
  transition: transform 220ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 62px 62px, 62px 62px, auto;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 23, 32, 0) 65%, rgba(11, 23, 32, 0.6));
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero__glow--one {
  top: -250px;
  right: 4%;
  width: 610px;
  height: 610px;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.16), transparent 68%);
}

.hero__glow--two {
  bottom: -360px;
  left: -180px;
  width: 670px;
  height: 670px;
  background: radial-gradient(circle, rgba(27, 114, 143, 0.15), transparent 68%);
}

.hero__inner {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(64px, 8vw, 114px);
  padding-top: 82px;
  padding-bottom: 88px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  animation: hero-in 760ms 100ms both var(--ease);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #916118;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--amber);
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow__line {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  max-width: 660px;
  margin: 25px 0 24px;
  font-size: clamp(58px, 6vw, 91px);
  font-weight: 780;
  letter-spacing: -0.066em;
  line-height: 0.93;
}

.hero h1 span {
  display: block;
}

.text-accent {
  color: var(--amber);
}

.hero__lead {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.check {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 181, 71, 0.45);
  border-radius: 50%;
  color: var(--amber);
  font-size: 9px;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  height: 570px;
  justify-self: end;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: var(--ink-soft);
  box-shadow: var(--shadow-lg);
  animation: panel-in 900ms 180ms both var(--ease);
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 900ms var(--ease);
}

.hero-photo:hover > img {
  transform: scale(1.025);
}

.hero-photo__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 15, 21, 0.95) 0%, rgba(5, 15, 21, 0.18) 47%, transparent 70%),
    linear-gradient(135deg, rgba(11, 23, 32, 0.18), transparent 45%);
  pointer-events: none;
}

.hero-photo__brand {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(11, 23, 32, 0.72);
  color: var(--amber);
  font-size: 18px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero-photo__caption {
  position: absolute;
  right: 30px;
  bottom: 31px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-photo__caption > span {
  color: var(--amber);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-photo__caption > strong {
  max-width: 330px;
  color: var(--white);
  font-size: 25px;
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.hero-photo__location {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(11, 23, 32, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-photo__location > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 181, 71, 0.15);
}

.hero-photo__location > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-photo__location small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo__location strong {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 750;
}

.route-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(20, 39, 51, 0.8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  animation: panel-in 900ms 180ms both var(--ease);
}

.route-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 40%);
}

.route-panel__top {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.route-panel__top > div {
  display: flex;
  flex-direction: column;
}

.route-panel__top span:first-child {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-panel__top strong {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 750;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(66, 201, 138, 0.1);
  color: #7ce2b0 !important;
}

.live-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(66, 201, 138, 0.13);
  animation: live-pulse 2s infinite;
}

.live-pill b {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-map {
  position: relative;
  height: 282px;
  overflow: hidden;
  background: #0d1d27;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 31px 31px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.map-road {
  position: absolute;
  display: block;
  width: 140%;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.026);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.022);
}

.map-road--one {
  top: 65px;
  left: -80px;
  transform: rotate(18deg);
}

.map-road--two {
  top: 185px;
  left: -100px;
  transform: rotate(-14deg);
}

.map-road--three {
  top: 132px;
  left: -50px;
  transform: rotate(62deg);
}

.route-line {
  position: absolute;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(255, 181, 71, 0.27);
  transform-origin: left center;
}

.route-line--one {
  top: 202px;
  left: 62px;
  width: 106px;
  transform: rotate(-31deg);
}

.route-line--two {
  top: 149px;
  left: 153px;
  width: 107px;
  transform: rotate(17deg);
}

.route-line--three {
  top: 180px;
  left: 254px;
  width: 127px;
  transform: rotate(-35deg);
}

.route-node {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  display: block;
  border: 3px solid var(--amber);
  border-radius: 50%;
  background: #0d1d27;
  box-shadow: 0 0 0 5px rgba(255, 181, 71, 0.1);
}

.route-node--depot {
  top: 196px;
  left: 56px;
  width: 17px;
  height: 17px;
  border-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.route-node--depot i {
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background: var(--amber);
}

.route-node--one {
  top: 141px;
  left: 150px;
}

.route-node--two {
  top: 172px;
  left: 250px;
}

.route-node--three {
  top: 116px;
  left: 352px;
}

.route-node--four {
  top: 82px;
  right: 45px;
  opacity: 0.45;
}

.van-marker {
  position: absolute;
  top: 131px;
  left: 190px;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.32);
  animation: van-bob 3.6s ease-in-out infinite;
}

.van-marker svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.route-panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.route-panel__metrics > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.route-panel__metrics > div:last-child {
  border-right: 0;
}

.route-panel__metrics span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-panel__metrics strong {
  font-size: 16px;
  font-weight: 800;
}

.route-panel__metrics .metric-good {
  color: #7ce2b0;
  font-size: 13px;
}

.route-panel__footer {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 27px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-panel__footer time {
  color: rgba(255, 255, 255, 0.68);
  font-variant-numeric: tabular-nums;
}

.hero__footer {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-list {
  display: flex;
  align-items: center;
  gap: 38px;
  color: rgba(255, 255, 255, 0.72);
}

.location-list span {
  position: relative;
}

.location-list span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 0.83fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 65px;
}

.section-heading h2,
.operations__copy h2,
.careers__intro h2,
.faq__intro h2 {
  margin: 19px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.section-heading--split > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.63);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.value-card:hover {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.value-card__number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(11, 23, 32, 0.19);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--amber-pale);
  color: #9b6415;
}

.icon-box svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.value-card h3 {
  max-width: 240px;
  margin: 72px 0 14px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.public-pillars {
  background: var(--amber);
  color: var(--ink);
}

.public-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.public-pillar {
  min-height: 164px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  border-right: 1px solid rgba(11, 23, 32, 0.16);
}

.public-pillar:first-child {
  border-left: 1px solid rgba(11, 23, 32, 0.16);
}

.public-pillar > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 23, 32, 0.24);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 850;
}

.public-pillar > div {
  min-width: 0;
}

.public-pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.public-pillar p {
  margin: 5px 0 0;
  color: rgba(11, 23, 32, 0.63);
  font-size: 10px;
  line-height: 1.5;
}

.numbers {
  background: var(--amber);
  color: var(--ink);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.number-item {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 42px;
  border-right: 1px solid rgba(11, 23, 32, 0.16);
}

.number-item:first-child {
  border-left: 1px solid rgba(11, 23, 32, 0.16);
}

.number-item strong {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.number-item strong span {
  color: rgba(11, 23, 32, 0.48);
}

.number-item p {
  margin: 12px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operations {
  overflow: hidden;
  background: var(--white);
}

.operations__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.operations__grid > * {
  min-width: 0;
}

.team-photo {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 600px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.team-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease);
}

.team-photo:hover > img {
  transform: scale(1.025);
}

.team-photo__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 17, 23, 0.93), transparent 58%);
  pointer-events: none;
}

.team-photo figcaption {
  position: absolute;
  right: 36px;
  bottom: 36px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--white);
}

.team-photo figcaption span {
  color: var(--amber);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-photo figcaption strong {
  font-size: 31px;
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.operations__visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 181, 71, 0.17), transparent 34%),
    linear-gradient(145deg, #0d202b, #0a151c);
}

.operations__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.dispatch-card {
  position: absolute;
  top: 85px;
  left: 50%;
  z-index: 2;
  width: min(78%, 380px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(25, 47, 60, 0.86);
  color: var(--white);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%) rotate(-2deg);
  backdrop-filter: blur(12px);
}

.dispatch-card__head {
  min-height: 75px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dispatch-avatar {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--amber);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.dispatch-card__head > div {
  display: flex;
  flex-direction: column;
}

.dispatch-card__head small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  font-weight: 650;
}

.dispatch-card__head strong {
  font-size: 13px;
}

.dispatch-card__head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(66, 201, 138, 0.1);
}

.dispatch-card__body {
  padding: 26px 24px 28px;
}

.dispatch-wave {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dispatch-wave span {
  width: 5px;
  border-radius: 999px;
  background: var(--amber);
  animation: wave 1.6s ease-in-out infinite alternate;
}

.dispatch-wave span:nth-child(1) {
  height: 20px;
}

.dispatch-wave span:nth-child(2) {
  height: 39px;
  animation-delay: -0.9s;
}

.dispatch-wave span:nth-child(3) {
  height: 52px;
  animation-delay: -0.5s;
}

.dispatch-wave span:nth-child(4) {
  height: 31px;
  animation-delay: -1.2s;
}

.dispatch-wave span:nth-child(5) {
  height: 44px;
  animation-delay: -0.3s;
}

.dispatch-wave span:nth-child(6) {
  height: 26px;
  animation-delay: -1s;
}

.dispatch-wave span:nth-child(7) {
  height: 47px;
  animation-delay: -0.1s;
}

.dispatch-wave span:nth-child(8) {
  height: 37px;
  animation-delay: -0.75s;
}

.dispatch-wave span:nth-child(9) {
  height: 18px;
  animation-delay: -0.35s;
}

.dispatch-wave span:nth-child(10) {
  height: 30px;
  animation-delay: -0.95s;
}

.dispatch-card__body p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.shift-card {
  position: absolute;
  right: 35px;
  bottom: 96px;
  z-index: 3;
  width: 196px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  transform: rotate(3.5deg);
}

.shift-card > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shift-card > strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.shift-card > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(11, 23, 32, 0.2);
  font-size: 9px;
  font-weight: 750;
}

.shift-card b {
  font-weight: inherit;
}

.visual-caption {
  position: absolute;
  bottom: 42px;
  left: 38px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.operations__copy h2 {
  max-width: 570px;
}

.operations__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.operations__copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.process-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 20px;
  padding: 0 0 28px;
}

.process-list li:not(:last-child) {
  margin-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-pale);
  color: #8b5914;
  font-size: 9px;
  font-weight: 850;
}

.process-list h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.team {
  background: #f0eee8;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading--center h2 {
  margin-top: 19px;
}

.section-heading--center > p {
  max-width: 630px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit {
  min-height: 260px;
  padding: 28px;
  border-top: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.47);
  transition:
    background 240ms ease,
    transform 280ms var(--ease);
}

.benefit:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.benefit__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--amber);
  font-size: 9px;
  font-weight: 850;
}

.benefit h3 {
  margin: 62px 0 13px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.025em;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.careers {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.careers::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -200px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.12), transparent 70%);
}

.careers__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(70px, 9vw, 130px);
}

.careers__intro {
  position: sticky;
  top: 120px;
}

.careers__intro h2 {
  color: var(--white);
}

.careers__intro > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 15px;
  line-height: 1.8;
}

.requirements {
  display: grid;
  gap: 15px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.requirements li {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.requirements li > span:first-child {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 181, 71, 0.13);
  color: var(--amber);
  font-size: 10px;
}

.jobs-list {
  display: grid;
  gap: 15px;
}

.job-card {
  padding: 34px 34px 31px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.048);
  transition:
    border-color 250ms ease,
    background 250ms ease,
    transform 300ms var(--ease);
}

.job-card:hover {
  border-color: rgba(255, 181, 71, 0.42);
  background: rgba(255, 255, 255, 0.072);
  transform: translateX(6px);
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-card__meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.job-card__meta span:first-child {
  background: rgba(255, 181, 71, 0.12);
  color: var(--amber);
}

.job-card h3 {
  margin: 24px 0 11px;
  font-size: 24px;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.job-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 13px;
  line-height: 1.7;
}

.job-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
}

.job-card > a span:last-child {
  font-size: 16px;
  transition: transform 220ms var(--ease);
}

.job-card > a:hover span:last-child {
  transform: translate(3px, -3px);
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(70px, 9vw, 130px);
}

.faq__intro > p {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.accordion {
  border-top: 1px solid #cfd5d1;
}

.accordion details {
  border-bottom: 1px solid #cfd5d1;
}

.accordion summary {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid #c8ceca;
  border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i {
  border-color: var(--amber);
  background: var(--amber);
}

.accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details p {
  max-width: 590px;
  margin: -4px 54px 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contact {
  padding: 0 0 110px;
  background: var(--paper);
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  padding: 58px 64px;
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  color: var(--white);
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -140px;
  width: 410px;
  height: 410px;
  border: 60px solid rgba(255, 181, 71, 0.08);
  border-radius: 50%;
}

.contact-card > * {
  position: relative;
  z-index: 2;
}

.contact-card__label {
  color: var(--amber);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 15px 0 15px;
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-card p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
}

.contact-card__actions {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 19px;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.contact-phone small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 5px;
  font-size: 13px;
}

.footer {
  background: #081218;
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr 1fr;
  gap: 90px;
  padding-top: 75px;
  padding-bottom: 67px;
}

.brand--footer .brand__mark {
  width: 43px;
  height: 43px;
}

.footer__brand > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  line-height: 1.75;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__column h3 {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__column a,
.footer__column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.7;
}

.footer__column a:hover {
  color: var(--amber);
}

.footer__bottom {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.29);
  font-size: 9px;
  line-height: 1.6;
}

.footer__bottom p {
  margin: 0;
}

.footer__disclaimer {
  max-width: 610px;
  justify-self: end;
  text-align: right;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(11, 23, 32, 0.2);
  cursor: pointer;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
}

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

.reveal--delay-1 {
  transition-delay: 80ms;
}

.reveal--delay-2 {
  transition-delay: 160ms;
}

.reveal--delay-3 {
  transition-delay: 240ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translate(22px, 24px) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.48;
  }
}

@keyframes van-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes wave {
  from {
    transform: scaleY(0.55);
    opacity: 0.5;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.4vw, 74px);
  }

  .section-heading--split {
    gap: 55px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 94px 0;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 35px 20px;
    background: rgba(8, 18, 24, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 220ms ease,
      transform 300ms var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 17px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .nav a::after {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 76px;
  }

  .hero__copy {
    max-width: 690px;
  }

  .hero h1 {
    font-size: clamp(62px, 12vw, 90px);
  }

  .route-panel {
    max-width: 620px;
    justify-self: start;
  }

  .section-heading--split,
  .operations__grid,
  .careers__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .operations__grid,
  .careers__grid,
  .faq__grid {
    gap: 55px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid .value-card:last-child {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-item:nth-child(3) {
    border-left: 1px solid rgba(11, 23, 32, 0.16);
  }

  .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 23, 32, 0.16);
  }

  .operations__visual {
    max-width: 650px;
  }

  .careers__intro {
    position: static;
  }

  .jobs-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq__intro {
    max-width: 630px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-card__actions {
    max-width: 250px;
  }

  .footer__top {
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .topbar__inner {
    min-height: 35px;
    justify-content: center;
    text-align: center;
  }

  .topbar__inner a {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .brand__copy strong {
    font-size: 15px;
  }

  .language-switcher {
    gap: 3px;
    padding-inline: 5px;
  }

  .language-switcher button {
    min-width: 25px;
  }

  .nav {
    height: calc(100vh - 70px);
  }

  .hero__inner {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(52px, 17vw, 78px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .route-panel {
    border-radius: 21px;
  }

  .route-panel__top {
    min-height: 78px;
    padding-inline: 20px;
  }

  .route-map {
    height: 240px;
    transform-origin: left top;
  }

  .route-line--three {
    width: 90px;
  }

  .route-panel__metrics {
    padding-inline: 4px;
  }

  .route-panel__metrics > div {
    padding-inline: 10px;
  }

  .route-panel__metrics span {
    font-size: 8px;
  }

  .route-panel__metrics strong {
    font-size: 14px;
  }

  .hero__footer {
    min-height: 102px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .location-list {
    flex-wrap: wrap;
    gap: 10px 25px;
  }

  .location-list span:not(:last-child)::after {
    right: -15px;
  }

  .section-heading--split {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .operations__copy h2,
  .careers__intro h2,
  .faq__intro h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .values-grid,
  .benefits-grid,
  .jobs-list {
    grid-template-columns: 1fr;
  }

  .values-grid .value-card:last-child {
    grid-column: auto;
    min-height: 320px;
  }

  .value-card {
    min-height: 320px;
  }

  .numbers__grid {
    width: 100%;
  }

  .number-item {
    min-height: 145px;
    padding: 22px 26px;
  }

  .number-item strong {
    font-size: 39px;
  }

  .number-item p {
    font-size: 8px;
  }

  .operations__visual {
    min-height: 490px;
    border-radius: 24px;
  }

  .dispatch-card {
    top: 52px;
    width: 84%;
  }

  .shift-card {
    right: 18px;
    bottom: 72px;
  }

  .visual-caption {
    bottom: 25px;
    left: 23px;
  }

  .benefit {
    min-height: 230px;
  }

  .benefit h3 {
    margin-top: 42px;
  }

  .job-card {
    padding: 28px 25px;
  }

  .accordion summary {
    min-height: 75px;
    font-size: 14px;
  }

  .contact {
    padding-bottom: 78px;
  }

  .contact-card {
    gap: 38px;
    padding: 42px 27px;
    border-radius: 24px;
  }

  .contact-card__actions {
    width: 100%;
    max-width: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 58px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .footer__disclaimer {
    justify-self: start;
    text-align: left;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 900px) {
  .hero-photo {
    max-width: 620px;
    height: 650px;
    justify-self: start;
  }

  .public-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .public-pillar:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 23, 32, 0.16);
  }

  .public-pillar:nth-child(3) {
    border-left: 1px solid rgba(11, 23, 32, 0.16);
  }

  .team-photo {
    width: 100%;
    max-width: 650px;
    min-height: 560px;
  }
}

@media (max-width: 650px) {
  .hero-photo {
    height: 520px;
    border-radius: 23px;
  }

  .hero-photo__brand {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }

  .hero-photo__location {
    top: 18px;
    left: 18px;
    padding: 9px 11px;
  }

  .hero-photo__caption {
    right: 23px;
    bottom: 24px;
    left: 23px;
  }

  .hero-photo__caption > strong {
    font-size: 22px;
  }

  .public-pillars__grid {
    grid-template-columns: 1fr;
  }

  .public-pillar,
  .public-pillar:nth-child(3) {
    min-height: 118px;
    border-right: 1px solid rgba(11, 23, 32, 0.16);
    border-bottom: 1px solid rgba(11, 23, 32, 0.16);
    border-left: 1px solid rgba(11, 23, 32, 0.16);
  }

  .public-pillar:last-child {
    border-bottom: 0;
  }

  .team-photo {
    min-height: 440px;
    border-radius: 24px;
  }

  .team-photo figcaption {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .team-photo figcaption strong {
    font-size: 25px;
  }
}

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

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