@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body,
#app {
  min-height: 100%;
  background: #000;
}

html {
  overscroll-behavior-y: none;
}

body {
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

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

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

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

h1:focus,
h1:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

:root {
  --clr-text-primary: #111317;
  --clr-text-secondary: #4b505a;
  --clr-text-muted: #6c727f;
  --clr-bg-menu: #eee;
  --clr-bg-canvas: #f9fafb;
  --clr-bg-surface: #ffffff;
  --clr-bg-elevated: #ffffff;
  --clr-bg-soft: #f2f4f7;
  --clr-border-soft: rgba(0, 0, 0, 0.08);
  --clr-border-strong: rgba(0, 0, 0, 0.15);
  --clr-primary-base: #1c82ff;
  --clr-primary-hover: #4d90ff;
  --clr-primary-strong: #0069e0;
  --clr-primary-text: #ffffff;
  --clr-accent-glow: #7ab3ff;
  --scale-fs: 1.33;
  --fs-50: calc(0.75rem / 2);
  --fs-100: 0.75rem;
  --fs-150: calc(0.75rem * pow(1.33, 0.5));
  --fs-200: calc(0.75rem * pow(1.33, 1));
  --fs-250: calc(0.75rem * pow(1.33, 1.5));
  --fs-300: calc(0.75rem * pow(1.33, 2));
  --fs-350: calc(0.75rem * pow(1.33, 2.5));
  --fs-400: calc(0.75rem * pow(1.33, 3));
  --fs-450: calc(0.75rem * pow(1.33, 3.5));
  --fs-500: calc(0.75rem * pow(1.33, 4));
  --fs-550: calc(0.75rem * pow(1.33, 4.5));
  --fs-600: calc(0.75rem * pow(1.33, 5));
  --fs-650: calc(0.75rem * pow(1.33, 5.5));
  --fs-700: calc(0.75rem * pow(1.33, 6));
  --fs-750: calc(0.75rem * pow(1.33, 6.5));
  --fs-800: calc(0.75rem * pow(1.33, 7));
  --fs-850: calc(0.75rem * pow(1.33, 7.5));
  --fs-900: calc(0.75rem * pow(1.33, 8));
  --scale-pg: 1.33;
  --pg-50: calc(1em / 2);
  --pg-100: 1em;
  --pg-150: calc(1em * pow(1.33, 0.5));
  --pg-200: calc(1em * pow(1.33, 1));
  --pg-250: calc(1em * pow(1.33, 1.5));
  --pg-300: calc(1em * pow(1.33, 2));
  --pg-350: calc(1em * pow(1.33, 2.5));
  --pg-400: calc(1em * pow(1.33, 3));
  --pg-450: calc(1em * pow(1.33, 3.5));
  --pg-500: calc(1em * pow(1.33, 4));
  --pg-550: calc(1em * pow(1.33, 4.5));
  --pg-600: calc(1em * pow(1.33, 5));
  --pg-650: calc(1em * pow(1.33, 5.5));
  --pg-700: calc(1em * pow(1.33, 6));
  --pg-750: calc(1em * pow(1.33, 6.5));
  --pg-800: calc(1em * pow(1.33, 7));
  --pg-850: calc(1em * pow(1.33, 7.5));
  --pg-900: calc(1em * pow(1.33, 8));
  font-size: var(--fs-200);
  color: var(--clr-text-primary);
  background-color: #000;
  --pg-main: 1.5rem;
  --pg-second: 1rem;
}

* {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-size: var(--fs-200);
  color: #f7f7f5;
  background: #070707;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fff;
}

p {
  color: rgba(255, 255, 255, 0.72);
}

::selection {
  color: #fff;
  background: #c90008;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  background: #000;
}

.main-layout {
  min-height: 100dvh;
  background: #000;
}
.main-layout > main {
  min-height: 100dvh;
  background: #000;
}

.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 16px;
  background: linear-gradient(90deg, rgba(201, 0, 8, 0.12), transparent 32%), rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}
.top-menu::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: min(38vw, 460px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #c90008);
  box-shadow: 0 0 14px rgba(255, 20, 30, 0.7);
}
.top-menu .brand {
  position: relative;
  z-index: 2;
  width: auto;
  height: 64px;
  display: flex;
  align-items: center;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.brand-logo__mark {
  width: 54px;
  height: 49px;
  flex: 0 0 auto;
  overflow: visible;
}
.brand-logo__motion {
  fill: #cf0a13;
}
.brand-logo__person {
  fill: #fff;
}
.brand-logo__bag {
  fill: #070707;
  stroke: #ed2029;
  stroke-width: 2;
  stroke-linejoin: round;
}
.brand-logo__road {
  fill: none;
  stroke: #ed2029;
  stroke-width: 2;
  stroke-linecap: round;
}
.brand-logo__type {
  min-width: 0;
  display: grid;
  line-height: 1;
}
.brand-logo__name {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.brand-logo__name em {
  position: relative;
  display: inline-block;
  margin-right: 7px;
  padding: 4px 10px 5px;
  font-style: italic;
  color: #fff;
  background: #cf0a13;
  clip-path: polygon(4% 8%, 100% 0, 94% 100%, 0 88%);
}
.brand-logo__name b {
  color: #fff;
  font-style: italic;
  font-weight: 700;
}
.brand-logo__tagline {
  margin-top: 4px;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 380px) {
  .top-menu {
    padding-inline: 12px;
  }
  .brand-logo {
    gap: 7px;
  }
  .brand-logo__mark {
    width: 47px;
    height: 44px;
  }
  .brand-logo__name {
    font-size: 21px;
  }
  .brand-logo__name em {
    margin-right: 5px;
    padding-inline: 8px;
  }
  .brand-logo__tagline {
    font-size: 5.6px;
  }
}
@media only screen and (min-width: 1200px) {
  .top-menu {
    height: 88px;
    grid-template-columns: 260px 1fr;
    padding: 0 clamp(28px, 4vw, 76px);
  }
  .top-menu .brand {
    width: auto;
    height: 78px;
  }
  .brand-logo {
    gap: 11px;
  }
  .brand-logo__mark {
    width: 58px;
    height: 52px;
  }
  .brand-logo__name {
    font-size: 29px;
  }
  .brand-logo__tagline {
    font-size: 7px;
  }
}
.menu-toggle {
  width: 42px;
  height: 42px;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle:focus-visible {
  outline: 2px solid #f0252d;
  outline-offset: 4px;
}
.menu-toggle span {
  position: absolute;
  left: 7px;
  width: 28px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}
.menu-toggle .line1 {
  top: 12px;
}
.menu-toggle .line2 {
  top: 20px;
}
.menu-toggle .line3 {
  top: 28px;
}
.menu-toggle.open .line1 {
  top: 20px;
  transform: rotate(45deg);
}
.menu-toggle.open .line2 {
  opacity: 0;
}
.menu-toggle.open .line3 {
  top: 20px;
  transform: rotate(-45deg);
}

@media only screen and (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }
}
.top-menu .nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px);
  z-index: 50;
  display: grid;
  align-content: start;
  gap: 34px;
  padding: 42px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: radial-gradient(circle at 8% 12%, rgba(201, 0, 8, 0.2), transparent 28%), repeating-linear-gradient(118deg, transparent 0 28px, rgba(255, 255, 255, 0.018) 29px 30px), #070707;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease, visibility 220ms;
}
.top-menu .nav.open {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.top-menu .nav > ul {
  display: grid;
  gap: 0;
}
.top-menu .nav > ul a {
  display: flex;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.top-menu .nav > ul a::after {
  content: "→";
  margin-left: auto;
  color: #e21720;
}

@media only screen and (min-width: 1200px) {
  .top-menu .nav {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 3vw, 54px);
    padding: 0;
    overflow: visible;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .top-menu .nav > ul {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
  }
  .top-menu .nav > ul a {
    min-height: 44px;
    border: 0;
    position: relative;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #fff;
  }
  .top-menu .nav > ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #e21720;
    transition: width 180ms ease;
  }
  .top-menu .nav > ul a:hover::after, .top-menu .nav > ul a:focus-visible::after {
    width: 100%;
  }
}
.section1 {
  --hero-sky-x: 0px;
  --hero-sky-roll: 0deg;
  --hero-city-x: 0px;
  --hero-ground-tilt: 0deg;
  --hero-right-sky-x: 0px;
  --hero-right-sky-y: 9px;
  --hero-right-sky-light: 1.09;
  --hero-right-cloud-x: -126.65px;
  --hero-right-cloud-y: 7px;
  --hero-right-cloud-opacity: .508;
  --hero-camera-x: 0px;
  --hero-camera-y: 0px;
  --hero-camera-scale: 1.028;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding-top: max(108px, 14svh) !important;
  padding-bottom: max(82px, 10svh) !important;
  background: #070707;
}
.section1 .hero-visual {
  position: absolute;
  z-index: 0;
  inset: -28px;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(0);
  transform-origin: 100% 82%;
  will-change: transform;
  backface-visibility: hidden;
}
.section1 .hero-visual::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 87% 39%, rgba(255, 112, 54, 0.2), transparent 19%), radial-gradient(ellipse at 58% 68%, rgba(224, 12, 23, 0.14), transparent 38%);
  mix-blend-mode: screen;
  animation: hero-ambient-glow 5.2s ease-in-out -2.6s infinite alternate;
  will-change: opacity, filter;
}
.section1 .hero-visual__sky,
.section1 .hero-visual__sky-right,
.section1 .hero-visual__city {
  position: absolute;
  inset: -36px;
  display: block;
  background-position: 68% center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform, opacity;
}
.section1 .hero-visual__sky {
  z-index: 3;
  background-image: url("/pics/home-hero-depth-sky-v1.webp");
  -webkit-mask-image: linear-gradient(to bottom, #000 0 45%, rgba(0, 0, 0, 0.72) 55%, transparent 65%), linear-gradient(to right, #000 0 40%, rgba(0, 0, 0, 0.55) 46%, transparent 53%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, #000 0 45%, rgba(0, 0, 0, 0.72) 55%, transparent 65%), linear-gradient(to right, #000 0 40%, rgba(0, 0, 0, 0.55) 46%, transparent 53%);
  mask-composite: intersect;
  transform: translate3d(0, 0, 0) scale(1.012);
  transform-origin: 78% 44%;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  animation: hero-sky-drift 7.5s ease-in-out infinite alternate;
  animation-delay: -3.1s;
  opacity: 0.46;
  mix-blend-mode: screen;
}
.section1 .hero-visual__sky-right {
  z-index: 3;
  overflow: hidden;
  background: none;
  transform: none;
  opacity: 1;
  clip-path: none;
  -webkit-mask-image: none;
  mask-image: none;
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.section1 .hero-visual__sky-right::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 1%;
  right: -12%;
  width: 72%;
  height: 24%;
  background: radial-gradient(ellipse at 18% 48%, rgba(25, 24, 31, 0.82) 0 18%, rgba(45, 31, 38, 0.58) 34%, transparent 66%), radial-gradient(ellipse at 48% 42%, rgba(35, 27, 34, 0.78) 0 22%, rgba(108, 38, 41, 0.35) 43%, transparent 69%), radial-gradient(ellipse at 78% 55%, rgba(30, 27, 34, 0.72) 0 19%, rgba(168, 50, 43, 0.28) 42%, transparent 68%);
  filter: blur(14px);
  mix-blend-mode: multiply;
  opacity: var(--hero-right-cloud-opacity);
  transform: translate3d(var(--hero-right-cloud-x), var(--hero-right-cloud-y), 0);
  animation: none;
  will-change: transform, opacity;
}
.section1 .hero-visual__sky-right-texture {
  position: absolute;
  inset: -64px;
  display: block;
  background-image: url("/pics/home-hero-sky-right-feathered.svg");
  background-position: calc(76% + var(--hero-right-sky-x)) calc(43% + var(--hero-right-sky-y));
  background-size: 132% auto;
  background-repeat: no-repeat;
  transform-origin: 82% 18%;
  transform: translateZ(0);
  animation: none;
  opacity: 0.54;
  filter: brightness(var(--hero-right-sky-light)) saturate(1.08);
  mix-blend-mode: normal;
  will-change: background-position, filter;
}
.section1 .hero-visual__city {
  z-index: 4;
  background-image: url("/pics/home-hero-depth-city-v1.webp");
  transform: translate3d(0, 0, 0) scale(1.004);
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
  animation: hero-city-drift 6.8s ease-in-out infinite alternate;
  animation-delay: -2.7s;
  opacity: 0.52;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 30%, #000 44%, #000 72%, transparent 82%), linear-gradient(to right, #000 0 34%, rgba(0, 0, 0, 0.42) 40%, transparent 47%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, transparent 30%, #000 44%, #000 72%, transparent 82%), linear-gradient(to right, #000 0 34%, rgba(0, 0, 0, 0.42) 40%, transparent 47%);
  mask-composite: intersect;
}
.section1 .hero-visual__road {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("/pics/home-hero-driver-remastered-v2.webp");
  background-position: 68% center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: none;
  mask-image: none;
  transform: none;
}
.section1 .hero-visual__ground-world {
  position: absolute;
  z-index: 2;
  inset: -36px;
  transform: translateZ(0) scale(1.012);
  transform-origin: 100% 82%;
  will-change: transform;
  backface-visibility: hidden;
  contain: paint;
  animation: none;
}
.section1 .hero-visual__road-motion {
  z-index: 1;
  opacity: 0.58;
  background-image: url("/pics/home-hero-depth-backplate-v2.webp");
  -webkit-mask-image: linear-gradient(to bottom, transparent 42%, rgba(0, 0, 0, 0.55) 56%, #000 72%), linear-gradient(to right, #000 0 30%, rgba(0, 0, 0, 0.62) 39%, transparent 49%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, transparent 42%, rgba(0, 0, 0, 0.55) 56%, #000 72%), linear-gradient(to right, #000 0 30%, rgba(0, 0, 0, 0.62) 39%, transparent 49%);
  mask-composite: intersect;
  animation: hero-road-flow 9s ease-in-out -4.5s infinite alternate;
  will-change: transform, filter, opacity;
}
.section1 .hero-visual__truck-grounding {
  display: none;
}
.section1 .hero-visual__truck {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("/pics/home-hero-depth-truck-v2.webp");
  background-position: calc(100% + 50px) 72%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  transform: translate3d(-70px, -135px, 0) scale(1.25);
  transform-origin: 60% 82%;
  filter: drop-shadow(-18px 22px 28px rgba(0, 0, 0, 0.3));
  display: none;
}
.section1 .hero-visual__truck-light {
  position: absolute;
  z-index: 3;
  inset: 0;
  background-position: calc(100% + 50px) 72%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  transform: translate3d(-70px, -135px, 0) scale(1.25);
  transform-origin: 60% 82%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: truck-headlight-glint 3.2s ease-in-out infinite;
  will-change: opacity, filter;
}
.section1 .hero-visual__truck-light--left {
  background-image: url("/pics/home-hero-headlight-left-v2.svg");
}
.section1 .hero-visual__truck-light--right {
  background-image: url("/pics/home-hero-headlight-right-v2.svg");
  animation-delay: -0.9s;
  animation-duration: 3.7s;
}
.section1 .hero-visual__subject {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: block;
  background: url("/pics/home-hero-driver-remastered-v2.webp") 68% center/cover no-repeat;
  transform: none;
  filter: none;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 17% 51% at 62% 55%, #000 0 80%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse 17% 51% at 62% 55%, #000 0 80%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
}
.section1 .hero-visual__wash {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 5, 9, 0.96) 0%, rgba(2, 5, 9, 0.73) 42%, rgba(2, 5, 9, 0.12) 78%), linear-gradient(0deg, #070707 0%, transparent 32%), radial-gradient(circle at 70% 54%, rgba(226, 23, 32, 0.13), transparent 28%);
  animation: hero-light-pulse 6s ease-in-out infinite;
}
.section1 .hero-motion-line {
  position: absolute;
  z-index: 6;
  left: -45%;
  width: 72%;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 36, 45, 0.22), #ff2932 62%, transparent);
  filter: drop-shadow(0 0 8px rgba(255, 24, 34, 0.8));
  opacity: 0;
  transform: rotate(-8deg);
  animation: hero-line-sweep 7.5s cubic-bezier(0.2, 0.6, 0.2, 1) infinite;
}
.section1 .hero-motion-line--one {
  top: 49%;
}
.section1 .hero-motion-line--two {
  top: 64%;
  animation-delay: 3.4s;
  animation-duration: 9s;
}
.section1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(110deg, rgba(198, 0, 8, 0.14), transparent 34%), radial-gradient(circle at 26% 44%, rgba(198, 0, 8, 0.2), transparent 32%);
  mix-blend-mode: screen;
}
.section1::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 5%;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, #e21720 34%, #ff5a46 62%, transparent);
  transform: rotate(1.4deg);
  box-shadow: 0 0 20px rgba(226, 23, 32, 0.8);
}
.section1 .hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
}
.section1 h1 {
  max-width: 650px;
  font-size: clamp(52px, 8vw, 126px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.82);
}
.section1 h1 span {
  color: #d80c15;
}
.section1 .hero-signature {
  margin: clamp(12px, 2vh, 20px) 0 clamp(14px, 2vh, 22px);
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}
.section1 .hero-copy {
  max-width: 530px;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.section1 .hero-note {
  display: none;
}
.section1 .scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 66px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.section1 .scroll-cue i {
  width: 54px;
  height: 1px;
  background: #e21720;
}

html.no-resize .section1 .hero-visual,
html.no-resize .section1 .hero-visual__sky,
html.no-resize .section1 .hero-visual__sky-right,
html.no-resize .section1 .hero-visual__sky-right-texture,
html.no-resize .section1 .hero-visual__city,
html.no-resize .section1 .hero-visual__ground-world,
html.no-resize .section1 .hero-visual__subject {
  transition: none !important;
}

.section1.hero-motion-paused .hero-visual::after,
.section1.hero-motion-paused .hero-visual__sky,
.section1.hero-motion-paused .hero-visual__city,
.section1.hero-motion-paused .hero-visual__road-motion,
.section1.hero-motion-paused .hero-visual__wash,
.section1.hero-motion-paused .hero-visual__truck-light,
.section1.hero-motion-paused .hero-motion-line {
  animation-play-state: paused !important;
}

@keyframes hero-light-pulse {
  0%, 100% {
    opacity: 0.92;
  }
  50% {
    opacity: 1;
  }
}
@keyframes hero-sky-drift {
  0% {
    transform: translate3d(-30px, -5px, 0) scale(1.018);
    opacity: 0.4;
    filter: brightness(0.94) saturate(0.96);
  }
  100% {
    transform: translate3d(34px, 5px, 0) scale(1.034);
    opacity: 0.52;
    filter: brightness(1.12) saturate(1.14);
  }
}
@keyframes hero-city-drift {
  0% {
    transform: translate3d(-18px, 2px, 0) scale(1.006);
    opacity: 0.45;
    filter: brightness(0.96);
  }
  100% {
    transform: translate3d(20px, -3px, 0) scale(1.014);
    opacity: 0.58;
    filter: brightness(1.13);
  }
}
@keyframes hero-sky-right-drift {
  0% {
    transform: translate3d(-140px, -8px, 0) scale(1.09);
    opacity: 0.78;
    filter: brightness(0.8) saturate(0.92);
  }
  100% {
    transform: translate3d(140px, 9px, 0) scale(1.09);
    opacity: 1;
    filter: brightness(1.34) saturate(1.32);
  }
}
@keyframes hero-right-cloud-bank {
  0% {
    transform: translate3d(0, -2px, 0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 0.76;
  }
  82% {
    opacity: 0.76;
  }
  100% {
    transform: translate3d(-235%, 5px, 0) scale(1.08);
    opacity: 0;
  }
}
@keyframes hero-ambient-glow {
  0% {
    opacity: 0.48;
    filter: brightness(0.9) saturate(0.94);
  }
  100% {
    opacity: 1;
    filter: brightness(1.16) saturate(1.16);
  }
}
@keyframes hero-road-flow {
  0% {
    opacity: 0.42;
    transform: translate3d(-9px, 1px, 0) scale(1.075);
    filter: brightness(0.94) saturate(1);
  }
  100% {
    opacity: 0.68;
    transform: translate3d(9px, -2px, 0) scale(1.086);
    filter: brightness(1.12) saturate(1.16);
  }
}
@keyframes hero-camera-glide {
  0% {
    transform: translate3d(-3px, 1px, 0) scale(1.008);
  }
  100% {
    transform: translate3d(4px, -2px, 0) scale(1.018);
  }
}
@keyframes hero-line-sweep {
  0%, 12% {
    opacity: 0;
    transform: translate3d(-12%, 0, 0) rotate(-8deg);
  }
  24% {
    opacity: 0.85;
  }
  58% {
    opacity: 0.28;
  }
  72%, 100% {
    opacity: 0;
    transform: translate3d(235%, 0, 0) rotate(-8deg);
  }
}
@keyframes truck-headlight-glint {
  0%, 18%, 100% {
    opacity: 0.22;
    filter: brightness(0.84);
  }
  42% {
    opacity: 0.78;
    filter: brightness(1.32);
  }
  56% {
    opacity: 0.4;
    filter: brightness(1.02);
  }
  72% {
    opacity: 0.64;
    filter: brightness(1.18);
  }
}
@media (max-width: 1023px) {
  .section1 {
    padding-top: 98px !important;
    padding-bottom: 60px !important;
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__city,
  .section1 .hero-visual__subject {
    background-position: 68% center;
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__sky-right,
  .section1 .hero-visual__city,
  .section1 .hero-visual__road-motion {
    display: none;
  }
  .section1 .hero-visual__sky-right {
    display: block;
    clip-path: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .section1 .hero-visual__sky-right-texture {
    inset: -72px;
    animation-duration: 6s;
  }
  .section1 .hero-visual__sky {
    -webkit-mask-image: linear-gradient(to bottom, #000 0 16%, rgba(0, 0, 0, 0.62) 23%, transparent 31%), linear-gradient(to right, #000 0 18%, rgba(0, 0, 0, 0.45) 25%, transparent 34%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to bottom, #000 0 16%, rgba(0, 0, 0, 0.62) 23%, transparent 31%), linear-gradient(to right, #000 0 18%, rgba(0, 0, 0, 0.45) 25%, transparent 34%);
    mask-composite: intersect;
  }
  .section1 .hero-visual__city {
    -webkit-mask-image: linear-gradient(to bottom, transparent 38%, #000 47%, rgba(0, 0, 0, 0.7) 58%, transparent 69%), linear-gradient(to right, #000 0 24%, rgba(0, 0, 0, 0.45) 34%, transparent 46%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to bottom, transparent 38%, #000 47%, rgba(0, 0, 0, 0.7) 58%, transparent 69%), linear-gradient(to right, #000 0 24%, rgba(0, 0, 0, 0.45) 34%, transparent 46%);
    mask-composite: intersect;
  }
  .section1 .hero-visual__road,
  .section1 .hero-visual__truck,
  .section1 .hero-visual__truck-light {
    background-position: 68% center;
  }
  .section1 .hero-visual__subject {
    display: block;
    inset: -36px;
    background-position: 68% center;
    background-size: cover;
    -webkit-mask-image: radial-gradient(ellipse 34% 53% at 67% 55%, #000 0 80%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
    mask-image: radial-gradient(ellipse 34% 53% at 67% 55%, #000 0 80%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  }
  .section1 .hero-visual__truck,
  .section1 .hero-visual__truck-light {
    background-position: 68% center;
    background-size: cover;
    transform: none;
  }
  .section1 .hero-visual__truck {
    background-image: url("/pics/home-hero-depth-truck-mobile-v1.webp");
  }
  .section1 .hero-content {
    width: 100%;
  }
  .section1 h1 {
    max-width: 480px;
    font-size: clamp(46px, 12.2vw, 64px);
    line-height: 0.9;
    letter-spacing: -0.035em;
  }
  .section1 .hero-signature {
    margin-block: 13px 14px;
    font-size: clamp(17px, 4.6vw, 23px);
    letter-spacing: 0.18em;
  }
  .section1 .hero-copy {
    max-width: 460px;
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.55;
  }
  .section1 .scroll-cue {
    right: 20px;
    bottom: 17px;
  }
}
@media (min-width: 1024px) {
  .section1 {
    --hero-scene-width: max(calc(100vw + 72px), calc((100svh + 72px) * 1.776833));
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__sky-right,
  .section1 .hero-visual__city,
  .section1 .hero-visual__ground-world,
  .section1 .hero-visual__subject {
    inset: auto;
    right: -36px;
    bottom: -36px;
    width: var(--hero-scene-width);
    height: auto;
    aspect-ratio: 3344/1882;
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__sky-right,
  .section1 .hero-visual__city,
  .section1 .hero-visual__road,
  .section1 .hero-visual__truck-grounding,
  .section1 .hero-visual__truck,
  .section1 .hero-visual__truck-light {
    background-position: center;
    background-size: 100% 100%;
  }
  .section1 .hero-visual__truck-grounding {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: none;
    background: radial-gradient(ellipse 11% 2.8% at 69% 82%, rgba(0, 0, 0, 0.8) 0 36%, rgba(0, 0, 0, 0.4) 58%, transparent 78%), radial-gradient(ellipse 8% 2.4% at 80% 84%, rgba(0, 0, 0, 0.86) 0 38%, rgba(0, 0, 0, 0.38) 62%, transparent 80%), radial-gradient(ellipse 12% 8% at 79% 89%, rgba(225, 20, 30, 0.18), rgba(225, 20, 30, 0.06) 38%, transparent 72%);
    transform: translate3d(-2.5%, -15%, 0) scale(1.12);
    filter: blur(7px);
    opacity: 0.9;
    pointer-events: none;
  }
  .section1 .hero-visual__truck,
  .section1 .hero-visual__truck-light {
    transform: none;
    transform-origin: center;
  }
  .section1 .hero-visual__truck {
    z-index: 3;
  }
  .section1 .hero-visual__truck-light {
    z-index: 4;
  }
  .section1 .hero-visual__subject {
    background-position: center;
    background-size: 100% 100%;
  }
}
@media (min-width: 1024px) {
  .section1 {
    align-items: center;
    padding-top: 104px !important;
    padding-bottom: 64px !important;
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__city {
    background-position: center;
  }
  .section1 .hero-visual__subject {
    background-position: center;
  }
  .section1 .hero-visual__road,
  .section1 .hero-visual__truck,
  .section1 .hero-visual__truck-light {
    background-position: center;
  }
  .section1 .hero-note {
    position: absolute;
    z-index: 2;
    top: 15%;
    right: 4%;
    display: grid;
    gap: 3px;
    padding-left: 14px;
    border-left: 2px solid #e21720;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
  }
}
@media only screen and (min-width: 1200px) {
  .section1 {
    min-height: 100vh;
    min-height: 100svh;
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__city {
    background-position: center;
  }
  .section1 .hero-visual__subject {
    background-position: center;
  }
  .section1 .hero-visual__road,
  .section1 .hero-visual__truck,
  .section1 .hero-visual__truck-light {
    background-position: center;
  }
}
@media (min-width: 1024px) and (min-aspect-ratio: 19/10) {
  .section1 {
    --hero-scene-width: calc((100svh + 72px) * 1.776833);
  }
  .section1 .hero-visual {
    background: radial-gradient(circle at 58% 52%, rgba(92, 10, 15, 0.32), transparent 36%), linear-gradient(90deg, #090204 0%, #120306 52%, #080304 100%);
  }
  .section1 .hero-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -44px;
    background: url("/pics/home-hero-driver-remastered-v2.webp") center/cover no-repeat;
    transform: translateZ(0) scale(1.04);
    filter: blur(22px) brightness(0.34) saturate(0.82);
    opacity: 0.52;
    backface-visibility: hidden;
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__sky-right,
  .section1 .hero-visual__city,
  .section1 .hero-visual__ground-world,
  .section1 .hero-visual__subject {
    right: auto;
    left: 50%;
    margin-left: calc(var(--hero-scene-width) * -0.5);
  }
  .section1 .hero-visual__road:not(.hero-visual__road-motion) {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 11%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 11%, #000 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section1 .hero-visual {
    transition-duration: 300ms;
  }
  .section1 .hero-visual__wash {
    animation: hero-light-pulse 8s ease-in-out infinite;
  }
  .section1 .hero-visual__sky,
  .section1 .hero-visual__sky-right,
  .section1 .hero-visual__city,
  .section1 .hero-visual__subject {
    transition-duration: 300ms;
  }
  .section1 .hero-visual__sky {
    animation-duration: 7.5s;
    animation-delay: -3.75s;
  }
  .section1 .hero-visual__sky-right-texture {
    animation-duration: 6s;
    animation-delay: -1.1s;
  }
  .section1 .hero-visual__city {
    animation-duration: 6.8s;
    animation-delay: -3.4s;
  }
  .section1 .hero-visual__ground-world {
    transition-duration: 300ms;
  }
  .section1 .hero-visual__road-motion {
    animation-duration: 18s;
    animation-delay: -9s;
  }
  .section1 .hero-motion-line {
    display: block;
    animation-duration: 13s;
    filter: drop-shadow(0 0 6px rgba(255, 24, 34, 0.55));
  }
  .section1 .hero-motion-line--two {
    animation-duration: 16s;
  }
}
@media (max-height: 720px) {
  .section1 {
    padding-top: 96px !important;
    padding-bottom: 48px !important;
  }
  .section1 h1 {
    font-size: clamp(43px, 10.7vw, 94px);
  }
  .section1 .hero-signature {
    margin-block: 10px 12px;
  }
  .section1 .hero-copy {
    line-height: 1.5;
  }
}
.section2 {
  background: radial-gradient(circle at 92% 8%, rgba(201, 0, 8, 0.18), transparent 28%), linear-gradient(135deg, #0b0b0b, #050505 70%);
}
.section2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background: linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.035) 46.1% 46.3%, transparent 46.4%), repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px);
}
.section2 .section-heading,
.section2 .services {
  position: relative;
  z-index: 1;
}
.section2 .services {
  width: min(100%, 1420px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.section2 .service-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 46%), rgba(13, 13, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.section2 .service-item::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -28px;
  width: 180px;
  height: 90px;
  border: 1px solid rgba(226, 23, 32, 0.34);
  transform: rotate(-13deg);
}
.section2 .service-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 3px;
  background: #e21720;
  box-shadow: 0 0 18px rgba(226, 23, 32, 0.6);
  transition: width 220ms ease;
}
.section2 .service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 23, 32, 0.62);
  background: linear-gradient(135deg, rgba(201, 0, 8, 0.13), transparent 52%), #111;
}
.section2 .service-item:hover::after {
  width: 100%;
}
.section2 .service-content {
  position: relative;
  width: 100%;
  padding: clamp(26px, 3vw, 42px);
}
.section2 .service-content .service-symbol {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  fill: none;
  stroke: #f32b34;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section2 .service-content .service-number {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}
.section2 .service-content h3 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.section2 .service-content p {
  margin-top: 14px;
  max-width: 460px;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}
.section2 .service-content .service-page-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 2px solid #d70e17;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

@media only screen and (min-width: 800px) {
  .section2 .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section2 .service-item {
    min-height: 320px;
  }
  .section2 .service-ltl,
  .section2 .service-reefer {
    transform: translateY(22px);
  }
  .section2 .service-ltl:hover,
  .section2 .service-reefer:hover {
    transform: translateY(18px);
  }
}
@media only screen and (min-width: 1200px) {
  .section2 .service-item {
    min-height: 350px;
  }
}
.section3 {
  display: grid;
  gap: clamp(40px, 7vw, 110px);
  background: linear-gradient(90deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.76) 45%, rgba(4, 4, 4, 0.32) 100%), url("/pics/home-why-real-v1.webp") 68% center/cover no-repeat;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}
.section3::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c90008 28%, transparent 88%);
  transform: rotate(-1.2deg);
  box-shadow: 0 0 16px rgba(226, 23, 32, 0.6);
}
.section3 .why-intro,
.section3 .features {
  position: relative;
  z-index: 1;
}
.section3 .why-intro {
  max-width: 560px;
}
.section3 .why-intro h2 {
  font-size: clamp(62px, 9vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.section3 .why-intro h2 span {
  color: #df111a;
}
.section3 .why-statement {
  margin: 20px 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.section3 .why-copy {
  max-width: 520px;
  line-height: 1.7;
}
.section3 .text-link {
  display: inline-flex;
  gap: 16px;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 2px solid #d60d16;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section3 .features {
  display: grid;
  gap: 12px;
}
.section3 .feature-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(145deg, rgba(11, 11, 11, 0.58), rgba(11, 11, 11, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 3px solid #c90008;
  backdrop-filter: blur(3px);
}
.section3 .feature-item .img {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #f02931;
  border: 1px solid rgba(226, 23, 32, 0.5);
  background: rgba(201, 0, 8, 0.08);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}
.section3 .feature-item .img svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section3 .feature-item .text > span {
  color: #e21720;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.section3 .feature-item h3 {
  margin: 3px 0 6px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}
.section3 .feature-item p {
  font-size: 13px;
  line-height: 1.55;
}

@media only screen and (min-width: 800px) {
  .section3 .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .section3 {
    grid-template-columns: minmax(360px, 0.8fr) minmax(580px, 1.2fr);
    align-items: center;
  }
  .section3 .feature-item {
    min-height: 150px;
    padding: 28px;
  }
}
.section4 {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.42), rgba(6, 6, 6, 0.76)), url("/pics/home-partners-warehouse-v2.webp") 68% center/cover no-repeat;
}
.section4 .section-heading,
.section4 .partners {
  position: relative;
  z-index: 1;
}
.section4 .partners {
  width: min(100%, 1420px);
  margin: 0 auto;
  display: grid;
  grid-auto-rows: 1fr;
  gap: 2px;
}
.section4 .partner-item {
  position: relative;
  min-height: 178px;
  display: grid;
  align-content: end;
  padding: 56px 26px 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(24, 24, 24, 0.72), rgba(7, 7, 7, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.section4 .partner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #df111a, transparent 80%);
}
.section4 .partner-item::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -40%;
  width: 85%;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 23, 32, 0.2);
  border-radius: 50%;
}
.section4 .partner-number {
  position: absolute;
  top: 22px;
  left: 26px;
  color: #e21720;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.section4 h3 {
  font-family: "Oswald", sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.section4 .partner-item p {
  max-width: 330px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

@media only screen and (min-width: 800px) {
  .section4 .partners {
    grid-template-columns: repeat(2, 1fr);
  }
  .section4 .partner-item {
    min-height: 220px;
    padding: 62px 28px 28px;
  }
  .section4 h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1200px) {
  .section4 .partners {
    grid-template-columns: repeat(4, 1fr);
  }
  .section4 .partner-item {
    min-height: 250px;
  }
  .section4 h3 {
    font-size: clamp(31px, 2.45vw, 42px);
  }
}
.section5 {
  padding-bottom: 0 !important;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.34), rgba(7, 7, 7, 0.58) 86%), url("/pics/home-contact-real-v1.webp") 68% top/cover no-repeat;
}
.section5 .contact-hero {
  width: min(100%, 1420px);
  min-height: 280px;
  margin: 0 auto clamp(42px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.section5 .contact-hero h2 {
  max-width: 900px;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.section5 .contact-hero h2 span {
  color: #df111a;
}
.section5 .contact-hero > p:not(.section-kicker) {
  margin: 22px 0 0;
  font-size: clamp(16px, 1.5vw, 20px);
}
.section5 .contact-layout {
  width: min(100%, 1420px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.section5 .contact-info,
.section5 .contact-side {
  display: grid;
  gap: 16px;
}
.section5 .contact {
  padding: 18px;
  background: linear-gradient(145deg, rgba(11, 11, 11, 0.42), rgba(7, 7, 7, 0.27));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #c90008;
  backdrop-filter: blur(1.5px);
}
.section5 .contact .contact-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.section5 .contact .contact-heading .department-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  padding: 8px;
  fill: none;
  stroke: #f02a33;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(201, 0, 8, 0.1);
  border: 1px solid rgba(226, 23, 32, 0.38);
}
.section5 .contact .contact-heading span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section5 .contact .contact-heading h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.section5 .contact .contact-actions {
  display: grid;
  gap: 8px;
  margin-top: 17px;
}
.section5 .contact .contact-action {
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255, 255, 255, 0.075);
  transition: background 160ms ease, border-color 160ms ease;
}
.section5 .contact .contact-action > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #f02a33;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section5 .contact .contact-action > span {
  min-width: 0;
}
.section5 .contact .contact-action small {
  display: block;
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.section5 .contact .contact-action strong {
  display: block;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.section5 .contact .contact-action i {
  color: #ef252e;
  font-size: 16px;
  font-style: normal;
}
.section5 .contact .contact-action:hover {
  background: rgba(201, 0, 8, 0.11);
  border-color: rgba(226, 23, 32, 0.35);
}
.section5 .contact.contact-address .contact-action {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 17px;
}
.section5 .contact-map {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.section5 .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}
.section5 .site-footer {
  width: calc(100% + 2 * clamp(20px, 5vw, 82px));
  margin: clamp(70px, 9vw, 130px) calc(-1 * clamp(20px, 5vw, 82px)) 0;
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 82px);
  color: #fff;
  background: rgba(4, 4, 4, 0.96);
  border-top: 3px solid #c90008;
}
.section5 .site-footer .footer-wordmark {
  display: grid;
  justify-self: start;
  line-height: 1;
}
.section5 .site-footer .footer-wordmark strong {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.section5 .site-footer .footer-wordmark b {
  margin-right: 5px;
  color: #ed2029;
}
.section5 .site-footer .footer-wordmark small {
  margin-top: 5px;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.section5 .site-footer p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.section5 .site-footer > span:last-child {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
}

@media only screen and (min-width: 800px) {
  .section5 .contact-hero {
    min-height: 360px;
  }
  .section5 .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
  .section5 .contact-side {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }
  .section5 .contact-map, .section5 .contact-map iframe {
    min-height: 320px;
  }
  .section5 .site-footer {
    grid-template-columns: auto 1fr auto;
    gap: 36px;
  }
}
@media only screen and (min-width: 1200px) {
  .section5 .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }
  .section5 .contact-side {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .section5 .contact-map, .section5 .contact-map iframe {
    min-height: 100%;
  }
}
@media (max-width: 380px) {
  .section5 .contact .contact-action {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 8px;
    padding-inline: 9px;
  }
  .section5 .contact .contact-action strong {
    font-size: 11px;
  }
}
.section6 {
  background: linear-gradient(145deg, #0d0d0d, #050505);
}
.section6 .section-heading,
.section6 .story-links {
  position: relative;
  z-index: 1;
}
.section6 .story-links {
  width: min(100%, 1420px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.section6 .story-link {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.section6 .story-link > span {
  position: absolute;
  top: 22px;
  left: 25px;
  color: #ed2029;
  font-size: 10px;
  letter-spacing: 0.18em;
}
.section6 .story-link h3 {
  font-size: clamp(27px, 3vw, 42px);
  text-transform: uppercase;
}
.section6 .story-link p {
  max-width: 330px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}
.section6 .story-link i {
  position: absolute;
  top: 19px;
  right: 23px;
  color: #ed2029;
  font-size: 22px;
  font-style: normal;
}
.section6 .story-link:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 23, 32, 0.5);
  background: rgba(201, 0, 8, 0.08);
}

@media only screen and (min-width: 800px) {
  .section6 .story-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1200px) {
  .section6 .story-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.page.home {
  width: 100%;
  overflow: hidden;
  background: #070707;
}
.page.home section {
  position: relative;
  width: 100%;
  scroll-margin-top: 74px;
  padding: clamp(68px, 8vw, 126px) clamp(20px, 5vw, 82px);
}
.page.home .section-kicker,
.page.home .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ee252e;
}
.page.home .section-kicker::after,
.page.home .eyebrow::after {
  content: "";
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, #e21720, transparent);
}
.page.home .section-heading {
  width: min(100%, 1420px);
  margin: 0 auto clamp(34px, 5vw, 72px);
  display: grid;
  gap: 18px;
}
.page.home .section-heading h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.page.home .section-heading > p {
  max-width: 520px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}
.page.home .button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.page.home .button:hover {
  transform: translateY(-2px);
}
.page.home .button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.page.home .button-primary {
  color: #fff;
  background: #c90008;
  clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
  box-shadow: 0 0 26px rgba(201, 0, 8, 0.28);
}
.page.home .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

@media only screen and (min-width: 800px) {
  .page.home section {
    scroll-margin-top: 88px;
  }
  .page.home .section-heading {
    grid-template-columns: 1fr minmax(280px, 0.55fr);
    align-items: end;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.content-page {
  min-height: 100dvh;
  background: #070707;
}
.content-page .inner-hero {
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  padding: max(120px, 18svh) clamp(20px, 6vw, 92px) clamp(64px, 9vw, 116px);
  background-size: cover;
  background-position: center;
}
.content-page .inner-hero > div {
  width: min(840px, 100%);
}
.content-page .inner-hero h1 {
  font-size: clamp(55px, 9vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.content-page .inner-hero .hero-lead {
  max-width: 650px;
  margin-top: 24px;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}
.content-page .page-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  color: #ef252e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.content-page .page-kicker::after {
  content: "";
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #e21720, transparent);
}
.content-page .page-cta {
  display: inline-flex;
  gap: 22px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 2px solid #d80d16;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.content-page .page-section {
  padding: clamp(70px, 9vw, 140px) clamp(20px, 6vw, 92px);
}
.content-page .page-section > * {
  position: relative;
  z-index: 1;
}
.content-page .page-section h2,
.content-page .next-page h2 {
  font-size: clamp(43px, 7vw, 94px);
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.content-page .split-story {
  display: grid;
  gap: 36px;
  background: #0a0a0a;
}
.content-page .split-story > div:first-child {
  max-width: 670px;
}
.content-page .prose {
  max-width: 680px;
  display: grid;
  gap: 22px;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.75;
}
.content-page .dark-panel {
  background: linear-gradient(145deg, #111, #050505);
}
.content-page .dark-panel > h2 {
  max-width: 920px;
}
.content-page .value-grid {
  margin-top: clamp(42px, 6vw, 80px);
  display: grid;
  gap: 10px;
}
.content-page .value-grid article {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 3px solid #c90008;
}
.content-page .value-grid article > span {
  color: #ed2029;
  font-size: 10px;
  letter-spacing: 0.18em;
}
.content-page .value-grid h3 {
  margin-top: 50px;
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
}
.content-page .value-grid p {
  margin-top: 11px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}
.content-page .process-section {
  display: grid;
  gap: 40px;
  background: #090909;
}
.content-page .process-section > div:first-child {
  min-width: 0;
  max-width: 720px;
}
.content-page .process-section > div:first-child h2 {
  font-size: clamp(43px, 4.5vw, 78px);
  overflow-wrap: normal;
}
.content-page .process-list {
  display: grid;
}
.content-page .process-list,
.content-page .process-list li,
.content-page .process-list li > div {
  min-width: 0;
}
.content-page .process-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.content-page .process-list li > span {
  color: #ed2029;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.content-page .process-list h3 {
  font-size: 24px;
  text-transform: uppercase;
}
.content-page .process-list p {
  margin-top: 7px;
  line-height: 1.6;
}
.content-page .service-detail-grid {
  display: grid;
  gap: 10px;
  background: #090909;
}
.content-page .service-detail-grid article {
  padding: clamp(26px, 4vw, 48px);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.content-page .service-detail-grid article > span {
  color: #ed2029;
  font-size: 11px;
  letter-spacing: 0.2em;
}
.content-page .service-detail-grid h2 {
  margin-top: 44px;
  font-size: clamp(34px, 4vw, 56px);
}
.content-page .service-detail-grid p {
  margin-top: 18px;
  max-width: 560px;
  line-height: 1.65;
}
.content-page .service-detail-grid ul {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}
.content-page .service-detail-grid li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
}
.content-page .service-detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 2px;
  background: #e21720;
}
.content-page .service-detail-grid .detail-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 2px solid #e21720;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.content-page .service-detail-grid .detail-link b {
  color: #ed2029;
  transition: transform 0.2s ease;
}
.content-page .service-detail-grid .detail-link:hover b {
  transform: translateX(5px);
}
.content-page .statement-band {
  text-align: center;
  background: #c90008;
}
.content-page .statement-band p {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}
.content-page .next-page {
  padding: clamp(76px, 11vw, 160px) clamp(20px, 6vw, 92px);
  background: linear-gradient(135deg, rgba(201, 0, 8, 0.2), #080808 56%);
}
.content-page .next-page > p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.56);
}
.content-page .next-page a {
  display: inline-flex;
  gap: 20px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 2px solid #e21720;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.drivers-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22)), url("/pics/drivers-careers-hero-v2.webp");
  background-position: 68% center;
}

.services-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.24)), url("/pics/services-hero-real-v1.webp");
  background-position: 68% center;
}

.safety-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.24)), url("/pics/safety-hero-real-v1.webp");
  background-position: 68% center;
}

.about-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.22)), url("/pics/about-hero-real-v1.webp");
  background-position: 68% center;
}

.ftl-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2)), url("/pics/ftl-hero-real-v1.webp");
  background-position: 68% center;
}

.ltl-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2)), url("/pics/ltl-hero-real-v1.webp");
  background-position: 68% center;
}

.cross-border-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2)), url("/pics/cross-border-hero-real-v1.webp");
  background-position: 68% center;
}

.reefer-page .inner-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2)), url("/pics/reefer-hero-real-v1.webp");
  background-position: 68% center;
}

.standalone-contact .section5 {
  padding-top: max(110px, 14svh) !important;
}

@media only screen and (min-width: 800px) {
  .content-page .split-story {
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    align-items: start;
  }
  .content-page .value-grid,
  .content-page .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-page .process-section {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(54px, 7vw, 128px);
  }
}
@media only screen and (min-width: 1200px) {
  .drivers-page .inner-hero {
    background-color: #070707;
    background-size: 100% 100%, auto 100%;
    background-position: center, right center;
    background-repeat: no-repeat;
  }
  .content-page .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/*# sourceMappingURL=main-motion-202609153035.css.map */
