@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #05070b;
  --bg-elevated: #0d1015;
  --panel: rgba(16, 18, 24, 0.72);
  --panel-strong: #111214;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 59, 59, 0.18);
  --text: #f5f7fa;
  --muted: rgba(255, 255, 255, 0.58);
  --muted-strong: rgba(255, 255, 255, 0.74);
  --red: #ff3b3b;
  --red-soft: rgba(255, 59, 59, 0.08);
  --red-glow: rgba(255, 59, 59, 0.18);
  --green: #62d2a2;
  --amber: #f5bf57;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.18);
  --container: min(1240px, calc(100vw - 80px));
  --hero-title: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  background: #05070b;
  color: var(--text);
}

body::before {
  content: none;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.top-stage {
  position: relative;
  overflow: clip;
  min-height: 920px;
  background:
    radial-gradient(circle at 18% 24%, rgba(118, 17, 17, 0.14), transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(104, 13, 13, 0.1), transparent 26%),
    linear-gradient(180deg, #08090d 0%, #090a0f 42%, #0a0b10 100%);
}

.top-stage-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.top-stage-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
  opacity: 0.12;
  transform: scale(1.04);
  filter: saturate(0.72) contrast(1.01) brightness(0.28) blur(2px);
}

.top-stage-overlay,
.top-stage-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top-stage-overlay {
  background:
    linear-gradient(180deg, rgba(2, 4, 10, 0.78) 0%, rgba(2, 4, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(2, 4, 10, 0.68) 0%, rgba(2, 4, 10, 0.34) 42%, rgba(2, 4, 10, 0.68) 100%);
}

.top-stage-tint {
  background:
    radial-gradient(circle at 16% 30%, rgba(137, 18, 18, 0.16), transparent 24%),
    radial-gradient(circle at 80% 22%, rgba(137, 18, 18, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(18, 0, 0, 0.06), transparent 24%, transparent 72%, rgba(18, 0, 0, 0.14) 100%);
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 0 40px;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 0;
  background: none;
  z-index: -1;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 160px;
  height: 42px;
  min-width: 0;
  flex: 0 0 auto;
}

.logo img,
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  flex: 0 0 auto;
}

.hero h1,
.section-heading h2,
.stack-card h3,
.apply-panel h2,
.hero-stats strong,
.truck-card-top strong,
.experience-card h3,
.role-card strong {
  font-family: "Sora", sans-serif;
}

.muted {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  padding: 0;
  min-height: 100%;
}

.site-nav-links,
.site-nav-actions {
  display: flex;
  align-items: center;
}

.site-nav-links {
  gap: 42px;
}

.site-nav-actions {
  gap: 0;
  padding-left: 8px;
  border-left: 0;
}

.site-nav-links > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav-links > a:hover {
  color: #ffffff;
}

.site-nav-links > a::after {
  display: none;
}

.site-nav-links > a:hover::after {
  display: none;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.topbar .nav-button {
  min-height: 50px;
  padding-inline: 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 14px;
}

.nav-button,
.button.primary {
  background: linear-gradient(180deg, #ff4a4a 0%, #dd2020 100%);
  color: #fff;
  box-shadow: none;
}

.nav-button.ghost,
.button.secondary {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.topbar .nav-button:not(.ghost) {
  min-width: 0;
}

.nav-button:hover,
.button:hover,
.truck-card:hover,
.role-card:hover,
.stack-card:hover,
.settings-row:hover {
  transform: translateY(-2px);
}

.topbar .nav-button:hover,
.site-nav-links > a:hover {
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: auto;
  padding: 112px 0 28px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero.section {
  width: min(1360px, calc(100vw - 72px));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.41fr) minmax(760px, 0.59fr);
  justify-content: space-between;
  column-gap: 8px;
  align-items: start;
  position: relative;
  z-index: 1;
  min-height: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  top: -120px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 62, 62, 0.08) 0%, rgba(255, 62, 62, 0.028) 34%, transparent 72%);
  filter: blur(28px);
  animation: none;
}

.hero::after {
  right: 8%;
  top: 16%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 56, 56, 0.06), rgba(255, 56, 56, 0.02) 36%, transparent 70%);
  filter: blur(38px);
  opacity: 0.9;
  animation: none;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.hero-copy {
  display: grid;
  grid-template-rows: var(--hero-story-zone-height) var(--hero-premium-zone-height) var(--hero-actions-zone-height);
  gap: var(--hero-zone-gap);
  align-content: start;
  padding: 0;
  width: 92%;
  max-width: 520px;
  margin-top: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  min-height: calc(var(--hero-story-zone-height) + var(--hero-premium-zone-height) + var(--hero-actions-zone-height) + (var(--hero-zone-gap) * 2));
  --hero-zone-gap: 14px;
  --hero-story-zone-height: 214px;
  --hero-premium-zone-height: 142px;
  --hero-actions-zone-height: 60px;
}

.hero-story-zone,
.hero-premium-zone,
.hero-standard-zone {
  width: 100%;
  min-width: 0;
}

.hero-story-zone {
  min-height: var(--hero-story-zone-height);
  max-height: var(--hero-story-zone-height);
  overflow: hidden;
  position: relative;
}

.hero-copy-intro {
  display: grid;
  align-content: start;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: var(--hero-story-zone-height);
  max-height: var(--hero-story-zone-height);
  height: var(--hero-story-zone-height);
  overflow: hidden;
  position: relative;
  background: transparent;
}

.hero-copy-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 12, 17, 0) 0%, rgba(9, 12, 17, 0.88) 78%, rgba(9, 12, 17, 0.96) 100%);
}

.hero-copy::before {
  content: none;
}

.hero-interaction-zone {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-premium-zone {
  min-height: var(--hero-premium-zone-height);
}

.hero-standard-zone {
  min-height: var(--hero-actions-zone-height);
}

.eyebrow,
.card-label,
.mini-label {
  margin: 0 0 20px;
  color: rgba(255, 220, 220, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.apply-panel h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(36px, 2.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: none;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:last-child {
  white-space: nowrap;
}

.lead,
.section-heading p,
.stack-card p,
.apply-panel p,
.truck-card p,
.role-card p,
.experience-card small,
.footer p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-copy .lead {
  max-width: 100%;
  margin: 0;
  color: rgba(232, 236, 242, 0.76);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42;
  text-shadow: none;
}

.hero-subheadline {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero-subheadline,
.hero-copy .lead,
.hero-typing-support {
  display: none !important;
}

.hero-typing-line,
.hero-typing-support {
  position: relative;
  max-width: 100%;
  background: transparent;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.04), 0 0 36px rgba(255, 76, 76, 0.08);
}

.hero-copy-intro h1,
.hero-copy-intro .hero-subheadline,
.hero-copy-intro .lead {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-copy-intro h1 {
  display: grid;
  align-content: start;
  gap: 0;
}

.hero-copy-intro h1 .hero-typing-line,
.hero-copy-intro h1 .hero-typing-line:last-child {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

.hero-copy-intro .hero-typing-support {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.configured-live-navigator {
  display: none;
}

.hero-typing-line.is-typing::after,
.hero-typing-support.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.92em;
  margin-left: 0.12em;
  border-radius: 999px;
  background: currentColor;
  vertical-align: -0.08em;
  animation: heroTypingBlink 0.95s steps(1, end) infinite;
}

.hero-typing-line,
.hero-typing-support {
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-typing-line.is-muted {
  opacity: 0.1;
  transform: translateY(10px);
  filter: saturate(0.76);
}

.hero-typing-line.is-exiting,
.hero-typing-support.is-exiting {
  opacity: 0.1;
  transform: translateY(10px);
  filter: saturate(0.76);
}

.hero-copy-intro.is-transitioning {
  opacity: 1;
  filter: none;
}

.hero-copy-intro.is-configurator-copy-updating {
  opacity: 0.82;
  transform: translateY(10px);
}

html.homepage-configured-mode .hero-copy-intro.is-transitioning .hero-typing-line,
html.homepage-configured-mode .hero-copy-intro.is-transitioning .hero-typing-support {
  opacity: 0;
  transform: translateY(10px);
}

.hero-choice-shell {
  position: relative;
  width: 100%;
  min-height: var(--hero-premium-zone-height);
  max-height: var(--hero-premium-zone-height);
  display: grid;
  align-items: stretch;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-choice-shell.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-choice-shell.is-visible.has-premium {
  opacity: 1;
}

.hero-choice-selector {
  display: grid;
  gap: 0;
  justify-content: stretch;
  min-height: 100%;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hero-choice-premium-callout {
  display: grid;
  gap: 0;
  width: 100%;
  min-height: 100%;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  animation: heroChoiceReveal 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.hero-choice-premium-callout.is-visible {
  display: grid;
  justify-items: stretch;
  opacity: 1;
  visibility: visible;
}

.hero-choice-premium-copy {
  margin: 0;
  color: rgba(220, 225, 235, 0.66);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.hero-choice-premium-emphasis {
  color: rgba(247, 249, 252, 0.96);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-choice-premium-footnote {
  display: block;
  margin-top: 16px;
  color: rgba(236, 240, 247, 0.82);
}

.hero-choice-shell.is-visible .hero-choice-selector {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hero-choice-option {
  flex: 0 1 auto;
  min-width: 0;
}

.hero-choice-option.is-hidden {
  display: none;
}

.hero-choice-option.is-available {
  display: inline-flex;
  animation: heroChoiceReveal 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-choice-option.is-premium {
  display: grid;
  gap: 0;
  position: relative;
  align-content: center;
  align-items: center;
  justify-items: center;
  flex: 1 1 100%;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top left, rgba(255, 56, 56, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(18, 21, 30, 0.9), rgba(10, 12, 18, 0.96));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 12px 26px rgba(0, 0, 0, 0.16), 0 0 22px rgba(255, 60, 60, 0.06);
  animation: heroChoiceReveal 0.48s cubic-bezier(0.22, 1, 0.36, 1), heroChoiceCardBreath 7.8s ease-in-out 0.8s infinite;
  overflow: hidden;
  isolation: isolate;
}

.hero-choice-option.is-premium::before,
.hero-choice-option.is-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.hero-choice-option.is-premium::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.015));
}

.hero-choice-option.is-premium::after {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  mask-image: linear-gradient(110deg, transparent 0%, rgba(0, 0, 0, 0.3) 38%, #000 50%, rgba(0, 0, 0, 0.3) 62%, transparent 100%);
  background: linear-gradient(110deg, transparent 20%, rgba(255, 120, 120, 0.22) 50%, transparent 80%);
  animation: heroChoiceBorderSweep 8.5s linear 1.2s infinite;
}

.hero-choice-premium-title {
  display: block;
  color: rgba(248, 250, 253, 0.98);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.02;
  text-align: left;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px rgba(255, 88, 88, 0.07);
  animation: heroChoicePremiumPulse 3.8s ease-in-out 0.5s infinite;
}

.hero-choice-image,
.hero-action-image {
  position: absolute;
  display: block;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.hero-choice-image {
  inset: 8px 12px;
  width: calc(100% - 24px);
  height: calc(100% - 16px);
  z-index: 1;
}

.hero-action-image {
  inset: 4px 8px;
  width: calc(100% - 16px);
  height: calc(100% - 8px);
  z-index: 1;
}

.hero-choice-option.is-premium:hover,
.hero-choice-option.is-premium:focus-visible,
.hero-choice-option.is-premium.is-selected {
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    radial-gradient(circle at top left, rgba(255, 62, 62, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(20, 22, 31, 0.92), rgba(11, 13, 19, 0.97));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 28px rgba(0, 0, 0, 0.18), 0 0 26px rgba(255, 62, 62, 0.08);
  transform: translateY(-1px);
}

@keyframes heroChoiceReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroChoicePremiumPulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 88, 88, 0.08);
  }

  50% {
    text-shadow: 0 0 18px rgba(255, 96, 96, 0.14);
  }
}

@keyframes heroChoiceCardBreath {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 12px 26px rgba(0, 0, 0, 0.16), 0 0 22px rgba(255, 60, 60, 0.06);
  }

  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 28px rgba(0, 0, 0, 0.18), 0 0 30px rgba(255, 74, 74, 0.1);
  }
}

@keyframes heroChoiceBorderSweep {
  0%,
  100% {
    transform: translateX(-24%);
    opacity: 0;
  }

  12% {
    opacity: 0.45;
  }

  50% {
    transform: translateX(24%);
    opacity: 0.18;
  }

  68% {
    opacity: 0;
  }
}

.hero-typing-line.is-empty,
.hero-typing-support.is-empty {
  display: none;
}

.hero-visual {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100%;
  min-width: 0;
  padding-top: 0;
  padding-left: 0;
  margin-top: -82px;
  transform: translateX(-40px);
}

.hero-offer-panel {
  position: relative;
  width: min(100%, 770px);
  height: auto;
  padding: 22px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(22, 24, 30, 0.82) 0%, rgba(14, 16, 22, 0.88) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
  align-self: start;
  transform: none;
  isolation: isolate;
  filter: saturate(1) brightness(1);
  transition: box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 380ms cubic-bezier(0.22, 1, 0.36, 1), background 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-offer-panel::before,
.hero-offer-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.hero-offer-panel::before {
  inset: 0;
  background: radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 44%);
  opacity: 1;
  z-index: 0;
}

.hero-offer-panel::after {
  content: none;
  z-index: 0;
}

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

.hero-offer-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 19, 27, 0.94), rgba(7, 9, 14, 0.98)),
    radial-gradient(circle at 20% 16%, rgba(255, 68, 68, 0.08), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
  margin: 0;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), inset 0 -24px 32px rgba(0, 0, 0, 0.28), 0 20px 34px rgba(0, 0, 0, 0.18);
  transition: border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
}

.hero-offer-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%, transparent 72%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-offer-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(9, 10, 13, 0.16));
}

.hero-offer-image {
  width: 100%;
  height: 100%;
  display: block;
  padding: 12px;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.82), rgba(4, 5, 7, 0.92));
  object-fit: contain;
  object-position: center center;
  transform: none;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
}

.hero-offer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-offer-dynamic {
  display: grid;
  gap: 8px;
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
  will-change: opacity, transform;
}

.hero-offer-dynamic.is-switching {
  opacity: 0.8;
  transform: translateY(6px);
  filter: saturate(0.94);
}

.hero-offer-summary {
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
  perspective: 1600px;
}

.hero-offer-flip-card {
  position: relative;
  width: 100%;
  min-height: 186px;
  perspective: inherit;
}

.hero-offer-flip-card-inner {
  position: relative;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-offer-flip-card.is-flipped .hero-offer-flip-card-inner {
  transform: rotateY(180deg);
}

.hero-offer-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at top left, rgba(255, 72, 72, 0.07), transparent 40%),
    radial-gradient(circle at bottom right, rgba(86, 101, 136, 0.06), transparent 42%),
    linear-gradient(180deg, rgba(17, 20, 29, 0.96), rgba(9, 11, 16, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -24px 30px rgba(0, 0, 0, 0.16), 0 22px 42px rgba(0, 0, 0, 0.28), 0 0 32px rgba(12, 14, 20, 0.28);
  backface-visibility: hidden;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
}

.hero-offer-face::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%, transparent 64%, rgba(255, 255, 255, 0.025));
  pointer-events: none;
}

.hero-offer-face-front,
.hero-offer-face-back {
  min-height: 186px;
}

.hero-offer-face-back {
  justify-content: center;
  align-content: center;
  transform: rotateY(180deg);
}

.hero-offer-face h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 100%;
  font-size: 26px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: normal;
}

.hero-offer-flip-eyebrow,
.hero-offer-flip-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(212, 218, 227, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-offer-flip-trailer,
.hero-offer-flip-value {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  letter-spacing: -0.03em;
}

.hero-offer-flip-trailer {
  color: #f5f7fb;
  font-size: 26px;
  line-height: 0.98;
  font-weight: 800;
}

.hero-offer-flip-copy {
  margin-top: 2px;
}

.hero-offer-flip-value {
  color: #63e29a;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 800;
}

.truck-condition-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.028), 0 8px 18px rgba(0, 0, 0, 0.16);
}

.truck-condition-option {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(243, 245, 249, 0.72);
  min-height: 28px;
  padding: 0 12px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.truck-condition-option:hover,
.truck-condition-option:focus-visible {
  color: #ffffff;
  outline: none;
}

.truck-condition-option.is-selected {
  background: linear-gradient(135deg, rgba(255, 58, 58, 0.18), rgba(255, 255, 255, 0.06));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 86, 86, 0.14);
}

.truck-offer-switcher {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 4px auto 12px;
}

.truck-offer-viewport {
  position: relative;
  width: min(100%, 520px);
  max-width: 520px;
  height: 92px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.92) 10%, rgba(0, 0, 0, 0.92) 90%, transparent 100%);
}

.truck-offer-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.truck-offer-switch {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 92px;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  color: rgba(240, 243, 249, 0.58);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 16px rgba(0, 0, 0, 0.14);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  z-index: 0;
}

.truck-offer-switch::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 48%, transparent 82%);
  opacity: 0.8;
  pointer-events: none;
}

.truck-offer-switch:hover,
.truck-offer-switch:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 20px rgba(0, 0, 0, 0.18);
  outline: none;
}

.truck-offer-switch.is-active {
  border-color: rgba(255, 86, 86, 0.54);
  background: linear-gradient(135deg, rgba(255, 58, 58, 0.24), rgba(255, 255, 255, 0.07));
  box-shadow: 0 0 0 1px rgba(255, 56, 56, 0.12), 0 12px 24px rgba(120, 14, 14, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 22px rgba(255, 58, 58, 0.14);
  transform: none;
  z-index: 2;
}

.truck-offer-switch.is-active::before {
  background: radial-gradient(circle at 50% 50%, rgba(255, 94, 94, 0.18), rgba(255, 255, 255, 0.06) 50%, transparent 84%);
  opacity: 1;
}

.truck-offer-switch-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
}

.truck-offer-switch-icon {
  display: block;
  width: auto;
  max-width: 110px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  filter: grayscale(0.34) brightness(2.02) contrast(1.18) saturate(1.06) opacity(0.98) drop-shadow(0 0 4px rgba(255, 255, 255, 0.08));
  transition: filter 0.2s ease, transform 0.2s ease;
  margin: auto;
  transform: scale(0.6667);
  transform-origin: center center;
}

.truck-offer-switch:hover .truck-offer-switch-icon,
.truck-offer-switch:focus-visible .truck-offer-switch-icon {
  filter: grayscale(0.12) brightness(2.08) contrast(1.22) saturate(1.1) opacity(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.truck-offer-switch.is-active .truck-offer-switch-icon {
  filter: grayscale(0) brightness(1.32) contrast(1.18) saturate(1.14) opacity(1) drop-shadow(0 0 10px rgba(255, 72, 72, 0.52));
  transform: scale(1);
}

.hero-offer-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 0;
  color: rgba(243, 245, 249, 0.94);
}

.program-selector {
  display: grid;
  gap: 6px;
  margin: -36px -36px 6px;
  padding: 12px 16px 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at top left, rgba(255, 52, 52, 0.055), transparent 56%),
    linear-gradient(180deg, rgba(18, 21, 28, 0.58), rgba(11, 13, 18, 0.18));
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.026);
}

.program-selector-options,
.trailer-selector-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.program-selector-option {
  appearance: none;
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 245, 249, 0.88);
  padding: 7px 12px;
  min-height: 34px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.program-selector-option:hover,
.program-selector-option:focus-visible {
  border-color: rgba(255, 92, 92, 0.45);
  color: #ffffff;
  outline: none;
}

.program-selector-option.is-selected {
  border-color: rgba(255, 86, 86, 0.6);
  background: linear-gradient(135deg, rgba(255, 58, 58, 0.92), rgba(186, 24, 24, 0.9));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(130, 12, 12, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: #58e08b;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  border: 1px solid rgba(90, 255, 148, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(64, 255, 145, 0.08), 0 0 22px rgba(33, 197, 94, 0.24), 0 0 34px rgba(64, 255, 145, 0.1);
  animation: greenPulse 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform, box-shadow, filter;
}

.hero-offer-status {
  justify-self: start;
  margin-top: 10px;
}

.hero-offer-media .available-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.available-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(64, 255, 145, 0.92);
  animation: greenPulseDot 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform, box-shadow, opacity;
}

.hero-offer-availability {
  margin: 0;
}

.hero-offer-primary-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.hero-offer-primary-metrics article,
.hero-offer-secondary-metrics article,
.hero-offer-payoff {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(17, 20, 28, 0.84), rgba(10, 12, 17, 0.92));
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 -18px 24px rgba(0, 0, 0, 0.14);
}

.hero-offer-primary-metrics article::before,
.hero-offer-secondary-metrics article::before,
.hero-offer-payoff::before,
.take-home-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.028), transparent 28%, transparent 76%, rgba(255, 255, 255, 0.012));
  pointer-events: none;
}

.hero-offer-primary-metrics article {
  min-height: 44px;
  padding: 8px 10px;
}

.hero-offer-primary-metrics span,
.hero-offer-secondary-metrics span,
.hero-offer-payoff span {
  display: block;
  color: rgba(213, 219, 227, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-offer-primary-metrics strong,
.hero-offer-secondary-metrics strong,
.hero-offer-payoff strong {
  display: block;
  margin-top: 3px;
  letter-spacing: -0.04em;
}

.hero-offer-primary-metrics small {
  display: block;
  margin-top: 2px;
  color: rgba(196, 202, 211, 0.62);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-offer-primary-metrics strong {
  font-size: 15px;
  line-height: 1.02;
}

.hero-offer-zero-down {
  color: #ff4a46;
  animation: premiumPulse 1.6s ease-in-out infinite;
}

.hero-offer-primary-metrics article:nth-child(2) strong {
  font-size: 14px;
}

.hero-offer-secondary-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.hero-offer-secondary-metrics article {
  min-height: 38px;
  padding: 8px 10px;
}

.hero-offer-run-rates {
  grid-column: 1 / -1;
  padding-top: 14px;
}

.trailer-selector {
  display: grid;
  gap: 10px;
}

.trailer-selector-label {
  margin: 0;
  color: rgba(213, 219, 227, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trailer-selector-options {
  gap: 10px;
}

.trailer-option {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  color: rgba(243, 245, 249, 0.88);
  padding: 8px 12px;
  min-height: 36px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.trailer-option:hover,
.trailer-option:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  outline: none;
}

.trailer-option.is-selected {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.take-home-line {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(17, 20, 28, 0.86), rgba(9, 12, 17, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.028), inset 0 -18px 26px rgba(0, 0, 0, 0.12);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.1px;
  color: #ffffff;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
}

.hero-offer-secondary-metrics strong {
  font-size: 12px;
  line-height: 1.2;
  color: #f7f8fb;
}

.hero-offer-secondary-metrics small {
  display: block;
  margin-top: 0;
  color: rgba(196, 202, 211, 0.62);
  font-size: 11px;
  line-height: 1.2;
}

.hero-offer-income-heading {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: rgba(229, 234, 241, 0.86);
  font-size: 10px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-offer-income-kicker {
  display: inline;
  margin-bottom: 0;
  color: #ff4d4d;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-offer-income-list {
  display: grid;
  gap: 2px;
  margin-top: 6px;
}

.hero-offer-income-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  color: rgba(206, 212, 221, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.hero-offer-income-line span {
  display: block;
  color: rgba(206, 212, 221, 0.74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hero-offer-income-line strong {
  display: block;
  margin-top: 0;
  color: #f7f8fb;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-offer-payoff {
  min-height: 34px;
  margin-top: 14px;
  padding: 5px 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-offer-payoff strong {
  font-size: 16px;
  line-height: 1;
  color: rgba(246, 248, 251, 0.94);
}

.hero-offer-payoff em {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-offer-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 0;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  font-size: clamp(14px, 1.1vw, 16px);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.hero-offer-toggle:hover {
  color: rgba(255, 255, 255, 0.78);
}

.hero-offer-toggle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  transform-origin: center;
  transition: transform 0.28s ease;
}

.hero-offer-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.hero-offer-panel.is-expanded .hero-offer-details {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-offer-panel.is-expanded .hero-offer-toggle-arrow {
  transform: rotate(180deg);
}

.hero-offer-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
}

.hero-offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff524c, #eb332f);
  color: #fff8f8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.hero-offer-button.secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(246, 247, 251, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-offer-button:hover {
  background: linear-gradient(180deg, #ff625c, #ef3b36);
}

.hero-offer-button.secondary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

@keyframes premiumPulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 59, 71, 0.34);
  }

  50% {
    opacity: 0.72;
    text-shadow: 0 0 24px rgba(255, 59, 71, 0.68);
  }
}

@keyframes greenPulse {
  0%, 100% {
    opacity: 0.96;
    transform: scale(1);
    filter: brightness(1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(64, 255, 145, 0.08), 0 0 22px rgba(33, 197, 94, 0.24), 0 0 34px rgba(64, 255, 145, 0.1);
  }

  24% {
    opacity: 0.99;
    transform: scale(1.028);
    filter: brightness(1.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(64, 255, 145, 0.11), 0 0 28px rgba(33, 197, 94, 0.3), 0 0 44px rgba(64, 255, 145, 0.14);
  }

  52% {
    opacity: 1;
    transform: scale(1.048);
    filter: brightness(1.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(64, 255, 145, 0.14), 0 0 36px rgba(33, 197, 94, 0.38), 0 0 60px rgba(64, 255, 145, 0.2);
  }

  78% {
    opacity: 0.985;
    transform: scale(1.018);
    filter: brightness(1.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 0 0 1px rgba(64, 255, 145, 0.1), 0 0 26px rgba(33, 197, 94, 0.28), 0 0 40px rgba(64, 255, 145, 0.13);
  }
}

@keyframes greenPulseDot {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
    box-shadow: 0 0 16px rgba(64, 255, 145, 0.72);
  }

  24% {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(64, 255, 145, 0.84);
  }

  52% {
    opacity: 1;
    transform: scale(1.16);
    box-shadow: 0 0 24px rgba(64, 255, 145, 0.94);
  }

  78% {
    opacity: 0.96;
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(64, 255, 145, 0.8);
  }
}

@keyframes heroTypingBlink {
  0%, 46% {
    opacity: 1;
  }

  47%, 100% {
    opacity: 0;
  }
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  margin-top: 0;
}

.hero-actions .button {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-actions .button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
}

.hero-actions .button.primary {
  background: linear-gradient(180deg, #ef4646 0%, #d62626 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 16px rgba(98, 12, 12, 0.12);
  filter: saturate(0.9) brightness(0.92);
}

.hero-actions .button.primary::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
}

.hero-actions .button.primary:hover,
.hero-actions .button.primary:focus-visible {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 10px 18px rgba(98, 12, 12, 0.14);
  filter: saturate(0.94) brightness(0.94);
  transform: translateY(-1px);
}

.hero-actions .button {
  width: 100%;
  height: var(--hero-actions-zone-height);
  min-height: var(--hero-actions-zone-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
  border-radius: 16px;
  font-size: 16px;
}

.hero-actions .button.secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(0, 0, 0, 0.15);
}

.hero-actions .button.secondary::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.hero-actions .button.secondary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-actions .button.is-story-pulsing {
  animation: heroStandardChoicePulse 0.78s ease-out 1;
}

.hero-grid:has(.hero-choice-shell.is-visible) .hero-offer-panel {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.28);
  filter: none;
}

.hero-grid:has(.hero-choice-shell.is-visible) .hero-offer-panel::before {
  opacity: 1;
  filter: none;
  animation: none;
}

.hero-grid:has(.hero-choice-secondary.is-secondary) .hero-offer-panel,
.hero-grid:has(.hero-choice-premium-callout.is-visible) .hero-offer-panel {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045),
    0 24px 60px rgba(0, 0, 0, 0.28);
  filter: none;
}

.hero-grid:has(.hero-choice-secondary.is-secondary) .hero-offer-panel::before,
.hero-grid:has(.hero-choice-premium-callout.is-visible) .hero-offer-panel::before {
  opacity: 1;
  filter: none;
  animation: none;
}

.hero-grid:has(.hero-choice-secondary.is-secondary) .hero-offer-face,
.hero-grid:has(.hero-choice-premium-callout.is-visible) .hero-offer-face,
.hero-grid:has(.hero-choice-secondary.is-secondary) .hero-offer-media,
.hero-grid:has(.hero-choice-premium-callout.is-visible) .hero-offer-media {
  border-color: rgba(255, 255, 255, 0.085);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 -24px 32px rgba(0, 0, 0, 0.28), 0 22px 36px rgba(0, 0, 0, 0.2), 0 0 26px rgba(255, 50, 50, 0.06);
}

@keyframes heroOfferAmbientPulse {
  0%,
  100% {
    opacity: 0.9;
    filter: saturate(1.02);
  }

  50% {
    opacity: 0.98;
    filter: saturate(1.08);
  }
}

.hero-actions .button.is-inactive,
.hero-actions .button.is-inactive:hover,
.hero-actions .button.is-inactive:focus-visible {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  color: rgba(243, 245, 249, 0.46);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: none;
  pointer-events: none;
  cursor: default;
}

.hero-actions .button.is-inactive::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.hero-stats article,
.stack-card,
.role-card,
.truck-card,
.ticker,
.apply-panel,
.glass-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(19, 19, 23, 0.82), rgba(12, 12, 14, 0.92));
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 16px 16px 15px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(17, 18, 22, 0.68), rgba(11, 12, 16, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-stats article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 92, 92, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2), 0 0 22px rgba(255, 52, 52, 0.08);
  background: linear-gradient(180deg, rgba(24, 24, 28, 0.78), rgba(14, 14, 17, 0.86));
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.36rem;
  line-height: 1.05;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.apply-panel,
.experience-card {
  position: relative;
  padding: 24px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.offer-card::before,
.apply-panel::before,
.experience-card::before,
.truck-card.feature::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 82, 82, 0.45), transparent);
}

.panel-topline,
.truck-card-top,
.experience-card header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offer-card {
  position: relative;
  min-height: 108px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(22, 23, 27, 0.76), rgba(13, 14, 17, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.offer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 92, 92, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 30px rgba(0, 0, 0, 0.18), 0 0 16px rgba(255, 52, 52, 0.05);
}

.offer-card span {
  display: block;
  margin-bottom: 5px;
  color: rgba(219, 224, 232, 0.58);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.24;
}

.offer-card-image {
  width: 100%;
  height: 68px;
  margin-bottom: 10px;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.18));
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -12px, 0); }
}

@keyframes heroPulse {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(64, 255, 145, 0.04), 0 0 18px rgba(33, 197, 94, 0.16);
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(64, 255, 145, 0.08), 0 0 26px rgba(64, 255, 145, 0.26), 0 0 42px rgba(33, 197, 94, 0.12);
    transform: scale(1.03);
    filter: brightness(1.08);
  }
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.42; }
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-media .truck-shadow,
.hero-media .truck-underglow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-media .truck-shadow {
  bottom: 20px;
  width: 58%;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 52%, transparent 74%);
  filter: blur(8px);
}

.hero-media .truck-underglow {
  bottom: 18px;
  width: 44%;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 52, 52, 0.38) 0%, rgba(255, 52, 52, 0.18) 42%, transparent 76%);
  filter: blur(10px);
}

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

.visual-grid article,
.stack-card,
.role-card,
.truck-card {
  padding: 20px;
  border-radius: var(--radius-sm);
}

.visual-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.visual-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 92, 92, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 32px rgba(0, 0, 0, 0.2), 0 0 18px rgba(255, 52, 52, 0.06);
}

.visual-grid span,
.truck-card footer span,
.role-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.visual-grid strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.ticker {
  overflow: hidden;
  margin: 20px auto 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.025);
}

.ticker div {
  display: flex;
  gap: 36px;
  min-width: max-content;
  animation: ticker 24s linear infinite;
  color: var(--muted-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.split-section,
.experience-section,
.roles-section,
.apply-section {
  padding: 112px 0 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section-heading.narrow {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

.truck-grid,
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.truck-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.truck-card.feature {
  border-color: rgba(255, 82, 82, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26), 0 0 28px rgba(255, 52, 52, 0.06);
}

.truck-card-top strong,
.role-card strong,
.experience-card h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

.truck-card ul {
  padding-left: 18px;
  margin: 16px 0 20px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.65;
}

.truck-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.truck-card footer a {
  color: #ff8c8c;
  font-size: 0.9rem;
  font-weight: 600;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 26px;
  align-items: start;
  margin-top: 36px;
}

.settings-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.settings-row:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.settings-row span {
  display: grid;
  gap: 4px;
}

.settings-row strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.settings-row small {
  font-size: 0.84rem;
  line-height: 1.45;
}

.badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
}

.status-pill.live,
.badge.review,
.badge.warning,
.badge.success {
  border: 1px solid transparent;
}

.status-pill.live,
.badge.review {
  background: rgba(255, 88, 88, 0.1);
  color: #ff8c8c;
}

.badge.success {
  background: rgba(98, 210, 162, 0.1);
  color: var(--green);
}

.badge.warning {
  background: rgba(245, 191, 87, 0.1);
  color: var(--amber);
}

.badge.muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, #111214 53%, transparent 54%), conic-gradient(#ff4343 72%, rgba(255, 255, 255, 0.08) 0);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
}

.stack-card {
  margin-bottom: 14px;
}

.stack-card:last-child {
  margin-bottom: 0;
}

.stack-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.12;
}

.wide {
  width: 100%;
}

.role-card {
  min-height: 205px;
}

.apply-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.apply-actions {
  display: grid;
  gap: 12px;
}

.footer {
  padding: 48px 0 32px;
  color: var(--muted);
}

.footer strong,
.footer a {
  color: var(--text);
}

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

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

@media (max-width: 1440px) {
  :root {
    --hero-title: 72px;
  }
}

@media (max-width: 1280px) {
  :root {
    --container: min(1280px, calc(100vw - 72px));
  }

  .hero.section {
    width: min(1280px, calc(100vw - 64px));
  }

  .hero-grid {
    grid-template-columns: minmax(340px, 0.41fr) minmax(660px, 0.59fr);
    justify-content: space-between;
    gap: 12px;
  }

  .hero-visual {
    padding-top: 0;
    margin-top: -42px;
    transform: translateX(-40px);
  }

  .hero::after {
    width: 520px;
    height: 300px;
    right: -10px;
  }

  .hero {
    min-height: 800px;
    padding-top: 116px;
  }

  .hero-offer-panel {
    width: min(100%, 682px);
    max-width: 682px;
  }

  .hero-offer-top {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.82fr);
    gap: 18px;
  }

  .hero-offer-media {
    height: 182px;
  }
}

@media (max-width: 960px) {
  :root {
    --hero-title: 56px;
  }

  .experience-layout,
  .apply-panel,
  .truck-grid,
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .hero::before {
    left: -24px;
    width: 420px;
    height: 420px;
  }

  .hero::after {
    right: -10px;
    top: 160px;
    width: 440px;
    height: 300px;
  }

  .hero-copy {
    max-width: 100%;
    width: 100%;
    --hero-zone-gap: 16px;
    --hero-story-zone-height: 224px;
    --hero-premium-zone-height: 144px;
    --hero-actions-zone-height: 64px;
  }

  .hero-copy-intro {
    width: min(100%, 406px);
    max-width: 406px;
  }

  .hero-copy {
    min-height: calc(var(--hero-story-zone-height) + var(--hero-premium-zone-height) + var(--hero-actions-zone-height) + (var(--hero-zone-gap) * 2));
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.1;
  }

  .hero-visual {
    justify-content: flex-start;
    padding-left: 0;
    padding-top: 0;
    margin-top: -10px;
  }

  .hero-offer-panel {
    width: min(100%, 720px);
    max-width: 100%;
    margin-top: 0;
  }

  .hero-offer-top {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.82fr);
    gap: 18px;
  }

  .truck-offer-switcher {
    margin-bottom: 10px;
  }

  .truck-offer-switch {
    width: 52px;
    height: 38px;
  }

  .truck-offer-switch-icon {
    max-width: 38px;
    max-height: 24px;
  }

  .hero-offer-media {
    height: 172px;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 40px, 1280px);
  }

  body {
    font-size: 16px;
  }

  .topbar {
    min-height: 70px;
    padding: 0 24px;
  }

  .topbar::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(10, 11, 15, 0.96), rgba(8, 9, 13, 0.98));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .brand {
    gap: 0;
    width: 145px;
    height: 38px;
  }

  .logo img,
  .brand-logo {
    width: auto;
    height: auto;
    max-width: 145px;
    max-height: 38px;
  }

  .site-nav-links,
  .site-nav-actions {
    display: grid;
    gap: 10px;
  }

  .site-nav-actions {
    padding-left: 0;
    border-left: 0;
  }

  .site-nav-links > a,
  .site-nav-actions > a,
  .nav-button {
    width: 100%;
    justify-content: center;
  }

  .site-nav-links > a {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
  }

  .site-nav-links > a::after {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero-grid,
  .experience-layout,
  .apply-panel,
  .truck-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding: 56px 0 36px;
    border-radius: 0;
  }

  .hero::before {
    top: -12px;
    left: -20px;
    width: 280px;
    height: 280px;
  }

  .hero::after {
    right: -20px;
    top: 130px;
    width: 280px;
    height: 220px;
  }

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

  .hero-copy .lead {
    max-width: 32rem;
  }

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

  .hero-interaction-zone {
    width: 100%;
    max-width: 100%;
  }

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

  .hero-visual {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    margin-top: 0;
  }

  .hero-offer-panel {
    width: 100%;
    max-height: none;
    margin-top: 0;
    border-radius: 26px;
    transform: none;
  }

  .hero-offer-top {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .hero-offer-flip-card,
  .hero-offer-face-front,
  .hero-offer-face-back {
    min-height: 170px;
  }

  .hero-offer-media {
    height: 210px;
    margin: 0;
  }

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

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

  .hero-offer-button {
    width: 100%;
  }

  .split-section,
  .experience-section,
  .roles-section,
  .apply-section {
    padding-top: 76px;
  }

  .settings-row {
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 40px, 1280px);
    --hero-title: 42px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .offer-card,
  .apply-panel,
  .experience-card,
  .stack-card,
  .truck-card,
  .role-card,
  .hero-stats article {
    padding: 18px;
  }

  .topbar {
    min-height: 70px;
    padding: 0 16px;
  }

  .topbar::after {
    display: none;
  }

  .logo img,
  .brand-logo {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 32px;
  }

  .brand {
    width: 120px;
    height: 32px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 49px;
    line-height: 0.91;
    letter-spacing: -0.04em;
  }

  .hero {
    padding: 24px 0 34px;
  }

  .hero-copy .lead {
    margin-top: 0;
    max-width: 100%;
    font-size: 16px;
  }

  .hero-copy-intro {
    width: 100%;
    max-width: 100%;
  }

  .hero-choice-option {
    flex: 1 1 calc(50% - 5px);
  }

  .hero-subheadline {
    font-size: 16px;
  }

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

  .button,
  .nav-button {
    width: 100%;
  }

  .hero-offer-panel {
    width: 100%;
    border-radius: 26px;
  }

  .hero-offer-face h3,
  .hero-offer-flip-trailer {
    font-size: 34px;
    max-width: 100%;
  }

  .hero-offer-flip-value {
    font-size: 18px;
  }

  .hero-offer-primary-metrics,
  .hero-offer-secondary-metrics {
    grid-template-columns: 1fr;
  }

  .hero-offer-run-rates {
    grid-column: auto;
  }

  .hero-offer-primary-metrics strong {
    font-size: 24px;
  }

  .hero-offer-secondary-metrics strong {
    font-size: 16px;
  }

  .hero-offer-payoff strong {
    font-size: 32px;
  }

  .hero-offer-media {
    height: 230px;
    margin: 0;
  }

  .top-stage-video {
    opacity: 0.10;
  }

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

  .hero-copy .lead,
  .section-heading p,
  .stack-card p,
  .apply-panel p,
  .truck-card p,
  .role-card p,
  .experience-card small,
  .footer p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(100vw - 40px, 1280px);
    --hero-title: 48px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .top-stage {
    min-height: auto;
  }

  .topbar {
    min-height: 72px;
    padding: 0 20px;
    gap: 16px;
  }

  .brand {
    width: 120px;
    height: 32px;
  }

  .logo img,
  .brand-logo {
    max-width: 120px;
    max-height: 32px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .site-nav {
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    max-width: calc(100vw - 40px);
  }

  .site-nav-links,
  .site-nav-actions {
    display: grid;
    gap: 10px;
  }

  .site-nav-links > a,
  .site-nav-actions > a,
  .nav-button {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 88px 0 26px;
    width: min(100vw - 40px, 100%);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    text-align: left;
    --hero-zone-gap: 16px;
    --hero-story-zone-height: 208px;
    --hero-premium-zone-height: 144px;
    --hero-actions-zone-height: 64px;
  }

  .hero-copy-intro {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .hero-subheadline {
    max-width: 100%;
    margin: 10px 0 8px;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .hero-copy .lead {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
    height: 54px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding-top: 0;
    margin-top: 0;
    transform: none;
  }

  .program-selector {
    margin: -18px -18px 6px;
    padding: 10px 12px 8px;
    border-radius: 22px 22px 16px 16px;
  }

  .hero-offer-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    padding: 18px;
    border-radius: 22px;
    overflow: hidden;
    margin-top: 0;
    transform: none;
  }

  .truck-offer-switcher {
    justify-content: flex-start;
    gap: 6px;
    margin: 0 0 10px;
  }

  .truck-offer-switch {
    width: 48px;
    height: 36px;
    border-radius: 11px;
  }

  .truck-offer-switch-icon-wrap {
    padding: 4px;
  }

  .truck-offer-switch-icon {
    max-width: 34px;
    max-height: 22px;
  }

  .hero-offer-media {
    width: 100%;
    height: 170px;
    margin: 0;
    border-radius: 16px;
  }

  .hero-offer-image {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    object-position: center;
    background: #050505;
    border-radius: 16px;
  }

  .available-badge {
    min-height: 36px;
    font-size: 12px;
    padding: 0 14px;
  }

  .hero-offer-copy {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .hero-offer-subtitle {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .hero-offer-flip-card,
  .hero-offer-face-front,
  .hero-offer-face-back {
    min-height: 156px;
  }

  .hero-offer-face {
    padding: 14px 15px;
  }

  .hero-offer-face h3,
  .hero-offer-flip-trailer {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.02;
    white-space: normal;
  }

  .hero-offer-flip-value {
    font-size: 17px;
  }

  .hero-offer-primary-metrics,
  .hero-offer-secondary-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-offer-primary-metrics article,
  .hero-offer-secondary-metrics article,
  .hero-offer-payoff {
    min-height: 78px;
    padding: 14px;
  }

  .hero-offer-run-rates {
    grid-column: auto;
    padding-top: 17px;
  }

  .trailer-selector-options {
    gap: 10px;
  }

  .program-selector-options {
    gap: 10px;
  }

  .program-selector-option,
  .trailer-option {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    text-align: center;
  }

  .hero-offer-income-heading,
  .hero-offer-income-line,
  .hero-offer-income-line span,
  .hero-offer-income-line strong {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-offer-income-heading {
    display: block;
    white-space: normal;
  }

  .hero-offer-income-kicker {
    display: block;
    margin-bottom: 4px;
  }

  .hero-offer-income-list {
    gap: 6px;
    margin-top: 10px;
  }

  .hero-offer-income-line {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-offer-income-line strong {
    white-space: normal;
  }

  .hero-offer-toggle {
    width: 100%;
    padding: 14px 0;
  }

  .hero-offer-details,
  .hero-offer-footer,
  .hero-offer-button {
    width: 100%;
  }

  .hero-offer-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-offer-button {
    min-height: 54px;
    font-size: 15px;
  }
}

.hero-offer-panel .hero-offer-dynamic {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-offer-panel[data-truck-switcher] {
  padding: 18px;
}

.hero-offer-panel[data-truck-switcher] .configurator-stage,
.hero-offer-panel[data-truck-switcher] .hero-offer-preview {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.hero-offer-panel[data-truck-switcher] .configurator-stage::before,
.hero-offer-panel[data-truck-switcher] .hero-offer-preview::before,
.hero-offer-summary-card::before,
.hero-offer-panel .program-selector::before,
.truck-selector-option::before,
.trailer-option::before {
  content: none;
}

.hero-offer-panel[data-truck-switcher] .configurator-stage[aria-hidden="true"],
.hero-offer-panel[data-truck-switcher] {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-offer-panel[data-truck-switcher]::before {
  content: "";
}

.hero-configurator-progress {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 4px;
}

.configurator-progress-step {
  appearance: none;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.configurator-progress-step::after {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  transform-origin: left center;
  transform: scaleX(0.92);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), background-color 380ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.configurator-progress-step:last-child::after {
  display: none;
}

.configurator-progress-dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transform: scale(0.92);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 380ms cubic-bezier(0.22, 1, 0.36, 1), background 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.configurator-progress-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.configurator-progress-step.is-available:hover,
.configurator-progress-step.is-available:focus-visible {
  color: rgba(246, 249, 253, 0.88);
  outline: none;
  transform: translateY(-1px);
}

.configurator-progress-step.is-completed,
.configurator-progress-step.is-active {
  color: rgba(246, 249, 253, 0.88);
}

.configurator-progress-step.is-completed .configurator-progress-dot {
  border-color: #ff3b3b;
  background: #ff3b3b;
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.1);
}

.configurator-progress-step.is-active .configurator-progress-dot {
  transform: scale(1);
  border-color: #ff3b3b;
  background: #ff3b3b;
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.1);
}

.configurator-progress-step.is-active::after,
.configurator-progress-step.is-completed::after {
  background: #ff3b3b;
  transform: scaleX(1);
}

.configurator-progress-step[aria-disabled="true"] {
  cursor: default;
}

.hero-offer-panel .hero-offer-dynamic {
  position: relative;
  z-index: 1;
}

.hero-configurator-stage-frame {
  position: relative;
  display: grid;
  min-height: 0;
}

.hero-offer-panel[data-current-step="summary"] .hero-configurator-stage-frame {
  min-height: 360px;
}

.hero-offer-panel[data-current-step="trailer"] .hero-configurator-stage-frame {
  min-height: 250px;
}

.hero-offer-panel[data-current-step="program"] .hero-configurator-stage-frame {
  min-height: 452px;
}

.hero-configurator-screen {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 420ms step-end;
}

.hero-configurator-screen.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear;
}

.configurator-stage-heading {
  display: grid;
  gap: 8px;
}

.selector-section-kicker,
.hero-offer-summary-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.configurator-stage-title {
  margin: 0;
  color: #f5f7fa;
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.configurator-stage-note {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.5;
}

.configurator-selection-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.configurator-selection-operator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 250, 253, 0.78);
  font-size: 16px;
  font-weight: 800;
}

.configurator-selection-card {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 8px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: none;
}

.configurator-selection-kicker {
  color: rgba(214, 219, 228, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.configurator-selection-card strong {
  color: rgba(248, 250, 253, 0.94);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.configurator-selection-truck-image {
  display: block;
  width: 78px;
  max-width: 100%;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

.configurator-selection-trailer-image {
  display: block;
  width: 78px;
  max-width: 100%;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

.configurator-selection-truck-image[hidden],
.configurator-selection-trailer-image[hidden] {
  display: none;
}

.configurator-selection-meta {
  color: rgba(214, 219, 228, 0.6);
  font-size: 11px;
  font-weight: 600;
}

.truck-selector,
.trailer-selector,
.hero-offer-panel .program-selector {
  display: grid;
  gap: 8px;
}

.hero-offer-panel .program-selector {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}

.truck-selector-page,
.trailer-selector-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.truck-selector-options,
.trailer-selector-options {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.truck-selector-viewport,
.trailer-selector-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.truck-selector-page,
.trailer-selector-page {
  flex: 0 0 100%;
  min-width: 0;
}

.truck-selector-controls,
.trailer-selector-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.truck-selector.is-short-term-limited {
  display: grid;
  gap: 14px;
}

.truck-short-term-note {
  display: none;
}

.truck-selector.is-short-term-limited .truck-selector-viewport {
  max-width: 340px;
  margin: 0 auto;
}

.truck-selector.is-short-term-limited .truck-selector-page {
  grid-template-columns: minmax(0, min(320px, 100%));
  justify-content: center;
}

.truck-selector.is-short-term-limited .truck-short-term-note {
  display: grid;
}

.truck-selector.is-short-term-limited .truck-selector-controls {
  display: none;
}

.truck-selector-nav,
.truck-selector-dot,
.trailer-selector-nav,
.trailer-selector-dot {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.truck-selector-nav,
.trailer-selector-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 247, 250, 0.9);
  transition: background 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.truck-selector-nav:hover,
.truck-selector-nav:focus-visible,
.trailer-selector-nav:hover,
.trailer-selector-nav:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.truck-selector-nav[disabled],
.trailer-selector-nav[disabled] {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.truck-selector-pagination,
.trailer-selector-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.truck-selector-dot,
.trailer-selector-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transition: transform 220ms ease, background 220ms ease;
}

.truck-selector-dot.is-active,
.trailer-selector-dot.is-active {
  background: #ff4d4d;
  transform: scale(1.15);
}

.hero-offer-panel .program-selector-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.truck-selector-option,
.trailer-option,
.hero-offer-panel .program-selector-option {
  appearance: none;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: stretch;
  gap: 4px;
  min-width: 0;
  padding: 10px 10px 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(44, 48, 56, 0.92) 0%, rgba(28, 30, 36, 0.9) 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  overflow: hidden;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), background 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 380ms cubic-bezier(0.22, 1, 0.36, 1), filter 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.truck-selector-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  gap: 5px;
  justify-items: start;
}

.trailer-selector-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  gap: 5px;
  justify-items: start;
}

.truck-selector-stock-badge,
.truck-selector-stock-count,
.trailer-selector-stock-badge,
.trailer-selector-stock-count {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.truck-selector-stock-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trailer-selector-stock-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.truck-selector-stock-count {
  color: rgba(245, 247, 250, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(10, 12, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trailer-selector-stock-count {
  color: rgba(245, 247, 250, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(10, 12, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.truck-selector-stock-badge[data-stock-state="in-stock"] {
  color: #caffdd;
  background: linear-gradient(135deg, rgba(39, 196, 107, 0.24), rgba(116, 255, 178, 0.12));
  border-color: rgba(116, 255, 178, 0.34);
  box-shadow: 0 0 0 1px rgba(116, 255, 178, 0.12), 0 0 18px rgba(94, 255, 166, 0.22);
  animation: truckStockPulse 1.8s ease-in-out infinite;
}

.trailer-selector-stock-badge[data-stock-state="in-stock"] {
  color: #caffdd;
  background: linear-gradient(135deg, rgba(39, 196, 107, 0.24), rgba(116, 255, 178, 0.12));
  border-color: rgba(116, 255, 178, 0.34);
  box-shadow: 0 0 0 1px rgba(116, 255, 178, 0.12), 0 0 18px rgba(94, 255, 166, 0.22);
  animation: truckStockPulse 1.8s ease-in-out infinite;
}

.truck-selector-stock-badge[data-stock-state="coming-soon"] {
  color: #ffd7a3;
  background: linear-gradient(135deg, rgba(255, 143, 32, 0.24), rgba(255, 188, 92, 0.12));
  border-color: rgba(255, 181, 87, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 181, 87, 0.1), 0 0 16px rgba(255, 161, 64, 0.18);
}

.trailer-selector-stock-badge[data-stock-state="coming-soon"] {
  color: #ffd7a3;
  background: linear-gradient(135deg, rgba(255, 143, 32, 0.24), rgba(255, 188, 92, 0.12));
  border-color: rgba(255, 181, 87, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 181, 87, 0.1), 0 0 16px rgba(255, 161, 64, 0.18);
}

.truck-selector-stock-badge[data-stock-state="out-of-stock"] {
  color: #ffb5b5;
  background: linear-gradient(135deg, rgba(186, 63, 63, 0.22), rgba(111, 24, 24, 0.18));
  border-color: rgba(255, 120, 120, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 120, 120, 0.08);
}

.trailer-selector-stock-badge[data-stock-state="out-of-stock"] {
  color: #ffb5b5;
  background: linear-gradient(135deg, rgba(186, 63, 63, 0.22), rgba(111, 24, 24, 0.18));
  border-color: rgba(255, 120, 120, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 120, 120, 0.08);
}

@keyframes truckStockPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(116, 255, 178, 0.12), 0 0 18px rgba(94, 255, 166, 0.18);
    filter: brightness(1);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(142, 255, 194, 0.2), 0 0 28px rgba(94, 255, 166, 0.32);
    filter: brightness(1.08);
  }
}

.trailer-option-placeholder {
  cursor: default;
  pointer-events: none;
  visibility: hidden;
}

.truck-selector-option-placeholder {
  cursor: default;
  pointer-events: none;
  visibility: hidden;
}

.truck-selector-option.is-program-hidden {
  display: none;
}

.truck-short-term-note {
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(45, 49, 57, 0.94), rgba(22, 25, 31, 0.96)),
    radial-gradient(circle at top left, rgba(255, 132, 92, 0.12), transparent 54%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.truck-short-term-note__copy {
  display: grid;
  gap: 10px;
}

.truck-short-term-note__eyebrow {
  color: rgba(255, 213, 169, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.truck-short-term-note__title {
  margin: 0;
  color: #f7f9fc;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.truck-short-term-note__message {
  margin: 0;
  color: rgba(232, 236, 243, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.truck-short-term-note__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.truck-short-term-note__action {
  appearance: none;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #f5f7fa;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.truck-short-term-note__action:hover,
.truck-short-term-note__action:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.truck-selector-option::before,
.trailer-option::before,
.hero-offer-panel .program-selector-option::before,
.hero-offer-preview-card::before,
.hero-offer-summary-details::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 32%);
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.truck-selector-option,
.trailer-option {
  min-height: 200px;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 14px 12px 12px;
  border-color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(44, 48, 56, 0.92) 0%, rgba(28, 30, 36, 0.9) 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.truck-selector-option[aria-disabled="true"] {
  cursor: default;
  opacity: 0.64;
  filter: saturate(0.72);
}

.truck-selector-option[aria-disabled="true"] .truck-selector-image {
  opacity: 0.72;
}

.truck-selector-option::after,
.trailer-option::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 56%;
  height: 16px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.1;
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero-offer-panel .program-selector-option {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: stretch;
  align-content: stretch;
  min-height: 118px;
  height: 118px;
  padding: 16px 18px;
  text-align: left;
  gap: 10px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(40, 44, 52, 0.98) 0%, rgba(22, 24, 30, 0.98) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 58%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-offer-panel .program-selector-option::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 44%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-offer-panel .program-selector-option::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  opacity: 0.72;
  pointer-events: none;
}

.hero-offer-panel .program-selector-option:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(55, 42, 42, 0.98) 0%, rgba(25, 20, 24, 0.98) 100%),
    radial-gradient(circle at top left, rgba(255, 110, 82, 0.12), transparent 58%);
}

.hero-offer-panel .program-selector-option:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(39, 47, 58, 0.98) 0%, rgba(21, 25, 31, 0.98) 100%),
    radial-gradient(circle at top left, rgba(96, 174, 255, 0.11), transparent 58%);
}

.hero-offer-panel .program-selector-option:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(39, 48, 54, 0.98) 0%, rgba(22, 27, 31, 0.98) 100%),
    radial-gradient(circle at top left, rgba(120, 214, 255, 0.1), transparent 58%);
}

.hero-offer-panel .program-selector-option:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(50, 46, 56, 0.98) 0%, rgba(26, 23, 31, 0.98) 100%),
    radial-gradient(circle at top left, rgba(255, 178, 98, 0.11), transparent 58%);
}

.hero-offer-panel .program-selector-option:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(40, 48, 52, 0.98) 0%, rgba(21, 26, 30, 0.98) 100%),
    radial-gradient(circle at top left, rgba(122, 248, 198, 0.1), transparent 58%);
}

.program-selector-select {
  appearance: none;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.hero-offer-panel .program-selector-option.has-program-action {
  min-height: 148px;
  height: auto;
}

.program-selector-select:focus-visible {
  outline: none;
}

.program-selector-title {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  color: rgba(247, 249, 252, 0.98);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.program-selector-action {
  position: relative;
  z-index: 1;
  appearance: none;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  border: 0;
  border-radius: 16px;
  margin-top: auto;
  justify-self: stretch;
  padding: 0 16px;
  background: linear-gradient(135deg, #ff4d4d, #ff7a4d);
  color: #fff9f7;
  font: inherit;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(255, 77, 77, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.hero-offer-panel .program-selector-option:hover,
.hero-offer-panel .program-selector-option:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 34px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.program-selector-action:hover,
.program-selector-action:focus-visible {
  outline: none;
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 28px rgba(255, 77, 77, 0.28);
}


.hero-offer-panel .program-selector-option.is-selected {
  border-color: rgba(255, 95, 95, 0.42);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 95, 95, 0.2),
    0 24px 36px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(255, 82, 82, 0.14);
}

.hero-offer-panel .program-selector-option.is-selected::after {
  width: calc(100% - 36px);
  height: 4px;
  background: linear-gradient(90deg, #ff5d5d, #ff9f5f);
  opacity: 1;
}

.hero-offer-panel .program-selector-option.is-selected .program-selector-title {
  color: #ffffff;
}

.hero-offer-panel .program-selector-option.is-selected .program-selector-select {
  align-items: flex-start;
  padding-top: 52px;
}

.hero-offer-panel .program-selector-option.is-selected .program-selector-select::after {
  content: "Selected";
  position: absolute;
  top: 10px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 93, 93, 0.22), rgba(255, 159, 95, 0.18));
  border: 1px solid rgba(255, 140, 110, 0.28);
  color: rgba(255, 243, 239, 0.96);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.hero-offer-panel .program-selector-option.is-premium {
  background:
    linear-gradient(180deg, rgba(58, 44, 44, 0.96), rgba(30, 24, 24, 0.94)),
    radial-gradient(circle at top left, rgba(255, 90, 90, 0.12), transparent 54%);
}

.truck-selector-option:hover,
.truck-selector-option:focus-visible,
.trailer-option:hover,
.trailer-option:focus-visible,
.hero-offer-panel .program-selector-option:hover,
.hero-offer-panel .program-selector-option:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.08);
  outline: none;
  filter: brightness(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.truck-selector-option[aria-disabled="true"]:hover,
.truck-selector-option[aria-disabled="true"]:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(44, 48, 56, 0.92) 0%, rgba(28, 30, 36, 0.9) 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  outline: none;
}

.truck-selector-option:hover,
.truck-selector-option:focus-visible,
.trailer-option:hover,
.trailer-option:focus-visible {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(50, 54, 62, 0.94) 0%, rgba(32, 34, 40, 0.92) 100%);
  box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.18), 0 18px 42px rgba(0, 0, 0, 0.22);
}

.truck-selector-option.is-selected,
.trailer-option.is-selected,
.hero-offer-panel .program-selector-option.is-selected {
  border-color: rgba(255, 59, 59, 0.38);
  background: linear-gradient(180deg, rgba(54, 58, 66, 0.96) 0%, rgba(34, 36, 42, 0.94) 100%);
  filter: none;
  box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.22), 0 20px 46px rgba(0, 0, 0, 0.24);
}

.truck-selector-option.is-selected {
  border-color: rgba(255, 59, 59, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.22), 0 20px 46px rgba(0, 0, 0, 0.24);
}

.truck-selector-option::before,
.truck-selector-option::after,
.trailer-option::before,
.trailer-option::after {
  pointer-events: none;
}

.hero-offer-panel .program-selector-option.is-premium.is-selected {
  animation: none;
}

.truck-selector-image,
.trailer-option-image {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.truck-selector-image {
  align-self: center;
  justify-self: center;
  max-width: 100%;
  width: min(100%, 354px);
  height: 153px;
  margin-top: 0;
  position: relative;
  z-index: 1;
  transform: translateY(0);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.16));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.truck-selector-option:hover .truck-selector-image,
.truck-selector-option:focus-visible .truck-selector-image {
  transform: scale(1.025);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28)) brightness(1.04);
}

.trailer-option-image {
  align-self: center;
  justify-self: center;
  max-width: 100%;
  width: min(100%, 232px);
  height: 124px;
  position: relative;
  z-index: 1;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.trailer-option:hover .trailer-option-image,
.trailer-option:focus-visible .trailer-option-image {
  transform: scale(1.025);
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.24)) brightness(1.04);
}

.truck-selector-label,
.trailer-option-label {
  position: relative;
  z-index: 1;
  color: #f5f7fa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.truck-selector-label {
  color: rgba(245, 247, 250, 0.72);
  letter-spacing: 0.06em;
  font-size: 10px;
  font-weight: 700;
}

.trailer-option-label {
  color: rgba(245, 247, 250, 0.72);
  letter-spacing: 0.06em;
  font-size: 10px;
  font-weight: 700;
}

.program-selector-title {
  position: relative;
  z-index: 1;
  color: #f5f7fa;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.program-selector-support {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.38;
}

.hero-offer-summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 14px;
  align-items: stretch;
}

.hero-offer-preview-card,
.hero-offer-summary-details {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    radial-gradient(circle at top left, rgba(255, 78, 78, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(13, 17, 25, 0.94), rgba(7, 10, 16, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 18px 34px rgba(0, 0, 0, 0.16);
}

.hero-offer-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.hero-offer-preview-head h3 {
  margin: 4px 0 0;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-offer-summary-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(223, 229, 238, 0.68);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-offer-media {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hero-offer-media-frame {
  width: 100%;
  min-height: 196px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top left, rgba(255, 74, 74, 0.11), transparent 40%),
    radial-gradient(circle at bottom right, rgba(95, 119, 164, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 22, 31, 0.96), rgba(9, 11, 17, 0.98));
}

.hero-offer-image {
  width: 100%;
  max-width: 278px;
  padding: 0;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.24));
}

.hero-offer-panel .truck-condition-toggle {
  justify-self: center;
  gap: 6px;
  margin: -4px 0 0;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(12, 15, 22, 0.94), rgba(17, 21, 29, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 24px rgba(0, 0, 0, 0.22);
}

.hero-offer-panel .truck-condition-option {
  min-height: 30px;
  padding: 0 14px;
  color: rgba(236, 239, 245, 0.7);
  font-size: 11px;
}

.hero-offer-panel .truck-condition-option.is-selected {
  background: linear-gradient(135deg, rgba(255, 66, 66, 0.3), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 82, 82, 0.24), 0 0 24px rgba(255, 64, 64, 0.16);
}

.take-home-line {
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(86, 245, 146, 0.16);
  color: rgba(246, 250, 247, 0.96);
  background:
    radial-gradient(circle at top left, rgba(48, 194, 108, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(28, 49, 36, 0.8), rgba(12, 21, 17, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 34px rgba(52, 188, 110, 0.12);
}

.take-home-line__eyebrow {
  color: rgba(208, 244, 223, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.take-home-line__value {
  color: #ffffff;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.take-home-line__caption {
  color: rgba(225, 244, 232, 0.78);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-offer-panel .hero-offer-primary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-offer-panel .hero-offer-primary-metrics article {
  min-height: 86px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(15, 18, 26, 0.9), rgba(9, 11, 16, 0.94));
  display: grid;
  align-content: space-between;
  gap: 8px;
}

.hero-offer-panel .hero-offer-primary-metrics span {
  color: rgba(214, 219, 228, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-offer-panel .hero-offer-primary-metrics strong {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-offer-panel .available-badge {
  min-height: 28px;
  padding: 0 12px;
  font-size: 10px;
}

.hero-offer-panel .hero-offer-status[data-stock-state="in-stock"] {
  color: #58e08b;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  border-color: rgba(90, 255, 148, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(64, 255, 145, 0.08), 0 0 22px rgba(33, 197, 94, 0.24), 0 0 34px rgba(64, 255, 145, 0.1);
}

.hero-offer-panel .hero-offer-status[data-stock-state="in-stock"]::before {
  background: #22c55e;
  box-shadow: 0 0 18px rgba(64, 255, 145, 0.92);
}

.hero-offer-panel .hero-offer-status[data-stock-state="coming-soon"] {
  color: #ffcd69;
  background: linear-gradient(180deg, rgba(255, 188, 71, 0.16), rgba(255, 188, 71, 0.08));
  border-color: rgba(255, 196, 86, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 208, 109, 0.08), 0 0 22px rgba(255, 180, 64, 0.2), 0 0 34px rgba(255, 190, 72, 0.08);
}

.hero-offer-panel .hero-offer-status[data-stock-state="coming-soon"]::before {
  background: #ffb347;
  box-shadow: 0 0 18px rgba(255, 188, 71, 0.82);
}

.hero-offer-panel .hero-offer-status[data-stock-state="out-of-stock"] {
  color: #ff8f8f;
  background: linear-gradient(180deg, rgba(255, 93, 93, 0.16), rgba(255, 93, 93, 0.08));
  border-color: rgba(255, 120, 120, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 119, 119, 0.08), 0 0 22px rgba(255, 84, 84, 0.18), 0 0 34px rgba(255, 84, 84, 0.08);
}

.hero-offer-panel .hero-offer-status[data-stock-state="out-of-stock"]::before {
  background: #ff5d5d;
  box-shadow: 0 0 18px rgba(255, 108, 108, 0.82);
}

.hero-offer-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-offer-button {
  min-height: 48px;
}

.hero-offer-comparison {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(15, 18, 26, 0.9), rgba(9, 11, 16, 0.94));
}

.hero-offer-comparison__head {
  display: grid;
  gap: 4px;
}

.hero-offer-comparison__eyebrow {
  color: rgba(236, 241, 248, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-offer-comparison__copy {
  margin: 0;
  color: rgba(209, 216, 228, 0.66);
  font-size: 11px;
  line-height: 1.45;
}

.hero-offer-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-offer-comparison__card {
  display: grid;
  align-content: space-between;
  gap: 8px;
  min-height: 74px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.hero-offer-comparison__card.is-current {
  border-color: rgba(255, 94, 94, 0.22);
  background:
    radial-gradient(circle at top left, rgba(255, 86, 86, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 0 0 1px rgba(255, 78, 78, 0.1), 0 16px 26px rgba(0, 0, 0, 0.14);
}

.hero-offer-comparison__program {
  color: rgba(223, 229, 238, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer-comparison__value {
  color: #ffffff;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1;
  letter-spacing: -0.05em;
}

@keyframes premiumProgramPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 86, 86, 0.18), 0 24px 44px rgba(112, 16, 16, 0.2), 0 0 36px rgba(255, 64, 64, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(255, 112, 112, 0.24), 0 28px 48px rgba(132, 16, 16, 0.24), 0 0 42px rgba(255, 78, 78, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 1200px) {
  .hero-offer-panel .program-selector-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-offer-panel[data-truck-switcher] {
    padding: 18px;
  }

  .hero-offer-panel[data-current-step="summary"] .hero-configurator-stage-frame {
    min-height: 320px;
  }

  .hero-offer-panel[data-current-step="program"] .hero-configurator-stage-frame {
    min-height: 0;
  }

  .hero-offer-summary-layout {
    grid-template-columns: 1fr;
  }

  .hero-offer-footer,
  .hero-offer-comparison__grid {
    grid-template-columns: 1fr;
  }

  .hero-offer-media-frame {
    min-height: 176px;
  }

  .take-home-line__value {
    font-size: clamp(26px, 6vw, 34px);
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 104px 0 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-configurator-progress {
    gap: 6px;
  }

  .configurator-progress-label {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .hero-offer-panel .program-selector-options,
  .hero-offer-panel .hero-offer-primary-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truck-selector-viewport {
    overflow: visible;
  }

  .truck-selector-options {
    display: grid;
    gap: 12px;
    transform: none !important;
  }

  .trailer-selector-viewport {
    overflow: visible;
  }

  .trailer-selector-options {
    display: grid;
    gap: 12px;
    transform: none !important;
  }

  .truck-selector-page {
    grid-template-columns: minmax(0, 1fr);
    flex: none;
  }

  .trailer-selector-page {
    grid-template-columns: minmax(0, 1fr);
    flex: none;
  }

  .truck-selector-controls {
    display: none;
  }

  .trailer-selector-controls {
    display: none;
  }

  .truck-selector-option,
  .trailer-option {
    min-height: 132px;
  }

  .truck-selector-image {
    width: min(100%, 239px);
    height: 180px;
  }

  .trailer-option-image {
    width: min(100%, 207px);
    height: 111px;
  }

  .truck-short-term-note__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-offer-panel .program-selector-option {
    min-height: 150px;
    height: auto;
  }

  .hero-configurator-stage-frame {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .hero-offer-panel[data-truck-switcher] {
    padding: 14px;
    border-radius: 24px;
  }

  .hero-configurator-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .configurator-progress-step {
    gap: 8px;
  }

  .configurator-progress-step::after {
    left: calc(50% + 12px);
    width: calc(100% - 24px);
  }

  .configurator-progress-label {
    font-size: 9px;
  }

  .hero-offer-panel .hero-offer-primary-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .truck-selector-options {
    gap: 10px;
  }

  .trailer-selector-options {
    gap: 10px;
  }

  .truck-selector-page {
    grid-template-columns: minmax(0, 1fr);
  }

  .trailer-selector-page {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-offer-panel .program-selector-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-configurator-stage-frame {
    min-height: 0;
  }

  .truck-selector-option,
  .trailer-option,
  .hero-offer-panel .program-selector-option {
    min-height: 138px;
    border-radius: 28px;
  }

  .truck-short-term-note {
    padding: 16px;
    border-radius: 24px;
  }

  .truck-short-term-note__title {
    font-size: 18px;
  }

  .truck-short-term-note__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .truck-selector-stock {
    top: 10px;
    left: 10px;
    gap: 4px;
  }

  .trailer-selector-stock {
    top: 10px;
    left: 10px;
    gap: 4px;
  }

  .truck-selector-stock-badge,
  .truck-selector-stock-count,
  .trailer-selector-stock-badge,
  .trailer-selector-stock-count {
    min-height: 21px;
    padding: 0 8px;
  }

  .truck-selector-stock-badge {
    font-size: 8px;
  }

  .trailer-selector-stock-badge {
    font-size: 8px;
  }

  .truck-selector-stock-count {
    font-size: 9px;
  }

  .trailer-selector-stock-count {
    font-size: 9px;
  }

  .program-selector-title {
    font-size: 16px;
  }

  .truck-selector-option::after {
    left: 50%;
    width: 74%;
    bottom: 16px;
    height: 28px;
    transform: translateX(-50%);
  }

  .truck-selector-label,
  .trailer-option-label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero-offer-image {
    max-width: 210px;
  }

  .hero-offer-preview-head {
    grid-template-columns: 1fr;
  }
}

.hero-copy,
.hero-visual,
.hero-grid,
.hero-actions {
  transition: opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1), transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.44s cubic-bezier(0.22, 1, 0.36, 1), column-gap 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-offer-panel {
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 380ms cubic-bezier(0.22, 1, 0.36, 1), background 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-actions {
  opacity: 1;
  transform: translateY(0);
}

html.homepage-intro-mode .hero.section {
  width: min(1440px, calc(100vw - 72px));
}

html.homepage-intro-mode,
html.homepage-intro-mode body {
  min-height: 100svh;
  height: 100%;
  overflow: hidden;
}

html.homepage-intro-mode .site-shell,
html.homepage-intro-mode .top-stage {
  min-height: 100svh;
  height: 100svh;
  max-height: 100svh;
}

html.homepage-intro-mode .top-stage {
  display: grid;
  grid-template-rows: auto 1fr;
}

html.homepage-intro-mode .hero {
  --intro-program-column-width: 420px;
  --intro-program-column-height: 450px;
  --intro-program-card-height: 130px;
  --intro-program-image-width: var(--intro-program-column-width);
  --intro-program-image-height: var(--intro-program-card-height);
  min-height: 0;
  height: 100%;
  padding: 28px 0 18px;
  display: grid;
  align-items: center;
}

html.homepage-intro-mode .hero.section {
  align-self: stretch;
}

html.homepage-intro-mode .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  min-height: 0;
  height: 100%;
  column-gap: 0;
}

html.homepage-intro-mode .hero-copy {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: start;
  justify-self: center;
  width: auto;
  max-width: 1080px;
  margin: 0 auto;
  min-height: calc(100svh - 128px);
  row-gap: 0;
  padding: 0;
  box-sizing: border-box;
  --hero-zone-gap: 0px;
  --hero-story-zone-height: auto;
  --hero-premium-zone-height: auto;
  --hero-actions-zone-height: auto;
}

html.homepage-intro-mode .hero-story-zone,
html.homepage-intro-mode .hero-program-column,
html.homepage-intro-mode .hero-premium-zone,
html.homepage-intro-mode .hero-standard-zone,
html.homepage-intro-mode .hero-copy-intro,
html.homepage-intro-mode .hero-interaction-zone {
  min-width: 0;
  min-height: 0;
}

html:not(.homepage-intro-mode) .hero-navigator-panel {
  display: none;
}

html.homepage-intro-mode .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  column-gap: 0;
}

html.homepage-intro-mode .hero-container {
  width: min(1280px, 94vw);
}

html.homepage-intro-mode .hero-copy {
  position: relative;
  width: 100%;
  max-width: 1280px;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  transition: padding-right 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-copy.is-assistant-condensed {
  padding-right: 340px;
}

html.homepage-intro-mode .hero-story-zone {
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  max-height: none;
  overflow: visible;
  padding-top: 0;
}

html.homepage-intro-mode .hero-copy-intro {
  display: none;
}

html.homepage-intro-mode .hero-navigator-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  width: 100%;
  max-width: 620px;
  color: #f5f7fa;
  opacity: 0;
  transform: translateY(16px);
  animation: heroNavigatorIntro 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.homepage-intro-mode .hero-program-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: var(--intro-program-column-width);
  min-width: var(--intro-program-column-width);
  max-width: var(--intro-program-column-width);
  height: auto;
  min-height: 0;
  max-height: none;
  gap: 8px;
  padding-top: 0;
  overflow: visible;
}

html.homepage-intro-mode .hero-navigator-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

html.homepage-intro-mode .hero-navigator-title {
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

html.homepage-intro-mode .hero-navigator-title span {
  color: #ff3b3b;
}

html.homepage-intro-mode .hero-navigator-subtitle {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

html.homepage-intro-mode .hero-navigator-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 500px;
}

html.homepage-intro-mode .hero-navigator-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

html.homepage-intro-mode .hero-navigator-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 98, 98, 0.96), rgba(255, 59, 59, 0.78) 48%, rgba(135, 18, 18, 0.88));
  color: #f5f7fa;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

html.homepage-intro-mode .hero-navigator-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

html.homepage-intro-mode .hero-navigator-label {
  color: #f5f7fa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

html.homepage-intro-mode .hero-navigator-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
}

html.homepage-intro-mode .hero-navigator-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6cff4f;
  box-shadow: 0 0 0 6px rgba(108, 255, 79, 0.12);
}

html.homepage-intro-mode .hero-navigator-bubble {
  display: flex;
  width: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(18, 22, 28, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-offer-panel .hero-alert-bubble {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 12px 14px 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 95, 95, 0.26);
  background: linear-gradient(180deg, rgba(28, 18, 20, 0.96), rgba(18, 15, 18, 0.94));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 95, 95, 0.08);
  opacity: 0;
  transform: translateY(-10px) scaleY(0.82);
  transform-origin: top left;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1), max-height 280ms cubic-bezier(0.22, 1, 0.36, 1), margin 280ms cubic-bezier(0.22, 1, 0.36, 1), padding 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-offer-panel .hero-alert-bubble::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff6767;
  box-shadow: 0 0 0 0 rgba(255, 103, 103, 0.42);
  animation: heroAlertPulse 1.1s ease-in-out infinite;
}

.hero-offer-panel .hero-alert-bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  max-height: 220px;
  pointer-events: auto;
}

.hero-offer-panel .hero-alert-bubble__eyebrow {
  display: block;
  margin: 0 0 6px 16px;
  color: rgba(255, 204, 204, 0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-offer-panel .hero-alert-bubble__message {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: #f7f8fb;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-line;
}

.hero-offer-panel .hero-alert-bubble__message.is-typing::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1.05em;
  margin-left: 4px;
  vertical-align: -0.16em;
  border-radius: 999px;
  background: rgba(255, 117, 117, 0.92);
  animation: heroAlertCaret 0.9s steps(1) infinite;
}

@keyframes heroAlertPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 103, 103, 0.36);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 103, 103, 0);
    opacity: 0.82;
  }
}

@keyframes heroAlertCaret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

html.homepage-intro-mode .hero-navigator-message {
  margin: 0;
  min-height: 4.6em;
  color: #f5f7fa;
  font-size: 19px;
  line-height: 1.5;
  white-space: pre-line;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-navigator-message.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

html.homepage-intro-mode .navigator-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

html.homepage-intro-mode .navigator-options {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 8px;
}

html.homepage-intro-mode .navigator-options.is-visible {
  display: flex;
}

html.homepage-intro-mode .navigator-more-info-button,
html.homepage-intro-mode .navigator-option-button {
  min-height: 42px;
  border-radius: 12px;
}

html.homepage-intro-mode .navigator-option-button {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

html.homepage-intro-mode body.navigator-modal-open {
  overflow: hidden;
}

html.homepage-intro-mode .navigator-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

html.homepage-intro-mode .navigator-modal.is-open {
  display: block;
}

html.homepage-intro-mode .navigator-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

html.homepage-intro-mode .navigator-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 32px));
  max-height: 72vh;
  margin: min(8vh, 72px) auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  background: #0b0f15;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

html.homepage-intro-mode .navigator-modal__header,
html.homepage-intro-mode .navigator-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

html.homepage-intro-mode .navigator-modal__title {
  color: #f7f8fb;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

html.homepage-intro-mode .navigator-modal__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f8fb;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

html.homepage-intro-mode .navigator-modal__log {
  flex: 1 1 auto;
  min-height: 180px;
  max-height: 44vh;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #f7f8fb;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
  overflow-y: auto;
}

html.homepage-intro-mode .navigator-modal__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

html.homepage-intro-mode .navigator-modal__options .navigator-option-button,
html.homepage-intro-mode .navigator-modal__exit {
  min-height: 46px;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767px) {
  html.homepage-intro-mode .navigator-modal__dialog {
    width: calc(100vw - 32px);
    max-height: 78vh;
    margin: 16px auto;
    padding: 18px;
  }

  html.homepage-intro-mode .navigator-modal__log {
    max-height: 46vh;
    min-height: 160px;
    font-size: 15px;
  }

  html.homepage-intro-mode .navigator-modal__options {
    grid-template-columns: 1fr;
  }
}

html.homepage-intro-mode .hero-premium-zone {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
  max-height: none;
}

html.homepage-intro-mode .hero-standard-zone {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
  max-height: none;
}

html.homepage-intro-mode .hero-choice-shell {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  display: flex;
  transform: none;
  overflow: visible;
}

html.homepage-intro-mode .hero-choice-shell.is-visible {
  transform: none;
}

html.homepage-intro-mode .hero-choice-selector,
html.homepage-intro-mode .hero-choice-premium-callout {
  display: flex;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  justify-content: stretch;
  animation: none;
  overflow: visible;
}

html.homepage-intro-mode .program-choice-card {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 86px;
  min-height: 86px;
  max-height: 86px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .program-choice-card::before,
html.homepage-intro-mode .program-choice-card::after {
  content: none;
}

html.homepage-intro-mode .hero-choice-option.is-premium,
html.homepage-intro-mode .hero-choice-option.is-premium:hover,
html.homepage-intro-mode .hero-choice-option.is-premium:focus-visible,
html.homepage-intro-mode .hero-choice-option.is-premium.is-selected,
html.homepage-intro-mode .hero-actions .button.secondary,
html.homepage-intro-mode .hero-actions .button.secondary:hover,
html.homepage-intro-mode .hero-actions .button.secondary:focus-visible,
html.homepage-intro-mode .hero-actions .button.secondary[aria-pressed="true"] {
  min-height: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
}

html.homepage-intro-mode .hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  gap: 8px;
}

html.homepage-intro-mode .hero-actions .button {
  padding: 0;
}

html.homepage-intro-mode .program-choice-grid {
  justify-content: flex-start;
}

html.homepage-intro-mode .program-choice-card img,
html.homepage-intro-mode .program-choice-card .card-visual {
  width: 100%;
  height: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px;
}

html.homepage-intro-mode .program-choice img {
  position: static;
  pointer-events: none;
  user-select: none;
  filter: none;
  transition: filter 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .program-choice.is-premium,
html.homepage-intro-mode .program-choice-grid .program-choice {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

html.homepage-intro-mode .hero-choice-shell.is-visible .program-choice-card,
html.homepage-intro-mode .hero-actions.is-visible .program-choice-card {
  opacity: 0;
  transform: translateY(16px);
  animation: heroNavigatorIntro 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.homepage-intro-mode .hero-choice-shell.is-visible .program-choice-card {
  animation-delay: 120ms;
}

html.homepage-intro-mode .hero-actions.is-visible .program-choice-card:nth-child(1) {
  animation-delay: 220ms;
}

html.homepage-intro-mode .hero-actions.is-visible .program-choice-card:nth-child(2) {
  animation-delay: 320ms;
}

html.homepage-intro-mode .hero-actions.is-visible .program-choice-card:nth-child(3) {
  animation-delay: 420ms;
}

html.homepage-intro-mode .hero-actions.is-visible .program-choice-card:nth-child(4) {
  animation-delay: 520ms;
}

html.homepage-intro-mode .program-choice-card:hover,
html.homepage-intro-mode .program-choice-card:focus-visible {
  transform: translateY(-3px) scale(1.012);
}

html.homepage-intro-mode .program-choice-card:hover img,
html.homepage-intro-mode .program-choice-card:focus-visible img {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

html.homepage-intro-mode .program-choice-card:active {
  transform: scale(0.985);
}

html.homepage-intro-mode .hero-actions:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

html.homepage-intro-mode .hero-actions.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.homepage-intro-mode .program-choice-card,
html.homepage-intro-mode .hero-actions .button {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 86px;
  min-height: 86px;
  max-height: 86px;
  padding: 0;
}

html.homepage-intro-mode .footer.section {
  display: none;
}

html.homepage-intro-mode .hero-visual {
  max-width: 0;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}

html.homepage-intro-mode .hero-offer-panel {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

html.homepage-configured-mode .hero-visual {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

html.homepage-configured-mode .hero-offer-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

html.homepage-configured-mode .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-self: start;
  align-self: center;
  max-width: 400px;
  min-height: 0;
}

html.homepage-configured-mode .hero-story-zone {
  min-height: 0;
  max-height: none;
  overflow: visible;
}

html.homepage-configured-mode .hero-copy-intro {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: none;
  height: auto;
  overflow: visible;
  gap: 0;
}

html.homepage-configured-mode .configured-live-navigator {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100%, 400px);
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(11, 15, 22, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

html.homepage-configured-mode .configured-live-navigator__header {
  justify-content: space-between;
}

html.homepage-configured-mode .configured-live-navigator__avatar {
  top: 16px;
  right: 116px;
}

html.homepage-configured-mode .configured-live-navigator__message {
  margin: 0;
  min-height: calc(1.6em * 4);
  max-height: calc(1.6em * 4);
  overflow-y: auto;
  color: #f7f8fb;
  font-size: 18px;
  line-height: 1.6;
  white-space: pre-line;
  scrollbar-width: none;
}

html.homepage-configured-mode .configured-live-navigator__message::-webkit-scrollbar {
  display: none;
}

html.homepage-configured-mode .hero-copy-intro > h1,
html.homepage-configured-mode .hero-copy-intro > .hero-subheadline,
html.homepage-configured-mode .hero-copy-intro > .lead {
  display: none !important;
}

html.homepage-configured-mode .hero-copy-intro::after {
  content: none;
}

html.homepage-configured-mode .hero-premium-zone,
html.homepage-configured-mode .hero-standard-zone {
  display: none;
}

html.homepage-configured-mode .hero-choice-shell,
html.homepage-configured-mode .hero-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .truck-selector-option,
  .trailer-option,
  .hero-offer-panel .program-selector-option,
  .truck-selector-image,
  .hero-offer-panel,
  .hero-configurator-screen,
  .hero-typing-line,
  .hero-typing-support,
  .configurator-progress-dot,
  .configurator-progress-step::after,
  .hero-copy,
  .hero-visual,
  .hero-grid,
  .hero-actions {
    transition-duration: 120ms !important;
    transition-timing-function: linear !important;
  }

  .truck-selector-option:hover,
  .truck-selector-option:focus-visible,
  .trailer-option:hover,
  .trailer-option:focus-visible,
  .hero-offer-panel .program-selector-option:hover,
  .hero-offer-panel .program-selector-option:focus-visible,
  .truck-selector-option.is-selected,
  .hero-configurator-screen,
  .hero-copy-intro.is-configurator-copy-updating,
  html.homepage-intro-mode .hero-offer-panel,
  html.homepage-configured-mode .hero-offer-panel {
    transform: none !important;
  }

  .truck-selector-option:hover .truck-selector-image,
  .truck-selector-option:focus-visible .truck-selector-image,
  .truck-selector-image {
    transform: none !important;
  }

  .hero-copy-intro.is-transitioning .hero-typing-line,
  .hero-copy-intro.is-transitioning .hero-typing-support,
  .hero-copy-intro.is-configurator-copy-updating {
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  html.homepage-intro-mode .hero-copy {
    display: flex;
    align-items: center;
    max-width: calc(100vw - 80px);
    min-height: 0;
    gap: 24px;
    padding: 0;
  }

  html.homepage-intro-mode .hero-grid {
    height: auto;
    align-items: center;
  }

  html.homepage-intro-mode .hero-story-zone,
  html.homepage-intro-mode .hero-program-column,
  html.homepage-intro-mode .hero-premium-zone,
  html.homepage-intro-mode .hero-standard-zone {
    justify-content: center;
  }

  html.homepage-intro-mode .hero-story-zone {
    width: 100%;
    max-width: none;
  }

  html.homepage-intro-mode .hero-program-column {
    align-items: stretch;
    justify-content: center;
    width: var(--intro-program-column-width);
    min-width: var(--intro-program-column-width);
    max-width: var(--intro-program-column-width);
    height: auto;
    min-height: 0;
    max-height: none;
    gap: 32px;
  }

  html.homepage-intro-mode .hero-navigator-panel {
    max-width: 100%;
  }

  html.homepage-intro-mode .hero-navigator-card {
    width: min(100%, 500px);
  }

  html.homepage-intro-mode .hero-program-column,
  html.homepage-intro-mode .hero-choice-shell,
  html.homepage-intro-mode .hero-actions {
    width: var(--intro-program-column-width);
    max-width: var(--intro-program-column-width);
  }

  html.homepage-intro-mode .program-choice.is-premium {
    width: 100%;
    max-width: 100%;
  }

  html.homepage-intro-mode .hero-actions {
    align-items: stretch;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  html.homepage-intro-mode .site-shell,
  html.homepage-intro-mode .top-stage {
    min-height: 100svh;
    height: auto;
    max-height: none;
  }

  html.homepage-intro-mode .hero {
    min-height: 0;
    height: auto;
    padding: 20px 0 18px;
    align-items: start;
  }

  html.homepage-intro-mode .hero.section {
    width: min(100vw - 40px, 100%);
  }

  html.homepage-intro-mode .hero-grid {
    height: auto;
    align-items: start;
  }

  html.homepage-intro-mode .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    min-height: 0;
    gap: 28px;
    padding: 32px 0 0;
  }

  html.homepage-intro-mode .hero-story-zone {
    width: min(340px, calc(100vw - 40px));
    max-width: min(340px, calc(100vw - 40px));
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
  }

  html.homepage-intro-mode .hero-navigator-panel {
    gap: 24px;
    max-width: 340px;
  }

  html.homepage-intro-mode .hero-navigator-title {
    font-size: clamp(34px, 11vw, 50px);
  }

  html.homepage-intro-mode .hero-navigator-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  html.homepage-intro-mode .hero-navigator-card {
    width: min(100%, 420px);
  }

  html.homepage-intro-mode .hero-navigator-bubble p {
    font-size: 17px;
  }

  html.homepage-intro-mode .hero-program-column,
  html.homepage-intro-mode .hero-choice-shell,
  html.homepage-intro-mode .hero-actions,
  html.homepage-intro-mode .program-choice.is-premium,
  html.homepage-intro-mode .program-choice-grid .program-choice {
    width: var(--intro-program-image-width);
    max-width: var(--intro-program-image-width);
  }

  html.homepage-intro-mode .hero-actions {
    align-items: stretch;
    gap: 8px;
  }

  html.homepage-intro-mode .hero-program-column {
    width: var(--intro-program-image-width);
    max-width: var(--intro-program-image-width);
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 0;
    max-height: none;
  }

  html.homepage-intro-mode .program-choice img,
  html.homepage-intro-mode .program-choice.is-premium img,
  html.homepage-intro-mode .program-choice:not(.is-premium) img {
    width: var(--intro-program-image-width);
    height: var(--intro-program-image-height);
  }

  html.homepage-intro-mode .program-choice,
  html.homepage-intro-mode .hero-actions .button {
    width: var(--intro-program-image-width);
    min-height: var(--intro-program-image-height);
    height: var(--intro-program-image-height);
    max-height: var(--intro-program-image-height);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.homepage-intro-mode .hero-navigator-panel,
  html.homepage-intro-mode .hero-choice-shell.is-visible .program-choice,
  html.homepage-intro-mode .hero-actions.is-visible .program-choice {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes heroNavigatorIntro {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroStandardChoicePulse {
  0% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(0, 0, 0, 0.15), 0 0 0 rgba(255, 94, 94, 0);
    transform: translateY(0);
  }

  35% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 18px rgba(255, 94, 94, 0.12);
    transform: translateY(-1px);
  }

  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(0, 0, 0, 0.15), 0 0 0 rgba(255, 94, 94, 0);
    transform: translateY(0);
  }
}

html.homepage-intro-mode,
html.homepage-intro-mode body {
  min-height: 100svh;
  height: auto;
  overflow-x: clip;
  overflow-y: auto;
}

html.homepage-intro-mode .site-shell,
html.homepage-intro-mode .top-stage {
  min-height: 100svh;
  height: auto;
  max-height: none;
}

html.homepage-intro-mode .top-stage {
  display: flex;
  flex-direction: column;
}

html.homepage-intro-mode .top-stage-video {
  opacity: 0.08;
  transform: scale(1.08);
  filter: saturate(0.48) contrast(1.02) brightness(0.2) blur(4px);
}

html.homepage-intro-mode .top-stage-overlay {
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.9) 0%, rgba(3, 5, 10, 0.88) 100%),
    radial-gradient(circle at 18% 26%, rgba(154, 18, 18, 0.16), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(154, 18, 18, 0.08), transparent 30%);
}

html.homepage-intro-mode .top-stage-tint {
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 76, 76, 0.12), transparent 22%),
    radial-gradient(circle at 74% 18%, rgba(255, 76, 76, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(5, 9, 18, 0.16), rgba(5, 9, 18, 0.42));
  animation: heroIntroHazeDrift 14s ease-in-out infinite alternate;
}

@keyframes heroIntroHazeDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, -1.5%, 0) scale(1.04);
  }
}

html.homepage-intro-mode .hero-section {
  min-height: calc(100vh - 90px);
  padding: 90px 0 70px;
  display: flex;
  align-items: center;
}

html.homepage-intro-mode .hero-container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

html.homepage-intro-mode .hero-grid {
  display: block;
  height: auto;
  min-height: auto;
}

html.homepage-intro-mode .hero-copy {
  width: 100%;
  max-width: 1280px;
  height: auto;
  display: flex;
  column-gap: 0;
  align-items: center;
  justify-content: start;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

html.homepage-intro-mode .hero-left,
html.homepage-intro-mode .hero-story-zone {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-left,
html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-story-zone {
  max-width: calc(100% - 350px);
}

html.homepage-intro-mode .hero-left-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 100%;
  transform: translateY(0);
  transition: max-width 600ms cubic-bezier(0.22, 1, 0.36, 1), width 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-left-panel {
  max-width: min(100%, 640px);
}

@media (min-width: 769px) {
  html.homepage-intro-mode .hero {
    align-items: flex-start;
    padding: clamp(40px, 7vh, 88px) 0 24px;
  }

  html.homepage-intro-mode .hero-grid,
  html.homepage-intro-mode .hero-copy {
    align-items: flex-start;
    min-height: auto;
    height: auto;
  }

  html.homepage-intro-mode .hero-left,
  html.homepage-intro-mode .hero-story-zone {
    align-items: flex-start;
    justify-content: flex-start;
  }

  html.homepage-intro-mode .hero-left-panel {
    max-width: min(100%, 1040px);
    padding-top: clamp(18px, 3.2vh, 42px);
    transform: none;
  }

  html.homepage-intro-mode .hero-subtitle {
    max-width: min(54rem, 82vw);
  }
}

@media (min-width: 769px) and (max-height: 860px) {
  html.homepage-intro-mode .hero {
    padding: 28px 0 20px;
  }

  html.homepage-intro-mode .hero-left-panel {
    gap: 20px;
    padding-top: 12px;
  }

  html.homepage-intro-mode .hero-title {
    font-size: clamp(24px, 2.8vw, 43px);
  }

  html.homepage-intro-mode .hero-subtitle {
    font-size: 16px;
    line-height: 1.45;
    max-width: min(48rem, 80vw);
  }

  html.homepage-intro-mode .live-navigator__face {
    gap: 14px;
    padding: 22px 24px 20px;
  }

  html.homepage-intro-mode .navigator-header {
    min-height: 56px;
    padding-left: 76px;
  }

  html.homepage-intro-mode .navigator-agent-avatar {
    top: 22px;
    width: 52px;
    height: 52px;
  }

  html.homepage-intro-mode .navigator-message,
  html.homepage-intro-mode .hero-navigator-message {
    font-size: clamp(18px, 1.7vw, 24px);
    min-height: 4.2em;
    max-height: 5.2em;
  }

  html.homepage-intro-mode .concierge-narrative {
    padding: 16px 4px 0;
  }

  html.homepage-intro-mode .hero-chat-actions--program-style {
    gap: 8px;
    padding-top: 14px;
  }

  html.homepage-intro-mode .hero-chat-actions--program-style .button,
  html.homepage-intro-mode .hero-chat-actions--program-style a {
    min-height: 62px;
    padding: 10px 12px 10px 13px;
  }

  html.homepage-intro-mode .hero-chat-action-card__title {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  html.homepage-intro-mode .live-navigator.has-inline-actions .hero-chat-actions--program-style {
    padding-top: 38px !important;
  }

  html.homepage-intro-mode .live-navigator.has-inline-actions {
    --navigator-card-height: 348px;
  }
}

@media (min-width: 769px) and (max-height: 760px) {
  html.homepage-intro-mode .hero {
    padding: 22px 0 16px;
  }

  html.homepage-intro-mode .hero-left-panel {
    gap: 16px;
    padding-top: 6px;
  }

  html.homepage-intro-mode .hero-title {
    font-size: clamp(22px, 2.5vw, 38px);
  }

  html.homepage-intro-mode .hero-subtitle {
    font-size: 15px;
    line-height: 1.4;
    max-width: min(44rem, 78vw);
  }

  html.homepage-intro-mode .live-navigator__face {
    gap: 12px;
    padding: 18px 20px 18px;
  }

  html.homepage-intro-mode .navigator-header {
    min-height: 48px;
    padding-left: 68px;
  }

  html.homepage-intro-mode .navigator-agent-avatar {
    top: 18px;
    left: 20px;
    width: 46px;
    height: 46px;
  }

  html.homepage-intro-mode .navigator-message,
  html.homepage-intro-mode .hero-navigator-message {
    font-size: clamp(16px, 1.5vw, 21px);
    min-height: 3.6em;
    max-height: 4.4em;
  }

  html.homepage-intro-mode .concierge-narrative {
    padding: 12px 4px 0;
  }

  html.homepage-intro-mode .hero-chat-actions--program-style {
    gap: 6px;
    padding-top: 10px;
  }

  html.homepage-intro-mode .hero-chat-actions--program-style .button,
  html.homepage-intro-mode .hero-chat-actions--program-style a {
    min-height: 54px;
    padding: 8px 10px 8px 11px;
    border-radius: 14px;
  }

  html.homepage-intro-mode .hero-chat-action-card__title {
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }

  html.homepage-intro-mode .live-navigator.has-inline-actions .hero-chat-actions--program-style {
    padding-top: 42px !important;
  }

  html.homepage-intro-mode .live-navigator.has-inline-actions {
    --navigator-card-height: 336px;
  }
}

html.homepage-intro-mode .hero-title {
  margin: 0;
  color: #f7f8fb;
  font-size: clamp(27px, 3.2vw, 50px);
  line-height: 1;
  letter-spacing: -0.05em;
  display: block;
  white-space: normal;
  min-height: 2.2em;
  opacity: 0;
  transition: opacity 240ms ease;
}

html.homepage-intro-mode .hero-title.is-visible {
  opacity: 1;
}

html.homepage-intro-mode .hero-title-line {
  display: block;
  line-height: inherit;
}

html.homepage-intro-mode .hero-title-line + .hero-title-line {
  margin-top: 0.06em;
}

html.homepage-intro-mode .hero-title-line-single {
  white-space: nowrap;
}

@media (min-width: 769px) {
  html.homepage-intro-mode .hero-title {
    white-space: nowrap;
    min-height: 1.1em;
  }

  html.homepage-intro-mode .hero-title-line {
    display: inline-block;
  }

  html.homepage-intro-mode .hero-title-line + .hero-title-line {
    margin-top: 0;
  }
}

html.homepage-intro-mode .hero-title-ellipsis {
  display: inline-block;
  min-width: 1.7ch;
}

html.homepage-intro-mode .hero-title-accent {
  display: inline-block;
  color: #ff7272;
  background-image: linear-gradient(92deg, #ff8f8f 0%, #fff2ea 28%, #ff5757 54%, #ffd3c6 76%, #ff3b3b 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.18));
  animation: heroTitleAccentImportance 3.2s ease-in-out infinite;
}

@keyframes heroTitleAccentImportance {
  0%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.16));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 24px rgba(255, 92, 92, 0.38));
  }
}

@media (prefers-reduced-motion: reduce) {
  html.homepage-intro-mode .hero-title-accent {
    animation: none;
    background-position: 56% 50%;
    filter: drop-shadow(0 0 16px rgba(255, 92, 92, 0.24));
  }
}

html.homepage-intro-mode .hero-subtitle {
  margin: 0;
  max-width: 42rem;
  color: rgba(242, 245, 251, 0.72);
  font-size: 18px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.homepage-intro-mode .hero-connecting-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.88rem 1.08rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px) saturate(1.04);
  -webkit-backdrop-filter: blur(16px) saturate(1.04);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-connecting-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.homepage-intro-mode .hero-connecting-banner.is-exiting {
  opacity: 0;
  transform: translateY(-8px);
}

html.homepage-intro-mode .hero-connecting-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  color: rgba(247, 248, 251, 0.92);
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

html.homepage-intro-mode .hero-connecting-banner__label::after {
  content: '. . .';
  display: inline-block;
  letter-spacing: 0.14em;
  color: rgba(255, 114, 114, 0.92);
  animation: heroNavigatorConnectingPulse 1.4s ease-in-out infinite;
}

html.homepage-intro-mode .hero-copy-intro {
  display: none;
}

html.homepage-intro-mode .hero-choice-shell,
html.homepage-intro-mode .hero-actions {
  display: none !important;
}

html.homepage-intro-mode .live-navigator {
  --navigator-card-height: 344px;
  width: min(100%, 1040px);
  max-width: 1040px;
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 87, 87, 0.18), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(124, 142, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(15, 18, 27, 0.9), rgba(8, 11, 17, 0.88));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px) saturate(1.06);
  -webkit-backdrop-filter: blur(24px) saturate(1.06);
  overflow: hidden;
  perspective: 1400px;
  isolation: isolate;
  transform-origin: top center;
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1), max-width 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .live-navigator.is-pending-connect {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  filter: blur(10px);
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0);
}

html.homepage-intro-mode .live-navigator.is-pending-connect::before,
html.homepage-intro-mode .live-navigator.is-pending-connect::after {
  opacity: 0;
}

html.homepage-intro-mode .live-navigator.is-pending-connect .live-navigator__stage {
  height: 0;
}

html.homepage-intro-mode .live-navigator.is-connecting-reveal {
  animation: heroNavigatorConnectIn 560ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

html.homepage-intro-mode .live-navigator::before,
html.homepage-intro-mode .live-navigator::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

html.homepage-intro-mode .live-navigator::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 64%, rgba(255, 255, 255, 0.02));
  opacity: 0.85;
  z-index: 0;
}

html.homepage-intro-mode .live-navigator::after {
  inset: auto 22px 18px;
  height: 32%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 68, 68, 0.16), transparent 72%);
  filter: blur(34px);
  opacity: 0.85;
  z-index: 0;
}

html.homepage-intro-mode .live-navigator.is-condensed {
  width: min(100%, 620px);
  max-width: 620px;
}

html.homepage-intro-mode .live-navigator.is-video-active {
  transform: translateY(-4px) scale(1.004);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 38px rgba(255, 72, 72, 0.08);
}

html.homepage-intro-mode .live-navigator.has-inline-actions {
  --navigator-card-height: 376px;
}

html.homepage-intro-mode .live-navigator__stage {
  position: relative;
  width: 100%;
  height: var(--navigator-card-height);
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), height 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .live-navigator.is-flipped .live-navigator__stage {
  transform: rotateY(180deg);
}

html.homepage-intro-mode .live-navigator.is-bouncing {
  animation: liveNavigatorBounce 480ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

html.homepage-intro-mode .live-navigator__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 28px 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 1;
}

html.homepage-intro-mode .live-navigator__face--front {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(12, 16, 23, 0.3), rgba(12, 16, 23, 0.18));
}

html.homepage-intro-mode .live-navigator.has-inline-actions .live-navigator__face--front {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: stretch;
}

html.homepage-intro-mode .live-navigator__face--back {
  justify-content: flex-end;
  padding: 0;
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.06), rgba(8, 10, 15, 0.9));
  transform: rotateY(180deg);
}

html.homepage-intro-mode .live-navigator__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: inherit;
  overflow: hidden;
  display: block;
}

html.homepage-intro-mode .navigator-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-left: 82px;
  min-height: 62px;
}

html.homepage-intro-mode .navigator-heading {
  display: grid;
  gap: 8px;
}

html.homepage-intro-mode .navigator-label {
  color: #f7f8fb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

html.homepage-intro-mode .navigator-presence {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

html.homepage-intro-mode .navigator-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(242, 245, 251, 0.68);
  font-size: 13px;
  font-weight: 600;
}

html.homepage-intro-mode .navigator-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6cff8c;
  box-shadow: 0 0 0 5px rgba(108, 255, 140, 0.14);
}

html.homepage-intro-mode .navigator-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

html.homepage-intro-mode .navigator-wave-bar {
  display: block;
  width: 2px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 91, 91, 0.7));
  transform-origin: center bottom;
  animation: conciergeWave 1.3s ease-in-out infinite;
}

html.homepage-intro-mode .navigator-wave-bar:nth-child(2) {
  animation-delay: 0.14s;
}

html.homepage-intro-mode .navigator-wave-bar:nth-child(3) {
  animation-delay: 0.28s;
}

html.homepage-intro-mode .navigator-wave-bar:nth-child(4) {
  animation-delay: 0.42s;
}

@keyframes conciergeWave {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

html.homepage-intro-mode .navigator-agent-avatar {
  position: absolute;
  top: 26px;
  left: 28px;
  right: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), 0 0 0 6px rgba(255, 255, 255, 0.02);
  background: #10161f;
  pointer-events: none;
}

html.homepage-intro-mode .navigator-agent-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

html.homepage-intro-mode .navigator-message,
html.homepage-intro-mode .hero-navigator-message {
  margin: 0;
  color: #f7f8fb;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.38;
  white-space: pre-line;
  min-height: 5.6em;
  max-height: 7.6em;
  overflow: hidden;
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-navigator-message.is-emphasis {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html.homepage-intro-mode .hero-navigator-message.is-connecting {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  min-height: 1.5em;
  max-height: none;
  width: fit-content;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  color: rgba(247, 248, 251, 0.9);
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 28px rgba(0, 0, 0, 0.18);
}

html.homepage-intro-mode .hero-navigator-message.is-connecting::after {
  content: '. . .';
  display: inline-block;
  letter-spacing: 0.14em;
  color: rgba(255, 114, 114, 0.92);
  animation: heroNavigatorConnectingPulse 1.4s ease-in-out infinite;
}

html.homepage-intro-mode .hero-navigator-message.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes heroNavigatorConnectingPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }

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

@keyframes heroNavigatorConnectIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

html.homepage-intro-mode .concierge-narrative {
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  padding: 22px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

html.homepage-intro-mode .live-navigator.has-inline-actions .concierge-narrative {
  flex: 0 0 auto;
  align-items: flex-start;
  padding: 14px 4px 0;
}

html.homepage-intro-mode .live-navigator.has-inline-actions .navigator-message,
html.homepage-intro-mode .live-navigator.has-inline-actions .hero-navigator-message {
  min-height: 3.2em;
  max-height: 4.2em;
}

html.homepage-intro-mode .hero-right,
html.homepage-intro-mode .hero-program-column {
  position: absolute;
  top: 50%;
  right: 0;
  width: 350px;
  min-width: 350px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(28px);
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-right,
html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-program-column {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

html.homepage-intro-mode .hero-onboarding-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-height: 344px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.76), rgba(9, 12, 18, 0.62));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

html.homepage-intro-mode .hero-onboarding-panel__ambient {
  display: block;
  width: 100%;
  min-height: 344px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 74, 74, 0.16), transparent 24%),
    radial-gradient(circle at 74% 18%, rgba(108, 156, 255, 0.08), transparent 22%),
    radial-gradient(circle at 62% 58%, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(11, 15, 21, 0.78), rgba(8, 10, 15, 0.46));
  filter: blur(0.2px);
  opacity: 0.9;
}

html.homepage-intro-mode .hero-onboarding-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 1;
}

html.homepage-intro-mode .hero-onboarding-actions[hidden] {
  display: none;
}

html.homepage-intro-mode .hero-onboarding-actions .button,
html.homepage-intro-mode .hero-onboarding-actions a {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  justify-content: flex-start;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, filter 220ms ease, border-color 220ms ease, background 220ms ease;
}

html.homepage-intro-mode .navigator-available-equipment-button {
  transform: translateX(28px);
}

html.homepage-intro-mode .hero-onboarding-actions .button.is-visible,
html.homepage-intro-mode .hero-onboarding-actions a.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.homepage-intro-mode .hero-onboarding-actions .button.is-attention-active,
html.homepage-intro-mode .hero-onboarding-actions a.is-attention-active {
  animation: conciergeCtaAttention 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--concierge-pulse-count, 1);
}

html.homepage-intro-mode .hero-chat-actions--program-style {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

html.homepage-intro-mode .live-navigator.has-inline-actions .hero-chat-actions--program-style {
  height: 100%;
  align-content: center;
  margin-top: 0;
  padding-top: 36px;
  padding-bottom: 0;
}

html.homepage-intro-mode .hero-chat-actions--program-style[hidden] {
  display: none;
}

html.homepage-intro-mode .hero-chat-actions--program-style .button,
html.homepage-intro-mode .hero-chat-actions--program-style a {
  width: 100%;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
  color: #f7f8fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

html.homepage-intro-mode .hero-chat-actions--program-style .button:hover,
html.homepage-intro-mode .hero-chat-actions--program-style .button:focus-visible,
html.homepage-intro-mode .hero-chat-actions--program-style a:hover,
html.homepage-intro-mode .hero-chat-actions--program-style a:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 38px rgba(0, 0, 0, 0.18);
}

html.homepage-intro-mode .hero-chat-action-card {
  position: relative;
  overflow: hidden;
}

html.homepage-intro-mode .hero-chat-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 64%, rgba(255, 255, 255, 0.02));
  opacity: 0;
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-chat-action-card:hover::before,
html.homepage-intro-mode .hero-chat-action-card:focus-visible::before,
html.homepage-intro-mode .hero-chat-action-card.is-attention-active::before {
  opacity: 1;
}

html.homepage-intro-mode .hero-chat-action-card__title {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

html.homepage-intro-mode .hero-chat-actions--program-style .navigator-available-equipment-button,
html.homepage-intro-mode .hero-chat-actions--program-style .navigator-programs-button,
html.homepage-intro-mode .hero-chat-actions--program-style .navigator-simulator-button,
html.homepage-intro-mode .hero-chat-actions--program-style .navigator-help-button {
  transform: translateY(18px);
}

html.homepage-intro-mode .navigator-available-equipment-button {
  --concierge-pulse-count: 3;
  border-color: transparent;
  background: linear-gradient(180deg, #ff4a4a 0%, #d71f1f 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(215, 31, 31, 0.2);
  text-decoration: none;
}

html.homepage-intro-mode .navigator-programs-button {
  --concierge-pulse-count: 2;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: #f7f8fb;
}

html.homepage-intro-mode .navigator-simulator-button {
  --concierge-pulse-count: 2;
  border-color: rgba(255, 117, 117, 0.22);
  background: linear-gradient(180deg, rgba(255, 74, 74, 0.22), rgba(255, 255, 255, 0.05));
  color: #fff;
  box-shadow: 0 18px 42px rgba(255, 74, 74, 0.14);
}

html.homepage-intro-mode .navigator-help-button {
  min-height: 50px;
  font-size: 14px;
  --concierge-pulse-count: 1;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(247, 248, 251, 0.86);
}

@media (max-width: 768px) {
  html.homepage-intro-mode .navigator-available-equipment-button {
    transform: translateY(18px);
  }
}

@keyframes conciergeCtaAttention {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: 0 0 0 rgba(255, 74, 74, 0);
  }

  28% {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.08);
    box-shadow: 0 0 0 7px rgba(255, 74, 74, 0.12);
  }

  58% {
    transform: translateY(1px) scale(0.994);
    filter: brightness(0.99);
    box-shadow: 0 0 0 12px rgba(255, 74, 74, 0);
  }
}

@keyframes liveNavigatorBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-4px) scale(1.01);
  }

  70% {
    transform: translateY(1px) scale(0.997);
  }
}

html.homepage-intro-mode .hero-choice-shell,
html.homepage-intro-mode .hero-choice-selector,
html.homepage-intro-mode .hero-choice-premium-callout,
html.homepage-intro-mode .hero-actions {
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
}

html.homepage-intro-mode .hero-choice-shell.is-visible,
html.homepage-intro-mode .hero-choice-selector,
html.homepage-intro-mode .hero-choice-premium-callout.is-visible {
  display: block;
}

html.homepage-intro-mode .hero-choice-shell:not(.is-visible),
html.homepage-intro-mode .hero-choice-premium-callout:not(.is-visible),
html.homepage-intro-mode .hero-actions:not(.is-visible) {
  display: none;
}

html.homepage-intro-mode .hero-actions.is-visible {
  display: flex;
}

html.homepage-intro-mode .hero-actions {
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: center;
}

html.homepage-intro-mode .program-choice {
  width: 420px;
  height: 86px;
  min-width: 420px;
  max-width: 420px;
  min-height: 86px;
  max-height: 86px;
  padding: 0 !important;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  line-height: 0;
}

html.homepage-intro-mode .program-choice img {
  width: 420px;
  height: 86px;
  display: block;
  object-fit: contain;
}

html.homepage-intro-mode .hero-choice-option.modern-program-card,
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card {
  width: 420px;
  height: 86px;
  min-width: 420px;
  max-width: 420px;
  min-height: 86px;
  max-height: 86px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px;
  background: rgba(16, 20, 27, 0.92) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center !important;
  line-height: 1;
  color: #ffffff;
  transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.homepage-intro-mode .hero-choice-option.modern-program-card:hover,
html.homepage-intro-mode .hero-choice-option.modern-program-card:focus-visible,
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card:hover,
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32) !important;
  border-color: rgba(255, 59, 59, 0.28) !important;
}

html.homepage-intro-mode .hero-choice-option.modern-program-card.is-selected,
html.homepage-intro-mode .hero-choice-option.modern-program-card[aria-pressed="true"],
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card.is-selected,
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card[aria-pressed="true"] {
  background: linear-gradient(180deg, rgba(255, 59, 59, 0.12), rgba(255, 59, 59, 0.04)) !important;
  border: 1px solid rgba(255, 59, 59, 0.42) !important;
  box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.05), 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card[data-hero-program-type="Percentage"] {
  background: linear-gradient(180deg, rgba(56, 66, 84, 0.22), rgba(26, 33, 45, 0.12)) !important;
  border: 1px solid rgba(120, 142, 176, 0.26) !important;
  box-shadow: 0 0 0 1px rgba(120, 142, 176, 0.05), 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card[data-hero-program-type="Per Mile"] {
  background: linear-gradient(180deg, rgba(45, 58, 72, 0.22), rgba(20, 29, 40, 0.12)) !important;
  border: 1px solid rgba(104, 124, 148, 0.24) !important;
  box-shadow: 0 0 0 1px rgba(104, 124, 148, 0.05), 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card[data-hero-program-type="SHORT TERM RENT"] {
  background: linear-gradient(180deg, rgba(62, 72, 54, 0.22), rgba(30, 40, 24, 0.12)) !important;
  border: 1px solid rgba(146, 174, 124, 0.22) !important;
  box-shadow: 0 0 0 1px rgba(146, 174, 124, 0.05), 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card[data-hero-program-type="O/O - WITH OWN TRUCK/TRAILER"] {
  background: linear-gradient(180deg, rgba(73, 62, 84, 0.22), rgba(34, 25, 47, 0.12)) !important;
  border: 1px solid rgba(154, 132, 182, 0.24) !important;
  box-shadow: 0 0 0 1px rgba(154, 132, 182, 0.05), 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

html.homepage-intro-mode .hero-choice-option.modern-program-card.is-inactive,
html.homepage-intro-mode .hero-choice-option.modern-program-card.is-inactive:hover,
html.homepage-intro-mode .hero-choice-option.modern-program-card.is-inactive:focus-visible,
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card.is-inactive,
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card.is-inactive:hover,
html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card.is-inactive:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02) !important;
}

html.homepage-intro-mode .program-card-label {
  display: block;
  width: 100%;
  padding: 0 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

html.homepage-intro-mode .program-card-description {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  color: rgba(240, 244, 250, 0.72);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: pretty;
  transition: max-height 240ms ease, opacity 220ms ease, transform 220ms ease;
}

html.homepage-intro-mode .program-card {
  box-sizing: border-box;
  width: 100%;
  height: 86px;
  min-height: 86px;
  max-height: 86px;
  padding: 16px 18px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(21, 27, 39, 0.95), rgba(12, 17, 27, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: left;
  color: #f7f8fb;
  line-height: 1.2;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

html.homepage-intro-mode .hero-choice-premium-callout .program-card,
html.homepage-intro-mode .hero-actions .program-card {
  height: 86px;
  min-height: 86px;
  max-height: 86px;
  padding: 0 !important;
}

html.homepage-intro-mode .program-card:hover,
html.homepage-intro-mode .program-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

html.homepage-intro-mode .program-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.18);
  outline-offset: 2px;
}

html.homepage-intro-mode .program-card.is-selected,
html.homepage-intro-mode .program-card[aria-pressed="true"] {
  border-color: rgba(255, 93, 93, 0.55);
  background: linear-gradient(180deg, rgba(48, 15, 22, 0.96), rgba(26, 14, 20, 0.94));
  box-shadow: 0 26px 70px rgba(63, 11, 18, 0.42);
}

html.homepage-intro-mode .program-card.is-inactive,
html.homepage-intro-mode .program-card.is-inactive:hover,
html.homepage-intro-mode .program-card.is-inactive:focus-visible {
  opacity: 0.48;
  transform: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
  html.homepage-intro-mode .hero-choice-option.modern-program-card,
  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card {
    height: auto;
    min-height: 86px;
    max-height: none;
    padding: 18px 20px !important;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    flex-direction: column;
    gap: 8px;
    transition: min-height 140ms ease, transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"] {
    min-height: 122px;
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"] .program-card-description {
    max-height: 4.2em;
    opacity: 1;
    transform: translateY(0);
  }

  html.homepage-intro-mode .hero-actions:hover ~ .hero-choice-shell .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"],
  html.homepage-intro-mode .hero-program-column:has(.hero-actions .button.secondary.modern-program-card:hover) .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"],
  html.homepage-intro-mode .hero-program-column:has(.hero-actions .button.secondary.modern-program-card:focus-visible) .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"] {
    min-height: 86px;
  }

  html.homepage-intro-mode .hero-actions:hover ~ .hero-choice-shell .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"] .program-card-description,
  html.homepage-intro-mode .hero-program-column:has(.hero-actions .button.secondary.modern-program-card:hover) .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"] .program-card-description,
  html.homepage-intro-mode .hero-program-column:has(.hero-actions .button.secondary.modern-program-card:focus-visible) .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"] .program-card-description {
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"]:hover,
  html.homepage-intro-mode .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"]:focus-visible {
    min-height: 122px;
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"]:hover .program-card-description,
  html.homepage-intro-mode .hero-choice-option.modern-program-card[data-hero-program-type="Rent to Own"]:focus-visible .program-card-description {
    max-height: 4.2em;
    opacity: 1;
    transform: translateY(0);
  }

  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card:hover,
  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card:focus-visible {
    min-height: 122px;
  }

  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card:hover .program-card-description,
  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card:focus-visible .program-card-description {
    max-height: 4.2em;
    opacity: 1;
    transform: translateY(0);
  }
}

html.homepage-intro-mode .program-card-kicker {
  display: block;
  color: rgba(247, 248, 251, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

html.homepage-intro-mode .program-card-title {
  display: block;
  color: #f7f8fb;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

html.homepage-intro-mode .program-card-copy {
  display: block;
  color: rgba(247, 248, 251, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

html.homepage-intro-mode .hero-visual {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html.homepage-configured-mode,
html.homepage-configured-mode body {
  min-height: 100svh;
  overflow-x: clip;
  overflow-y: auto;
}

html.homepage-configured-mode .hero-section {
  min-height: calc(100vh - 90px);
  padding: 90px 0 70px;
  display: flex;
  align-items: center;
}

html.homepage-configured-mode .hero-container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

html.homepage-configured-mode .hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

html.homepage-configured-mode .hero-copy {
  display: flex;
  flex-direction: column;
  align-self: center;
  max-width: 400px;
}

html.homepage-configured-mode .hero-left-panel,
html.homepage-configured-mode .hero-program-column {
  display: none;
}

html.homepage-configured-mode .hero-copy-intro {
  display: flex;
  flex-direction: column;
}

html.homepage-configured-mode .hero-visual {
  max-width: none;
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  overflow: visible;
}

@media (max-width: 1024px) {
  html.homepage-intro-mode .hero-container {
    width: min(960px, 92vw);
  }

  html.homepage-intro-mode .hero-copy {
    width: min(100%, 920px);
    max-width: calc(100vw - 40px);
  }

  html.homepage-intro-mode .hero-copy.is-assistant-condensed {
    padding-right: 300px;
  }

  html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-left,
  html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-story-zone {
    max-width: calc(100% - 300px);
  }

  html.homepage-intro-mode .hero-right,
  html.homepage-intro-mode .hero-program-column {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    gap: 8px;
  }

  html.homepage-intro-mode .hero-actions {
    gap: 8px;
  }

  html.homepage-intro-mode .hero-title {
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1;
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card,
  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card {
    width: 390px;
    height: 120px;
    min-width: 390px;
    max-width: 390px;
    min-height: 120px;
    max-height: 120px;
  }

  html.homepage-intro-mode .program-card-label {
    font-size: 18px;
    padding: 0 22px;
  }
}

@media (max-width: 768px) {
  html.homepage-intro-mode .top-stage,
  html.homepage-intro-mode .site-shell {
    overflow-x: clip;
  }

  html.homepage-intro-mode .hero-section {
    min-height: auto;
    padding: 55px 0 60px;
  }

  html.homepage-configured-mode .hero-section {
    min-height: auto;
    padding: 46px 0 44px;
    align-items: flex-start;
  }

  html.homepage-configured-mode .hero-container {
    width: min(390px, 92vw);
  }

  html.homepage-intro-mode .hero-container {
    width: min(100%, calc(100vw - 24px));
  }

  html.homepage-intro-mode .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  html.homepage-intro-mode .hero-copy {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }

  html.homepage-intro-mode .hero-copy.is-assistant-condensed {
    padding-right: 0;
  }

  html.homepage-intro-mode .hero-left,
  html.homepage-intro-mode .hero-story-zone {
    width: 100%;
    max-width: 100%;
  }

  html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-left,
  html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-story-zone,
  html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-left-panel {
    width: 100%;
    max-width: 100%;
  }

  html.homepage-intro-mode .hero-left-panel {
    width: 100%;
    align-items: center;
    text-align: center;
    max-width: 100%;
    gap: 20px;
  }

  html.homepage-intro-mode .hero-title {
    font-size: clamp(32px, 7.5vw, 41px);
    line-height: 1;
    letter-spacing: -0.04em;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    width: 100%;
    text-align: center;
  }

  html.homepage-intro-mode .hero-subtitle {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  html.homepage-intro-mode .live-navigator {
    --navigator-card-height: 324px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  html.homepage-intro-mode .live-navigator.is-condensed {
    width: 100%;
    max-width: 100%;
  }

  html.homepage-intro-mode .live-navigator__face {
    padding: 20px 18px 18px;
  }

  html.homepage-intro-mode .navigator-header {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-top: 72px;
  }

  html.homepage-intro-mode .navigator-heading,
  html.homepage-intro-mode .navigator-presence {
    justify-items: center;
    justify-content: center;
  }

  html.homepage-intro-mode .navigator-agent-avatar {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
  }

  html.homepage-intro-mode .hero-right,
  html.homepage-intro-mode .hero-program-column {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  html.homepage-intro-mode .hero-right,
  html.homepage-intro-mode .hero-program-column {
    display: none;
  }

  html.homepage-intro-mode .hero-onboarding-panel {
    width: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  html.homepage-intro-mode .hero-onboarding-panel__ambient {
    display: none;
  }

  html.homepage-intro-mode .hero-onboarding-panel.is-idle {
    display: none;
  }

  html.homepage-intro-mode .hero-copy.is-assistant-condensed .hero-onboarding-panel.is-ready {
    display: flex;
  }

  html.homepage-intro-mode .hero-onboarding-actions {
    width: 100%;
    gap: 10px;
    align-self: stretch;
  }

  html.homepage-intro-mode .hero-chat-actions--program-style {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 16px;
  }

  html.homepage-intro-mode .hero-onboarding-actions .button,
  html.homepage-intro-mode .hero-onboarding-actions a {
    width: 100%;
    display: none;
  }

  html.homepage-intro-mode .hero-chat-actions--program-style .button,
  html.homepage-intro-mode .hero-chat-actions--program-style a {
    display: flex;
  }

  html.homepage-intro-mode .hero-left-panel > .hero-onboarding-actions .button.is-visible,
  html.homepage-intro-mode .hero-left-panel > .hero-onboarding-actions a.is-visible {
    display: flex;
    animation: mobileConciergeStepIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.homepage-intro-mode .hero-chat-actions--program-style .button.is-visible,
  html.homepage-intro-mode .hero-chat-actions--program-style a.is-visible {
    display: flex;
    animation: mobileConciergeStepIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.homepage-intro-mode .hero-left-panel > .hero-onboarding-actions[hidden] {
    display: none;
  }

  @keyframes mobileConciergeStepIn {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card,
  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card {
    width: min(340px, calc(100vw - 40px));
    height: auto;
    min-width: min(340px, calc(100vw - 40px));
    max-width: min(340px, calc(100vw - 40px));
    min-height: 104px;
    max-height: none;
    padding: 18px 18px 16px !important;
    align-items: flex-start;
    justify-content: center;
    text-align: left !important;
  }

  html.homepage-intro-mode .hero-choice-shell,
  html.homepage-intro-mode .hero-choice-selector,
  html.homepage-intro-mode .hero-choice-premium-callout,
  html.homepage-intro-mode .hero-actions {
    width: min(340px, calc(100vw - 40px));
  }

  html.homepage-intro-mode .program-card-label {
    padding: 0;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-align: left;
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card.is-mobile-story-active,
  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card.is-mobile-story-active {
    min-height: 148px;
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(255, 93, 93, 0.44) !important;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 93, 93, 0.08) !important;
  }

  html.homepage-intro-mode .hero-choice-option.modern-program-card.is-mobile-story-active .program-card-description,
  html.homepage-intro-mode .hero-actions .button.secondary.modern-program-card.is-mobile-story-active .program-card-description {
    max-height: 5.8em;
    opacity: 1;
    transform: translateY(0);
  }

  html.homepage-configured-mode .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  html.homepage-configured-mode .hero-copy {
    align-self: start;
  }

  html.homepage-configured-mode .configured-live-navigator {
    width: 100%;
    margin-top: -22px;
  }

  html.homepage-configured-mode .configured-live-navigator__avatar {
    top: 14px;
    right: 18px;
    width: 36px;
    height: 36px;
  }

  html.homepage-configured-mode .configured-live-navigator__message {
    font-size: 16px;
  }
}


@media (min-width: 961px) {
  .truck-offer-switch {
    width: 138px;
    height: 92px;
  }

  .truck-offer-switch-icon {
    max-width: 118px;
    max-height: 76px;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .truck-offer-viewport {
    width: min(100%, 520px);
    height: 92px;
  }

  .truck-offer-switch {
    width: 138px;
    height: 92px;
  }

  .truck-offer-switch-icon {
    max-width: 118px;
    max-height: 76px;
  }
}

@media (max-width: 767px) {
  .truck-offer-viewport {
    width: min(100%, 390px);
    max-width: 390px;
    height: 84px;
    padding: 0 8px;
  }

  .truck-offer-switch {
    width: 118px;
    height: 80px;
    border-radius: 20px;
  }

  .truck-offer-switch-icon {
    max-width: 102px;
    max-height: 66px;
  }
}