:root {
  color-scheme: light;
  --sky: #35b8ff;
  --sky-soft: #d9f5ff;
  --ink: #111827;
  --muted: #4b5f70;
  --line: #d8e4ec;
  --white: #ffffff;
  --yellow: #ffd238;
  --yellow-deep: #f7aa19;
  --red: #f33925;
  --red-deep: #cf2415;
  --green: #24aa35;
  --green-deep: #138322;
  --blue: #1687f2;
  --violet: #7f4ee8;
  --mint: #dff9d8;
  --shadow: 0 24px 55px rgba(28, 80, 118, 0.18);
  --shadow-hard: 0 8px 0 rgba(16, 24, 39, 0.14);
  --radius: 8px;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #bfeeff 0, #f8fdff 44%, #f3fbef 76%, #ffffff 100%);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 44px);
  border-bottom: 2px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(31, 81, 112, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.brand strong {
  color: var(--red);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 38px;
  place-items: center;
}

.brand-mark svg {
  width: 46px;
  height: 38px;
  filter: drop-shadow(0 3px 0 rgba(17, 24, 39, 0.16));
}

.van-body {
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: round;
}

.van-window {
  fill: #b9ecff;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: round;
}

.van-door {
  fill: rgba(255, 255, 255, 0.16);
  stroke: var(--ink);
  stroke-width: 2;
}

.van-wheel {
  fill: var(--ink);
  stroke: var(--white);
  stroke-width: 2;
}

.primary-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: #233142;
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a,
.site-footer nav a {
  position: relative;
  transition: color 160ms ease;
}

.primary-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.site-footer nav a:hover {
  color: var(--red);
}

.primary-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 0 var(--red-deep);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.header-cta-alt {
  background: var(--green);
  box-shadow: 0 4px 0 var(--green-deep);
}

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

.header-cta:active,
.button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 rgba(17, 24, 39, 0.18);
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.menu-button path,
.button path,
.stop-icon path,
.stop-icon circle,
.stop-icon rect,
.format-icon path,
.format-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-menu {
  position: fixed;
  inset: 72px 14px auto;
  z-index: 49;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-hard), var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  padding: 14px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.mobile-menu a:hover {
  background: #f0f7fb;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100vh - 72px));
  overflow: hidden;
  padding: 38px 0 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.58), transparent 16%),
    linear-gradient(180deg, #58c8ff 0%, #d7f6ff 64%, #8cda57 64%, #62bd43 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(46, 140, 64, 0.18));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  width: min(100% - 44px, 1240px);
  min-height: min(710px, calc(100vh - 138px));
  margin: 0 auto;
  padding-bottom: 104px;
}

.hero-copy {
  padding: 22px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #253d51;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 2px 0 rgba(17, 24, 39, 0.18);
}

.eyebrow.compact {
  margin-bottom: 12px;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: 0.91;
  font-weight: 950;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--red);
  text-shadow: 0 5px 0 rgba(255, 210, 56, 0.9);
}

.hero-text {
  max-width: 555px;
  margin: 26px 0 0;
  color: #233142;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.45;
  font-weight: 650;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  min-width: 190px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-red {
  background: var(--red);
  box-shadow: 0 6px 0 var(--red-deep);
}

.button-green {
  background: var(--green);
  box-shadow: 0 6px 0 var(--green-deep);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 30px;
}

.hero-stats article {
  min-height: 94px;
  padding: 15px;
  border: 2px solid rgba(17, 24, 39, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 5px 0 rgba(17, 24, 39, 0.12);
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  font-weight: 950;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 520px;
  margin: 0;
}

.truck-stage {
  position: absolute;
  right: clamp(-18px, -2.4vw, 0px);
  bottom: 28px;
  width: min(760px, 56vw);
  aspect-ratio: 1610 / 977;
  animation: truckFloat 4.8s ease-in-out infinite;
}

.truck-stage::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 10%;
  bottom: 2%;
  height: 13%;
  border-radius: 50%;
  background: rgba(31, 55, 36, 0.22);
  filter: blur(16px);
  transform: skewX(-10deg);
}

.truck-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 24px rgba(32, 85, 58, 0.2));
}

.truck-label {
  position: absolute;
  z-index: 3;
  left: 21.2%;
  top: 43.5%;
  display: grid;
  gap: 0.02em;
  color: var(--ink);
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: 0;
  transform: rotate(-1.3deg);
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.58),
    0 7px 0 rgba(247, 170, 25, 0.42);
}

.truck-label strong {
  color: var(--red);
  font-weight: 950;
}

.route-badge {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 5%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 5px 0 rgba(17, 24, 39, 0.16);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(36, 170, 53, 0.16);
}

.sky-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cloud {
  position: absolute;
  width: 110px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    24px -14px 0 7px rgba(255, 255, 255, 0.88),
    62px -6px 0 2px rgba(255, 255, 255, 0.88);
  opacity: 0.9;
  animation: cloudDrift 22s linear infinite;
}

.cloud-one {
  top: 118px;
  left: -80px;
}

.cloud-two {
  top: 82px;
  right: 11%;
  transform: scale(0.8);
  animation-duration: 28s;
}

.packet {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 42px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 5px 0 rgba(17, 24, 39, 0.16);
  animation: packetFloat 5.5s ease-in-out infinite;
}

.packet-click {
  top: 18%;
  left: 53%;
  background: var(--blue);
}

.packet-traffic {
  top: 24%;
  right: 6%;
  background: var(--green);
  animation-delay: -1.2s;
}

.packet-cpa {
  top: 13%;
  right: 25%;
  background: var(--violet);
  animation-delay: -2.3s;
}

.road-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 88px;
  overflow: hidden;
  border-top: 4px solid rgba(17, 24, 39, 0.2);
  background:
    linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.74) 44px 108px, transparent 108px 164px) 0 38px / 164px 10px repeat-x,
    linear-gradient(180deg, #4a4f55, #282d33);
}

.road-strip span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 44px, var(--yellow) 44px 108px, transparent 108px 164px) 0 38px / 164px 10px repeat-x;
  animation: roadMove 1.4s linear infinite;
}

.funnel-section,
.formats-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
}

.section-head {
  width: min(100% - 44px, var(--max));
  margin: 0 auto clamp(28px, 5vw, 48px);
}

.section-head h2,
.control-copy h2,
.cta-inner h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  font-weight: 950;
  text-wrap: balance;
}

.section-head p:not(.eyebrow),
.control-copy p:not(.eyebrow),
.cta-inner p:not(.eyebrow) {
  max-width: 710px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}

.route-map::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 72px;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue), var(--violet));
  box-shadow: 0 4px 0 rgba(17, 24, 39, 0.12);
}

.route-stop,
.format-card,
.control-item {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-hard), var(--shadow);
}

.route-stop {
  min-height: 254px;
  padding: 18px;
}

.stop-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 3px 0 rgba(17, 24, 39, 0.14);
}

.stop-icon,
.format-icon {
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 5px 0 rgba(17, 24, 39, 0.14);
}

.stop-icon {
  width: 72px;
  height: 72px;
  margin: 28px 0 18px;
}

.stop-icon svg,
.format-icon svg {
  width: 34px;
  height: 34px;
}

.globe,
.blue {
  background: var(--blue);
}

.cursor,
.red {
  background: var(--red);
}

.offer,
.green {
  background: var(--green);
}

.cart {
  background: var(--yellow);
  color: var(--ink);
}

.wallet,
.violet {
  background: var(--violet);
}

.route-stop h3,
.format-card h3,
.control-item h3,
.money-lane h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 950;
}

.route-stop p,
.format-card p,
.control-item p,
.money-lane p,
.money-lane li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 650;
}

.route-stop p {
  margin: 12px 0 0;
}

.earnings-section {
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    linear-gradient(180deg, #fff8d8 0%, #e9fbff 100%);
}

.money-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}

.money-lane {
  display: grid;
  gap: 22px;
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard), var(--shadow);
}

.advertiser-lane {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 210, 56, 0.72), transparent 28%),
    linear-gradient(135deg, #ffffff, #dff4ff);
}

.publisher-lane {
  background:
    radial-gradient(circle at 90% 12%, rgba(36, 170, 53, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff, #e7ffdc);
}

.lane-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(17, 24, 39, 0.12);
}

.money-lane p {
  margin: 14px 0 0;
}

.money-lane ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: lane;
}

.money-lane li {
  position: relative;
  min-height: 50px;
  padding: 13px 14px 13px 52px;
  border: 2px solid rgba(17, 24, 39, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.money-lane li::before {
  counter-increment: lane;
  content: counter(lane);
  position: absolute;
  left: 12px;
  top: 11px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
}

.publisher-lane li::before {
  background: var(--green);
}

.math-board {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1.1fr;
  gap: 12px;
  align-items: center;
  width: min(100% - 44px, var(--max));
  margin: 32px auto 0;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-hard), var(--shadow);
}

.math-step {
  min-height: 130px;
  padding: 22px 18px;
  border: 2px dashed rgba(17, 24, 39, 0.26);
  border-radius: var(--radius);
  background: #f7fcff;
}

.math-step.highlight {
  border-style: solid;
  background: var(--yellow);
}

.math-step strong {
  display: block;
  color: var(--red);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  font-weight: 950;
}

.math-step.highlight strong {
  color: var(--ink);
}

.math-step span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.math-step.highlight span {
  color: #27313b;
}

.math-arrow {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: var(--ink);
}

.math-arrow::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 4px solid var(--ink);
  border-right: 4px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.format-grid,
.control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}

.format-card {
  min-height: 260px;
  padding: 22px;
}

.format-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
}

.format-card p {
  margin: 12px 0 0;
}

.control-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.control-copy {
  position: sticky;
  top: 104px;
}

.control-grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.control-item {
  min-height: 220px;
  padding: 22px;
}

.control-item strong {
  display: grid;
  width: 44px;
  height: 34px;
  place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  box-shadow: 0 3px 0 rgba(17, 24, 39, 0.14);
}

.control-item p {
  margin: 12px 0 0;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 440px;
  padding: clamp(70px, 9vw, 110px) 0 130px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(180deg, #64ceff 0%, #dcf7ff 62%, #73c94d 62%, #4fab34 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 44px, 760px);
  margin: 0 auto;
  text-align: center;
}

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

.cta-inner h2,
.cta-inner p {
  margin-left: auto !important;
  margin-right: auto !important;
}

.cta-actions {
  justify-content: center;
}

.cta-road {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 34px;
  height: 88px;
  transform: rotate(-1.4deg);
  border-top: 4px solid rgba(17, 24, 39, 0.18);
  border-bottom: 4px solid rgba(17, 24, 39, 0.18);
  background:
    linear-gradient(90deg, transparent 0 52px, var(--yellow) 52px 112px, transparent 112px 174px) 0 39px / 174px 10px repeat-x,
    linear-gradient(180deg, #4a4f55, #282d33);
  animation: roadMove 1.7s linear infinite;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 4vw, 44px);
  background: #101827;
  color: var(--white);
}

.site-footer .brand strong {
  color: var(--yellow);
}

.site-footer nav {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
}

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

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

@keyframes truckFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes roadMove {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -164px;
  }
}

@keyframes cloudDrift {
  from {
    translate: -12vw 0;
  }
  to {
    translate: 118vw 0;
  }
}

@keyframes packetFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 22px;
  }

  .header-actions {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 124px;
  }

  .hero-visual {
    min-height: 440px;
    order: -1;
  }

  .truck-stage {
    left: 50%;
    right: auto;
    bottom: 10px;
    width: min(780px, 98vw);
    transform: translateX(-50%);
    animation-name: truckFloatWide;
  }

  .hero-copy {
    padding-top: 0;
  }

  .route-map,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-map::before {
    display: none;
  }

  .control-section {
    grid-template-columns: 1fr;
  }

  .control-copy {
    position: static;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}

@keyframes truckFloatWide {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-9px);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 66px;
  }

  .primary-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    inset-top: 66px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-inner {
    width: min(100% - 28px, 620px);
    gap: 10px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .truck-stage {
    width: min(640px, 124vw);
  }

  .route-badge {
    right: 8%;
    bottom: 4%;
    padding: 10px 12px;
    font-size: 12px;
  }

  .truck-label {
    font-size: clamp(25px, 9vw, 42px);
  }

  .packet {
    display: none;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

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

  .hero-stats article {
    min-height: 78px;
  }

  .button {
    width: 100%;
  }

  .funnel-section,
  .formats-section,
  .earnings-section,
  .control-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head,
  .route-map,
  .money-lanes,
  .math-board,
  .format-grid,
  .control-section {
    width: min(100% - 28px, 620px);
  }

  .route-map,
  .money-lanes,
  .format-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .route-stop,
  .format-card,
  .control-item {
    min-height: auto;
  }

  .stop-icon {
    margin-top: 20px;
  }

  .math-board {
    grid-template-columns: 1fr;
  }

  .math-arrow {
    width: 12px;
    height: 38px;
    margin: 0 auto;
  }

  .math-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -4px;
    transform: translateX(-50%) rotate(135deg);
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 38px;
    height: 32px;
  }

  .hero-inner {
    width: min(100% - 22px, 420px);
    padding-bottom: 104px;
  }

  .hero-visual {
    min-height: 286px;
  }

  .truck-stage {
    width: 440px;
    bottom: 0;
  }

  .truck-label {
    left: 21.5%;
    top: 44%;
    font-size: 26px;
  }

  .route-badge {
    display: none;
  }

  .hero-text,
  .section-head p:not(.eyebrow),
  .control-copy p:not(.eyebrow),
  .cta-inner p:not(.eyebrow) {
    font-size: 16px;
  }

  .section-head h2,
  .control-copy h2,
  .cta-inner h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .road-strip {
    height: 74px;
  }
}

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

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