:root {
  --coal: #191713;
  --coal-2: #242019;
  --ember: #a8482f;
  --ember-dark: #7c2f21;
  --brass: #caa25a;
  --moss: #59654b;
  --paper: #f5eddd;
  --paper-soft: #fffaf0;
  --ink: #242018;
  --muted: #756b5c;
  --line: rgba(36, 32, 24, 0.14);
  --shadow: 0 26px 80px rgba(25, 23, 19, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--brass);
  color: var(--coal);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.forge-bg,
.road-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.forge-bg {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(245, 237, 221, 0.97)),
    radial-gradient(circle at 18% 12%, rgba(168, 72, 47, 0.2), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(202, 162, 90, 0.24), transparent 24%);
}

.forge-bg::after,
.road-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(25, 23, 19, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 19, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.road-bg {
  background: linear-gradient(135deg, #181612, #2b231b 50%, #4a2a20);
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  position: sticky;
  top: 12px;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
  border: 1px solid rgba(36, 32, 24, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 14px 40px rgba(25, 23, 19, 0.08);
  backdrop-filter: blur(18px);
}

.dark-header .nav {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(25, 23, 19, 0.74);
  color: var(--paper-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--coal);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dark-header .brand small {
  color: rgba(245, 237, 221, 0.72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: var(--radius);
  padding: 10px 12px;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.nav-links a:not(.nav-cta):hover {
  background: rgba(168, 72, 47, 0.1);
}

.nav-cta {
  background: var(--coal);
  color: var(--paper-soft) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.section,
.split-section,
.event-band,
.carrier-section,
.final-cta,
.funnel-layout,
.trucker-notes,
.disclosure-strip,
.legal-page,
.licenses-page,
.licenses-overview,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 46px;
  align-items: center;
  padding: 82px 0 48px;
}

[id] {
  scroll-margin-top: 112px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trucker-layout .eyebrow {
  color: var(--brass);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

h1 {
  max-width: 860px;
  font-size: clamp(48px, 7.1vw, 92px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

h3 {
  font-size: 29px;
}

.lead,
.hero-copy p,
.section-heading p,
.split-panel p,
.event-band p,
.final-cta p,
.funnel-copy .lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
}

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

.button,
.back-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.back-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button.primary {
  background: var(--ember);
  color: var(--paper-soft);
  box-shadow: 0 14px 34px rgba(168, 72, 47, 0.24);
}

.button.primary:hover {
  background: var(--ember-dark);
}

.button.secondary,
.back-button {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.74);
  color: var(--ink);
}

.button.light {
  background: var(--brass);
  color: var(--coal);
}

.button.ghost-light {
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: rgba(255, 250, 240, 0.08);
  color: var(--paper-soft);
}

.trust-ribbon,
.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-ribbon span,
.mini-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  padding: 9px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-card {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255, 250, 240, 0.44);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--coal);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 23, 19, 0.92), transparent 58%);
}

.portrait-wrap,
.portrait-wrap img {
  width: 100%;
  height: 100%;
}

.portrait-wrap img {
  object-fit: cover;
}

.signal-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background: rgba(25, 23, 19, 0.76);
  padding: 16px;
  color: var(--paper-soft);
  backdrop-filter: blur(14px);
}

.signal-number {
  color: var(--brass);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 82px;
  line-height: 0.8;
}

.signal-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 800;
}

.event-band,
.carrier-section,
.licenses-overview,
.split-panel,
.audience-list,
.final-cta,
.quiz-shell,
.trucker-notes article,
.legal-page {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 52px rgba(25, 23, 19, 0.08);
}

.event-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
}

.event-band p {
  max-width: 760px;
}

.event-visual-stack,
.audience-stack {
  display: grid;
  gap: 12px;
}

.feature-photo {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--coal);
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 23, 19, 0.28), transparent 54%);
  pointer-events: none;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.event-photo {
  aspect-ratio: 16 / 10;
}

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

.event-points span,
.license-pill-grid span {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  font-weight: 900;
}

.carrier-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
  margin-top: 4px;
  margin-bottom: 76px;
  padding: clamp(28px, 5vw, 46px);
}

.carrier-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.carrier-logo {
  --logo-accent: var(--ember);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(245, 237, 221, 0.72)),
    var(--paper-soft);
  padding: 14px;
}

.carrier-logo span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(202, 162, 90, 0.16);
  color: var(--logo-accent);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.carrier-logo strong,
.carrier-logo small {
  display: block;
  min-width: 0;
}

.carrier-logo strong {
  color: var(--coal);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.05;
}

.carrier-logo small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-omaha {
  --logo-accent: #1f5c72;
}

.logo-omaha span {
  background: rgba(31, 92, 114, 0.12);
}

.logo-americo {
  --logo-accent: #9a3d2b;
}

.logo-americo span {
  background: rgba(154, 61, 43, 0.12);
}

.logo-transamerica {
  --logo-accent: #274e7d;
}

.logo-transamerica span {
  background: rgba(39, 78, 125, 0.12);
}

.logo-aetna {
  --logo-accent: #6c4b8f;
}

.logo-aetna span {
  background: rgba(108, 75, 143, 0.12);
}

.logo-corebridge {
  --logo-accent: #266f67;
}

.logo-corebridge span {
  background: rgba(38, 111, 103, 0.12);
}

.logo-amicable {
  --logo-accent: #7d4e24;
}

.logo-amicable span {
  background: rgba(125, 78, 36, 0.12);
}

.logo-ethos {
  --logo-accent: #4b6441;
}

.logo-ethos span {
  background: rgba(75, 100, 65, 0.12);
}

.logo-nlg {
  --logo-accent: #9b7b2f;
}

.logo-nlg span {
  background: rgba(155, 123, 47, 0.14);
}

.section {
  padding: 74px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 16px 0 0;
}

.coverage-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.coverage-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  padding: 24px;
}

.coverage-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(25, 23, 19, 0.08);
}

.coverage-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--ember);
}

.coverage-card.accent-moss::before {
  background: var(--moss);
}

.coverage-card.accent-brass::before {
  background: var(--brass);
}

.coverage-card span {
  color: var(--brass);
  font-weight: 900;
}

.coverage-card h3 {
  margin-top: 72px;
}

.coverage-card p,
.process-grid p,
.audience-list span,
.legal-page p,
.licenses-hero p,
.license-card-body p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
  padding: 30px 0 80px;
}

.split-panel {
  padding: 30px;
}

.split-panel p {
  margin: 18px 0 24px;
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--ember);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.audience-list div {
  background: rgba(255, 250, 240, 0.9);
  padding: 24px;
}

.audience-list strong,
.audience-list span {
  display: block;
}

.audience-list strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 27px;
  letter-spacing: -0.02em;
}

.licenses-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 80px;
  padding: clamp(28px, 5vw, 46px);
}

.licenses-overview p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.license-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coal);
  color: var(--paper-soft);
  font-weight: 900;
}

.process-grid h3 {
  margin-top: 42px;
}

.final-cta {
  margin-top: 18px;
  margin-bottom: 60px;
  padding: clamp(28px, 6vw, 58px);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  margin-top: 16px;
}

.final-cta .button {
  margin-top: 18px;
}

.funnel-layout {
  display: grid;
  grid-template-columns: 0.9fr minmax(390px, 0.78fr);
  gap: 34px;
  align-items: start;
  padding: 80px 0 60px;
}

.trucker-layout {
  color: var(--paper-soft);
}

.funnel-copy {
  position: sticky;
  top: 110px;
  padding-top: 24px;
}

.funnel-copy h1 {
  font-size: clamp(48px, 7vw, 88px);
}

.trucker-layout .funnel-copy .lead {
  color: rgba(245, 237, 221, 0.76);
}

.trucker-layout .mini-proof span {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.08);
  color: rgba(245, 237, 221, 0.82);
}

.quiz-shell {
  padding: 22px;
}

.trucker-layout .quiz-shell {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
}

.quiz-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.progress-track {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(25, 23, 19, 0.08);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ember), var(--brass));
  transition: width 260ms ease;
}

.quiz-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-body h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.quiz-body > p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.option-list {
  display: grid;
  gap: 10px;
}

.option-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.option-button:hover,
.option-button:focus {
  border-color: var(--ember);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 72, 47, 0.12);
}

.back-button {
  margin-top: 16px;
}

.field-stack {
  display: grid;
  gap: 13px;
}

.field-stack label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field-stack input,
.field-stack textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

.field-stack textarea {
  min-height: 92px;
  resize: vertical;
}

.field-stack input:focus,
.field-stack textarea:focus {
  border-color: var(--ember);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 72, 47, 0.12);
}

.field-stack input[aria-invalid="true"] {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(168, 72, 47, 0.16);
}

.form-error {
  margin: 12px 0 0;
  color: var(--ember-dark);
  font-size: 13px;
  font-weight: 900;
}

.microcopy {
  color: var(--muted);
  font-size: 12px;
}

.summary-box {
  max-height: 280px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.7);
  padding: 13px;
}

.handoff-panel {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(168, 72, 47, 0.24);
  border-radius: var(--radius);
  background: rgba(168, 72, 47, 0.08);
  margin: 18px 0 0;
  padding: 14px;
  color: var(--ink);
}

.booking-step {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(89, 101, 75, 0.26);
  border-radius: var(--radius);
  background: rgba(89, 101, 75, 0.08);
  margin: 14px 0 0;
  padding: 14px;
}

.handoff-panel strong {
  color: var(--ember-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-step strong {
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.handoff-panel span,
.booking-step span,
.copy-status,
.send-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.54;
  transform: none;
}

.copy-status {
  margin: 12px 0 0;
}

.send-status {
  margin: 12px 0 0;
}

.send-status.is-error {
  color: var(--ember-dark);
}

.quiz-actions .button,
.quiz-actions .back-button {
  flex: 1 1 170px;
}

.disclosure-strip {
  margin-bottom: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.disclosure-strip p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trucker-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 46px;
}

.trucker-notes article {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.92);
  padding: 28px;
}

.trucker-notes h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
}

.trucker-notes p {
  color: var(--muted);
}

.legal-page {
  max-width: 880px;
  margin-top: 60px;
  margin-bottom: 54px;
  padding: clamp(26px, 5vw, 48px);
}

.legal-page h1 {
  margin-top: 20px;
  font-size: clamp(44px, 6vw, 76px);
}

.legal-page section {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 24px;
}

.legal-page h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.updated {
  font-size: 13px;
  font-weight: 900;
}

.licenses-page {
  padding: 72px 0 54px;
}

.licenses-hero {
  max-width: 900px;
  margin-bottom: 34px;
}

.licenses-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
}

.licenses-hero p {
  max-width: 780px;
  font-size: clamp(17px, 2vw, 21px);
}

.license-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.license-detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 52px rgba(25, 23, 19, 0.08);
}

.license-card-body {
  position: relative;
  padding: 24px;
}

.license-card-body h2 {
  padding-right: 66px;
  font-size: clamp(30px, 4vw, 42px);
}

.state-code {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: var(--radius);
  background: var(--coal);
  padding: 8px 10px;
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.text-only-license {
  min-height: 170px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 13px;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--ink);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  font-weight: 900;
  text-decoration: none;
}

.dark-footer {
  border-color: rgba(255, 250, 240, 0.16);
  color: rgba(245, 237, 221, 0.72);
}

.dark-footer strong {
  color: var(--paper-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .coverage-card,
  .split-panel,
  .audience-list,
  .licenses-overview,
  .license-detail-card,
  .event-band,
  .quiz-shell {
    animation: rise 600ms ease both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .funnel-layout,
  .split-section,
  .event-band,
  .carrier-section,
  .licenses-overview {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card {
    min-height: 520px;
  }

  .coverage-grid,
  .process-grid,
  .license-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .funnel-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    top: 8px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-soft);
    padding: 8px;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open,
  .nav-links.always-show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .hero,
  .section,
  .split-section,
  .event-band,
  .carrier-section,
  .final-cta,
  .funnel-layout,
  .trucker-notes,
  .disclosure-strip,
  .legal-page,
  .licenses-page,
  .licenses-overview,
  .footer {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero {
    gap: 24px;
    padding-bottom: 32px;
  }

  .hero-card {
    min-height: 470px;
  }

  .coverage-grid,
  .process-grid,
  .audience-list,
  .trucker-notes,
  .license-detail-grid,
  .event-points,
  .carrier-grid {
    grid-template-columns: 1fr;
  }

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

  .coverage-card {
    min-height: 240px;
  }

  .coverage-card h3 {
    margin-top: 44px;
  }

  .footer {
    flex-direction: column;
  }

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