:root {
  --orange: #ff6a00;
  --orange-hot: #ff9a1f;
  --black: #040404;
  --ink: #0b0b0b;
  --smoke: #a8a19b;
  --white: #fff5e8;
  --line: rgba(255, 245, 232, 0.16);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 106, 0, 0.22), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0d0805 42%, #050505 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.is-loading,
body.nav-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: rgba(255, 245, 232, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot), #fff0c4);
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.72);
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
}

.film-grain,
.vignette {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  transform: translateZ(0);
}

.film-grain {
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 64%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px);
  background-size: 17px 19px, 23px 29px;
}

.vignette {
  background:
    radial-gradient(circle at 50% 45%, transparent 0 42%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.36));
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #030303;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__frame {
  width: min(420px, calc(100vw - 48px));
}

.loader__eyebrow,
.kicker {
  display: block;
  color: var(--orange-hot);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loader__count {
  display: block;
  margin: 18px 0;
  font-size: clamp(4rem, 16vw, 9rem);
  line-height: 0.85;
}

.loader__bar {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader__bar span {
  display: block;
  width: var(--load, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.8);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 96;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 16px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: background 260ms ease, min-height 260ms ease, padding 260ms ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  min-height: 64px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(0, 0, 0, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand__logo {
  width: 64px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-nav {
  position: fixed;
  top: 22px;
  right: 92px;
  z-index: 97;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 245, 232, 0.12);
  background: rgba(0, 0, 0, 0.54);
  color: rgba(255, 245, 232, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateZ(0);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-header.is-scrolled .site-nav,
body.nav-open .site-nav {
  border-color: rgba(255, 154, 31, 0.24);
  background: rgba(0, 0, 0, 0.82);
}

.site-nav a {
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--orange-hot);
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 245, 232, 0.28);
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  grid-area: 1 / 1;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 240ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-5px);
}

.nav-toggle span:last-child {
  transform: translateY(5px);
}

body.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: var(--header-h) clamp(22px, 6vw, 84px) clamp(34px, 8vh, 96px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.94) 44%, #020202),
    radial-gradient(circle at 78% 52%, rgba(255, 106, 0, 0.22), transparent 30rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
  transition: opacity 280ms ease, visibility 280ms ease, transform 280ms ease;
}

body.nav-open .nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav-panel__inner {
  display: grid;
  gap: clamp(14px, 2.2vh, 24px);
  text-align: right;
}

.nav-panel a {
  color: var(--white);
  font-size: clamp(2.7rem, 9vw, 8rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.8);
  transition: color 180ms ease, transform 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--orange-hot);
  transform: translateX(-10px);
}

.story-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210svh;
  padding: clamp(88px, 12vh, 132px) 20px;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
}

.story-panel--blank {
  min-height: 200svh;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 106, 0, 0.08), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0a0908 46%, #050505 100%);
}

.story-panel--title-card {
  display: block;
  min-height: 360svh;
  margin-top: -100svh;
  padding: 0 20px;
  z-index: 6;
}

.story-panel--image {
  min-height: 220svh;
  padding: 0;
}

.story-panel--hero {
  min-height: 100svh;
}

.story-panel--image::before,
.story-panel--image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.story-panel--image::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.9));
}

.story-panel--image::after {
  z-index: 3;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255, 122, 20, 0.12) 46%, transparent 58%),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 106, 0, 0.12), transparent 24rem);
  mix-blend-mode: screen;
}

.story-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.story-panel__bg--vehicle {
  object-position: 60% 50%;
}

.story-panel__center,
.story-panel__card,
.story-panel__copy {
  position: relative;
  z-index: 4;
  width: min(860px, calc(100vw - 48px));
}

.story-title,
.story-title-in-card {
  width: min(2200px, 188vw);
  color: rgba(255, 106, 0, 0.86);
  font-weight: 950;
  line-height: 0.72;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 16px 80px rgba(0, 0, 0, 0.9);
}

.story-title span,
.story-title-in-card span {
  display: block;
  font-size: clamp(6rem, 22vw, 24rem);
  letter-spacing: 0;
}

.story-panel__card,
.story-panel__copy {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 245, 232, 0.08);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.78));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.story-panel__card h1,
.story-panel__copy h2 {
  max-width: none;
  margin-top: 12px;
  color: var(--orange);
}

.story-panel__card--with-title {
  position: sticky;
  top: 50svh;
  z-index: 5;
  width: min(860px, calc(100vw - 48px));
  min-height: clamp(420px, 52vh, 560px);
  margin: 0 auto;
  padding-top: clamp(26px, 3vw, 34px);
  transform: translateY(-50%);
  overflow: visible;
}

.story-panel__title-slot {
  position: relative;
  display: grid;
  height: clamp(250px, 32vh, 360px);
  place-items: center;
  overflow: visible;
}

.story-title-in-card {
  width: min(720px, 100%);
  opacity: 1;
  will-change: transform, opacity, filter;
}

.story-title-in-card span {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.86;
}

.story-panel__card h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.9;
}

.story-panel__copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.story-panel__card p:last-child,
.story-panel__copy p:last-child {
  margin: 18px auto 0;
  max-width: 34ch;
  color: rgba(255, 245, 232, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.55;
}

.story-panel__copy--left {
  margin-left: clamp(20px, 8vw, 108px);
  margin-right: auto;
  text-align: left;
}

.story-panel__copy--left .kicker,
.story-panel__copy--left h2,
.story-panel__copy--left p:last-child {
  max-width: 24rem;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.opening-sequence {
  position: relative;
  height: 720svh;
  background: #020202;
}

.opening-sequence__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
}

.opening-sequence__sticky::before,
.opening-sequence__sticky::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.opening-sequence__sticky::before {
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.14) 46%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.86));
}

.opening-sequence__sticky::after {
  z-index: 6;
  opacity: 0.72;
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(255, 122, 20, 0.16) 46%, transparent 58%) var(--opening-sweep, -35%) 0 / 180% 100% no-repeat,
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 106, 0, 0.16), transparent 24rem);
}

.opening-sequence__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.opening-sequence__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opening-sequence__layer--truck {
  opacity: 1;
}

.opening-sequence__layer--truck img:first-child,
.opening-sequence__layer--underpass img:first-child,
.opening-sequence__layer--rescue img:first-child,
.opening-sequence__layer--car > img:first-child {
  transform: scale(var(--bg-scale, 1)) translate3d(var(--bg-x, 0), var(--bg-y, 0), 0);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.opening-sequence__truck,
.opening-sequence__car {
  display: none;
}

.opening-sequence__layer--car > img:first-child {
  object-position: 60% 50%;
}

.opening-sequence__layer--rescue > img:first-child {
  object-position: 60% 50%;
}

.opening-sequence__layer--car::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 74% 72%, rgba(255, 106, 0, 0.2), transparent 24rem);
  pointer-events: none;
}

.opening-sequence__road {
  display: none;
}

.opening-sequence__giant-title,
.opening-sequence__card,
.opening-sequence__story,
.opening-sequence__vehicle-copy {
  position: absolute;
  left: 50%;
  z-index: 8;
  will-change: transform, opacity;
}

.opening-sequence__giant-title {
  top: 50%;
  width: min(2200px, 182vw);
  max-width: none;
  color: rgba(255, 106, 0, 0.8);
  font-weight: 950;
  line-height: 0.72;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(-50%, -50%, 0) scale(1.35);
  opacity: 0;
  mix-blend-mode: normal;
  text-shadow: 0 12px 80px rgba(0, 0, 0, 0.94);
  backface-visibility: hidden;
}

.opening-sequence__giant-title span {
  display: block;
  font-size: clamp(7rem, 26vw, 25rem);
  letter-spacing: 0;
}

.opening-sequence__card,
.opening-sequence__story,
.opening-sequence__vehicle-copy {
  width: min(760px, calc(100vw - 48px));
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 245, 232, 0.08);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.68), rgba(8, 8, 8, 0.78));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  overflow: hidden;
  backface-visibility: hidden;
}

.opening-sequence__card {
  top: 50%;
}

.opening-sequence__story,
.opening-sequence__vehicle-copy {
  top: 55%;
}

.opening-sequence__card h2,
.opening-sequence__story h2,
.opening-sequence__vehicle-copy h2 {
  max-width: none;
  margin-top: 12px;
}

.opening-sequence__card h2 {
  color: var(--orange);
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.9;
}

.opening-sequence__story h2,
.opening-sequence__vehicle-copy h2 {
  color: var(--orange);
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 0.92;
}

.opening-sequence__card p:last-child,
.opening-sequence__story p:last-child,
.opening-sequence__vehicle-copy p:last-child {
  margin: 18px auto 0;
  max-width: 34ch;
  color: rgba(255, 245, 232, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.55;
}

.opening-sequence__vehicle-copy {
  width: min(980px, calc(100vw - 48px));
}

.opening-sequence__vehicle-copy h2,
.opening-sequence__vehicle-copy p:last-child,
.opening-sequence__vehicle-copy .kicker {
  max-width: min(620px, 42vw);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.opening-sequence__vehicle-copy {
  top: clamp(138px, 24vh, 220px);
  left: clamp(24px, 8vw, 110px);
  transform: none;
  text-align: left;
}

.opening-sequence__vehicle-copy .kicker,
.opening-sequence__vehicle-copy h2 {
  margin-top: 0;
}

.opening-sequence__vehicle-copy p:last-child {
  margin-top: 18px;
}

.opening-sequence__vehicle-copy h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  line-height: 0.94;
}

.opening-sequence__card .kicker,
.opening-sequence__card h2,
.opening-sequence__card p:last-child,
.opening-sequence__story .kicker,
.opening-sequence__story h2,
.opening-sequence__story p:last-child,
.opening-sequence__vehicle-copy .kicker,
.opening-sequence__vehicle-copy h2,
.opening-sequence__vehicle-copy p:last-child {
  will-change: transform, opacity, clip-path;
}

.cinematic-panel {
  position: relative;
  min-height: 150svh;
  overflow: hidden;
  isolation: isolate;
  --scene-wipe: 0%;
  --light-sweep: -35%;
}

.media-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100svh;
  transform: translate3d(var(--x, 0), var(--y, 0), 0) scale(var(--scale, 1));
  transform-origin: var(--origin-x, 50%) var(--origin-y, 50%);
  opacity: var(--fade, 1);
  filter: saturate(1.15) contrast(1.08) blur(var(--blur, 0px));
  will-change: transform, opacity, filter;
  clip-path: inset(0 var(--scene-wipe) 0 0);
}

.media-layer img {
  transform: translate3d(var(--img-x, 0), var(--img-y, 0), 0) scale(var(--img-scale, 1));
  will-change: transform;
}

.media-layer::after,
.cinematic-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.media-layer::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.76)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.86));
}

.cinematic-panel::after {
  z-index: 1;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255, 122, 20, 0.18) 46%, transparent 58%) var(--light-sweep) 0 / 180% 100% no-repeat,
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 106, 0, 0.18), transparent 24rem);
  mix-blend-mode: screen;
}

.scene-marker {
  position: absolute;
  top: clamp(92px, 12vh, 132px);
  right: clamp(20px, 5vw, 72px);
  z-index: 3;
  color: rgba(255, 245, 232, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.8);
}

.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: clamp(18px, 4vh, 42px);
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 245, 232, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  pointer-events: none;
  will-change: transform, opacity;
}

.scroll-cue__mouse {
  position: relative;
  width: 34px;
  height: 56px;
  border: 2px solid rgba(255, 245, 232, 0.82);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 245, 232, 0.08), rgba(255, 245, 232, 0.01));
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.46);
}

.scroll-cue__wheel {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange-hot);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(255, 154, 31, 0.72);
  animation: scrollCueWheel 1.6s ease-in-out infinite;
}

.scroll-cue__label {
  font-size: 0.68rem;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.86);
}

@keyframes scrollCueWheel {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.3;
  }

  40% {
    transform: translateX(-50%) translateY(10px);
    opacity: 1;
  }

  70% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0.4;
  }
}

.scene-marker--dark {
  color: rgba(255, 154, 31, 0.54);
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 6px);
}

.hero {
  display: grid;
  align-items: end;
  min-height: 130svh;
  padding: 0;
}

.home-hero {
  min-height: 180svh;
  background: #030303;
}

.blog-hero {
  min-height: 120svh;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  width: min(980px, 100%);
  margin-top: 0;
  padding: var(--header-h) clamp(20px, 7vw, 96px) clamp(52px, 10vh, 96px);
  text-shadow: 0 6px 36px rgba(0, 0, 0, 0.78);
}

.hero__content--minimal {
  justify-content: flex-end;
  padding-bottom: clamp(78px, 12vh, 132px);
}

.hero__content--minimal h1 {
  max-width: 12ch;
}

.hero-title-lockup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  gap: 0.04em;
  width: min(1440px, calc(100vw - 32px));
  color: var(--orange);
  font-weight: 950;
  line-height: 0.74;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 0 28px rgba(255, 106, 0, 0.22),
    0 18px 80px rgba(0, 0, 0, 0.9);
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: normal;
  will-change: transform, opacity, letter-spacing, filter;
}

.hero-title-lockup span {
  display: block;
  font-size: clamp(4.6rem, 15vw, 15rem);
  letter-spacing: 0;
}

.hero-truck {
  position: fixed;
  left: 50%;
  bottom: clamp(-130px, -14vw, -68px);
  z-index: 2;
  width: min(78vw, 980px);
  height: auto;
  pointer-events: none;
  transform: translate3d(-50%, var(--truck-y, 0), 0) scale(var(--truck-scale, 0.72));
  transform-origin: 50% 86%;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.82)) saturate(1.08) contrast(1.08);
  opacity: var(--truck-opacity, 0);
  mix-blend-mode: screen;
  will-change: transform, opacity, filter;
}

.road-lines {
  position: fixed;
  left: 50%;
  bottom: -8vh;
  z-index: 1;
  width: min(92vw, 1100px);
  height: 44vh;
  transform: translateX(-50%) perspective(620px) rotateX(62deg) translateY(var(--road-y, 0));
  transform-origin: 50% 100%;
  opacity: var(--road-opacity, 0);
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 154, 31, 0.9) 49% 51%, transparent 54% 100%),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(255, 106, 0, 0.42) 35px 38px, transparent 39px 76px);
  mask-image: linear-gradient(180deg, transparent, #000 28%, #000 76%, transparent);
  will-change: transform, opacity;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 14px;
  max-width: 11ch;
  font-size: clamp(4.2rem, 14vw, 13rem);
  line-height: 0.8;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 7vw, 6.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero__copy {
  width: min(620px, 100%);
  margin-top: 28px;
  color: rgba(255, 245, 232, 0.82);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 22px;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: #120700;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 36px rgba(255, 106, 0, 0.34);
}

.cta--dark {
  background: transparent;
  color: var(--white);
}

.intro-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 44px;
  padding: clamp(72px, 12vw, 150px) clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #060606;
  overflow: hidden;
  --dispatch-pan: 0%;
  --dispatch-glow: 0.72;
}

.intro-section::before,
.service-section::before {
  position: absolute;
  inset: -20% -10%;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 106, 0, 0.2), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(255, 154, 31, 0.12), transparent 28rem);
  opacity: 0.72;
  opacity: var(--dispatch-glow, 0.72);
  transform: translate3d(var(--dispatch-pan, 0%), 0, 0);
  pointer-events: none;
}

.intro-copy h2 {
  max-width: 920px;
  margin-top: 14px;
}

.intro-copy,
.intro-stat {
  position: relative;
  z-index: 2;
}

.intro-stat {
  align-self: end;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

.intro-stat span {
  display: block;
  color: var(--orange-hot);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.8;
}

.intro-stat p,
.story__content p,
.service-grid p {
  color: rgba(255, 245, 232, 0.74);
  line-height: 1.6;
}

.story {
  display: grid;
  align-items: center;
  min-height: 130svh;
  padding: 0;
}

.story__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  width: min(620px, 100%);
  margin-top: 0;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 7vw, 96px);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.75);
}

.story--right .story__content {
  margin-left: auto;
}

.story__content h2 {
  margin-top: 12px;
}

.story__content p:not(.kicker) {
  margin-top: 24px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.service-section {
  position: relative;
  padding: clamp(72px, 12vw, 140px) clamp(20px, 7vw, 96px);
  background:
    linear-gradient(180deg, #050505, #120802 48%, #050505),
    radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.22), transparent 38rem);
  overflow: hidden;
  perspective: 1200px;
}

.section-heading {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

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

.service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(40px, 7vw, 86px);
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  background: rgba(4, 4, 4, 0.86);
  transform: translateZ(0);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.service-grid article:nth-child(even) {
  background: rgba(12, 8, 5, 0.9);
}

.service-grid span {
  display: block;
  margin-bottom: 64px;
  color: var(--orange-hot);
  font-weight: 900;
}

.service-grid p {
  margin-top: 18px;
}

.closing {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 72px 20px;
  text-align: center;
  background: #050505;
  --closing-fog: 0%;
}

.closing::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% var(--closing-fog), rgba(255, 106, 0, 0.24), transparent 28rem),
    linear-gradient(180deg, rgba(255, 106, 0, 0.08), transparent 46%);
  pointer-events: none;
}

.closing__glow {
  position: absolute;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 106, 0, 0.42);
  transform: rotate(45deg) scale(var(--closing-scale, 0.78));
  box-shadow: inset 0 0 80px rgba(255, 106, 0, 0.14), 0 0 120px rgba(255, 106, 0, 0.2);
  opacity: 0.76;
}

.closing__content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.closing h2 {
  margin-top: 12px;
}

.closing__copy {
  width: min(660px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 245, 232, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.seo-service-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  padding: clamp(72px, 11vw, 150px) clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 106, 0, 0.14), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #0b0907 50%, #050505 100%);
}

.seo-service-section__content h2 {
  max-width: 760px;
  margin-top: 12px;
  color: var(--orange);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.seo-service-section__content p:not(.kicker) {
  max-width: 72ch;
  margin-top: 22px;
  color: rgba(255, 245, 232, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.seo-service-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(5, 5, 5, 0.86);
}

.seo-service-grid h3 {
  color: var(--white);
}

.seo-service-grid p {
  margin-top: 18px;
  color: rgba(255, 245, 232, 0.72);
  line-height: 1.65;
}

.blog-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 106, 0, 0.18), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #0b0a09 46%, #050505 100%);
}

.blog-main {
  padding-top: var(--header-h);
}

.blog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(32px, 6vw, 76px);
  align-items: end;
  padding: clamp(86px, 12vw, 150px) clamp(20px, 7vw, 96px) clamp(54px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 106, 0, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.74));
}

.blog-header h1 {
  max-width: 12ch;
  color: var(--orange);
  font-size: clamp(3.6rem, 10vw, 9.5rem);
}

.blog-header p {
  width: min(760px, 100%);
  margin-top: 26px;
  color: rgba(255, 245, 232, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.text-link {
  color: var(--orange-hot);
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 154, 31, 0.5);
}

.blog-header__panel,
.sidebar-card {
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.blog-header__panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.blog-header__panel span {
  color: var(--orange-hot);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-header__panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 245, 232, 0.12);
  color: rgba(255, 245, 232, 0.84);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 150px;
  padding: 28px clamp(20px, 4vw, 42px);
  background: rgba(5, 5, 5, 0.9);
}

.trust-strip strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-strip span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 245, 232, 0.7);
  line-height: 1.5;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.featured-post img {
  min-height: 380px;
  max-height: 620px;
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.featured-post__content h2,
.seo-article h2,
.faq-section h2 {
  margin-top: 12px;
  color: var(--orange);
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 0.96;
}

.featured-post__content p,
.seo-article p,
.faq-grid p,
.sidebar-card p,
.sidebar-card li {
  color: rgba(255, 245, 232, 0.76);
  line-height: 1.7;
}

.featured-post__content p {
  margin-top: 24px;
  font-size: 1.08rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 840px) minmax(250px, 320px);
  gap: clamp(32px, 4vw, 58px);
  align-items: start;
  justify-content: center;
  padding: clamp(58px, 10vw, 120px) clamp(20px, 7vw, 96px);
}

.seo-article {
  max-width: 840px;
  width: 100%;
  padding-bottom: clamp(46px, 7vw, 86px);
  border-bottom: 1px solid rgba(255, 245, 232, 0.12);
}

.seo-article:nth-of-type(n + 3) {
  grid-column: 1;
  width: 100%;
}

.seo-article h3 {
  margin-top: 30px;
  color: rgba(255, 154, 31, 0.9);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.seo-article p {
  margin-top: 18px;
  max-width: 76ch;
  font-size: 1.04rem;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
}

.sidebar-card h2 {
  color: var(--orange-hot);
  font-size: 1.35rem;
  line-height: 1.1;
}

.sidebar-card p,
.sidebar-card ul {
  margin-top: 16px;
}

.sidebar-card ul {
  padding-left: 18px;
}

.sidebar-card li + li {
  margin-top: 9px;
}

.faq-section {
  padding: clamp(58px, 10vw, 120px) clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: #060606;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-grid article {
  min-height: 230px;
  padding: 26px;
  background: rgba(5, 5, 5, 0.88);
}

.faq-grid h3 {
  margin-bottom: 16px;
}

[data-reveal] {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 780ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 780ms ease;
}

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

@media (max-width: 920px) {
  .story-panel {
    min-height: 180svh;
  }

  .story-panel--blank {
    min-height: 170svh;
  }

  .story-panel--image {
    min-height: 190svh;
  }

  .story-panel--hero {
    min-height: 100svh;
  }

  .story-title {
    width: 196vw;
  }

  .story-title span,
  .story-title-in-card span {
    font-size: clamp(5.4rem, 20vw, 14rem);
  }

  .story-title-in-card span {
    font-size: clamp(3rem, 8vw, 5.4rem);
  }

  .opening-sequence {
    height: 640svh;
  }

  .opening-sequence__giant-title {
    width: min(1600px, 188vw);
    max-width: none;
  }

  .opening-sequence__giant-title span {
    font-size: clamp(5.4rem, 20vw, 14rem);
  }

  .opening-sequence__card,
  .opening-sequence__story,
  .opening-sequence__vehicle-copy {
    width: min(720px, calc(100vw - 36px));
  }

  .opening-sequence__vehicle-copy {
    left: 24px;
    top: clamp(128px, 22vh, 178px);
  }

  .site-header {
    gap: 18px;
    padding-inline: 16px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .intro-section,
  .service-grid,
  .blog-header,
  .featured-post,
  .blog-layout,
  .faq-grid,
  .trust-strip,
  .seo-service-section,
  .seo-service-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .intro-stat {
    align-self: start;
  }

  .service-grid article {
    min-height: 210px;
  }

  .service-grid span {
    margin-bottom: 36px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 92px;
  }

  .story-panel {
    min-height: 160svh;
    padding: 110px 14px 76px;
  }

  .story-panel--blank {
    min-height: 150svh;
  }

  .story-panel--image {
    min-height: 170svh;
  }

  .story-panel--hero {
    min-height: 100svh;
  }

  .story-title {
    width: 230vw;
  }

  .story-title span,
  .story-title-in-card span {
    font-size: clamp(4.8rem, 24vw, 8rem);
    line-height: 0.8;
  }

  .story-title-in-card span {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .story-panel__center,
  .story-panel__card,
  .story-panel__copy {
    width: calc(100vw - 28px);
  }

  .story-panel__card,
  .story-panel__copy {
    padding: 18px 16px;
  }

  .story-panel__title-slot {
    height: 220px;
  }

  .story-panel__card h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .story-panel__copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .story-panel__card p:last-child,
  .story-panel__copy p:last-child {
    max-width: 30ch;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .story-panel__copy--left {
    margin-left: 0;
  }

  .story-panel__copy--left .kicker,
  .story-panel__copy--left h2,
  .story-panel__copy--left p:last-child {
    max-width: none;
  }

  .opening-sequence {
    height: 540svh;
  }

  .opening-sequence__sticky::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.26) 46%, rgba(0, 0, 0, 0.86)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.9));
  }

  .opening-sequence__giant-title {
    width: 220vw;
    max-width: none;
  }

  .opening-sequence__giant-title span {
    font-size: clamp(4.8rem, 24vw, 8rem);
    line-height: 0.8;
  }

  .opening-sequence__card,
  .opening-sequence__story,
  .opening-sequence__vehicle-copy {
    width: calc(100vw - 28px);
    padding: 18px 16px;
  }

  .opening-sequence__card {
    top: 52%;
  }

  .opening-sequence__story,
  .opening-sequence__vehicle-copy {
    top: 58%;
  }

  .opening-sequence__card h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .opening-sequence__story h2,
  .opening-sequence__vehicle-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .opening-sequence__card p:last-child,
  .opening-sequence__story p:last-child,
  .opening-sequence__vehicle-copy p:last-child {
    max-width: 30ch;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .opening-sequence__vehicle-copy {
    top: clamp(120px, 18vh, 152px);
    left: 14px;
    transform: none;
  }

  .opening-sequence__vehicle-copy h2,
  .opening-sequence__vehicle-copy p:last-child,
  .opening-sequence__vehicle-copy .kicker {
    max-width: 92vw;
  }

  .site-header {
    align-items: center;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .brand {
    gap: 10px;
    max-width: 100%;
    font-size: 0.78rem;
  }

  .brand__logo {
    width: 52px;
    height: 38px;
  }

  .brand span:last-child {
    max-width: 12ch;
  }

  .nav-toggle {
    width: 42px;
  }

  .nav-panel {
    justify-items: start;
    padding-inline: 16px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84), #020202 42%),
      radial-gradient(circle at 32% 72%, rgba(255, 106, 0, 0.22), transparent 22rem);
  }

  .nav-panel__inner {
    text-align: left;
  }

  .nav-panel a:hover,
  .nav-panel a:focus-visible {
    transform: translateX(6px);
  }

  h1 {
    font-size: clamp(3.4rem, 22vw, 6.8rem);
  }

  .blog-header h1 {
    font-size: clamp(3rem, 17vw, 5.8rem);
  }

  .blog-main {
    overflow-x: clip;
  }

  .blog-header,
  .featured-post,
  .blog-layout,
  .faq-section,
  .seo-service-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-header {
    gap: 22px;
    padding-top: 110px;
  }

  .blog-header p,
  .featured-post__content p,
  .seo-article p,
  .faq-grid p,
  .sidebar-card p,
  .sidebar-card li,
  .trust-strip span {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .blog-hero-actions {
    gap: 12px;
  }

  .blog-header__panel,
  .sidebar-card {
    padding: 18px;
  }

  .trust-strip div,
  .faq-grid article {
    min-height: 0;
    padding: 20px 16px;
  }

  .featured-post img {
    min-height: 260px;
    max-height: 320px;
  }

  .scroll-cue {
    bottom: 14px;
    gap: 8px;
  }

  .scroll-cue__mouse {
    width: 30px;
    height: 48px;
  }

  .scroll-cue__label {
    font-size: 0.6rem;
  }

  .media-layer {
    position: absolute;
    height: 100%;
    clip-path: none;
  }

  .scene-marker {
    top: auto;
    right: 12px;
    bottom: 126px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .media-layer::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.36)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.16) 45%, rgba(0, 0, 0, 0.9));
  }

  .closing {
    padding: 72px 16px;
  }

  .closing__content {
    width: 100%;
  }

  .closing h2,
  .featured-post__content h2,
  .seo-article h2,
  .faq-section h2,
  .seo-service-section__content h2 {
    line-height: 1;
  }

  .seo-service-grid article {
    min-height: 0;
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .media-layer {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
  }

  .scroll-progress span {
    transform: none !important;
  }

  .scroll-cue__wheel {
    animation: none !important;
  }

  .opening-sequence {
    height: auto;
  }

  .opening-sequence__sticky {
    position: relative;
    min-height: 100svh;
  }

  .opening-sequence__layer--truck {
    opacity: 1 !important;
  }

  .opening-sequence__giant-title {
    transform: translate3d(-50%, -50%, 0) scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .opening-sequence__card,
  .opening-sequence__story {
    transform: translateX(-50%) !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .opening-sequence__vehicle-copy {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}
