:root {
  --coal: #0e2d42;
  --coal-2: #163f59;
  --ember: #c8871f;
  --ember-dark: #9f6811;
  --brass: #e4b85a;
  --moss: #2f6b58;
  --paper: #f4f7fb;
  --paper-soft: #ffffff;
  --ink: #102436;
  --muted: #5f6f7b;
  --line: rgba(16, 36, 54, 0.14);
  --shadow: 0 24px 70px rgba(14, 45, 66, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body:not([data-flow]) {
  padding-bottom: 74px;
}

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

a {
  color: inherit;
}

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

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

.forge-bg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.98)),
    linear-gradient(135deg, rgba(14, 45, 66, 0.08), transparent 46%),
    linear-gradient(315deg, rgba(200, 135, 31, 0.16), transparent 34%);
}

.forge-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(14, 45, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 45, 66, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  width: 100%;
  margin: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(14, 45, 66, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(14, 45, 66, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

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

.brand img {
  flex: 0 0 116px;
  width: 116px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: contain;
  padding: 6px;
  background: var(--coal);
}

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

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

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

.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;
  padding-right: 16px !important;
  padding-left: 16px !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,
.simple-hero,
.simple-stats,
.simple-split,
.ata-content,
.benefit-section,
.carrier-strip,
.section,
.split-section,
.who-band,
.carrier-section,
.final-cta,
.quote-layout,
.review-proof-grid,
.funnel-layout,
.disclosure-strip,
.home-disclosure,
.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: 150px;
}

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

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

.simple-hero {
  position: relative;
  width: 100%;
  min-height: clamp(620px, 74vh, 760px);
  margin: 0;
  overflow: hidden;
  background: var(--coal);
}

.simple-hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--coal);
}

.simple-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 32, 48, 0.92), rgba(7, 32, 48, 0.68) 44%, rgba(7, 32, 48, 0.18)),
    linear-gradient(to top, rgba(7, 32, 48, 0.42), transparent 52%);
}

.simple-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 54% 48%;
}

.simple-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: inherit;
  margin: 0 auto;
}

.simple-hero-copy {
  max-width: 660px;
  background: rgba(7, 32, 48, 0.9);
  padding: clamp(30px, 5vw, 54px);
  color: var(--paper-soft);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.simple-hero-copy .eyebrow {
  color: var(--brass);
}

.simple-hero-copy h1 {
  max-width: 620px;
  color: var(--paper-soft);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(44px, 6.8vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.simple-hero-copy h1 span {
  color: var(--brass);
}

.simple-hero-copy .lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.simple-hero-copy .button {
  margin-top: 26px;
}

.simple-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--coal);
  color: var(--paper-soft);
  box-shadow: var(--shadow);
}

.simple-stats div {
  display: grid;
  gap: 6px;
  min-height: 132px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(18px, 3vw, 26px);
}

.simple-stats div:last-child {
  border-right: 0;
}

.simple-stats strong {
  color: var(--brass);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(25px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.simple-stats span {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.stat-lead-link {
  align-self: end;
  width: max-content;
  margin-top: 8px;
  border-bottom: 2px solid var(--brass);
  color: var(--paper-soft);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.ata-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) 0;
}

.ata-content.reverse .ata-image {
  order: 2;
}

.ata-image {
  position: relative;
  min-height: clamp(340px, 42vw, 500px);
  overflow: hidden;
  background: var(--coal);
  box-shadow: 0 22px 60px rgba(14, 45, 66, 0.14);
}

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

.ata-content.reverse .ata-image img {
  object-position: 48% 48%;
}

.ata-copy {
  max-width: 620px;
}

.ata-copy h2 {
  color: var(--coal);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.ata-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.simple-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 5vw, 48px);
  align-items: center;
  padding: clamp(54px, 7vw, 84px) 0 0;
}

.simple-split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.simple-split.reverse > div {
  order: 2;
}

.simple-split h2,
.benefit-section h2,
.final-cta h2 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.simple-split h2 {
  font-size: clamp(36px, 5vw, 60px);
}

.simple-split p {
  max-width: 700px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.simple-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-list li,
.benefit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(14, 45, 66, 0.08);
}

.simple-list li {
  padding: 22px;
}

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

.simple-list strong {
  color: var(--coal);
  font-size: 22px;
  font-weight: 900;
}

.simple-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
}

.benefit-section {
  padding: clamp(58px, 8vw, 92px) 0 0;
}

.ata-feature-section {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: clamp(62px, 8vw, 92px) 0;
  background: #eef3f7;
}

.ata-feature-section .section-heading,
.ata-feature-section .benefit-grid {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.section-heading.center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-grid article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
}

.benefit-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--brass);
}

.benefit-grid span {
  color: var(--ember);
  font-weight: 900;
}

.benefit-grid h3 {
  margin-top: 18px;
  color: var(--coal);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.benefit-grid p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ember-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.card-link::after {
  content: ">";
  margin-left: 7px;
}

.feature-image {
  height: 142px;
  margin: -24px -24px 18px;
  overflow: hidden;
  background: var(--coal);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image img[src$="blacksmith-logo.png"] {
  object-fit: contain;
  padding: 24px;
  background: var(--coal);
}

.carrier-strip {
  width: min(1180px, calc(100% - 32px));
  margin-top: clamp(20px, 4vw, 42px);
  margin-bottom: clamp(30px, 5vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.carrier-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.carrier-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  padding: 8px 12px;
  color: var(--coal);
  font-size: 13px;
  font-weight: 900;
}

.carrier-lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  background: var(--coal);
  padding: 11px 16px;
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.home-disclosure {
  margin-bottom: 54px;
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
}

.ata-final {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7, 32, 48, 0.94), rgba(7, 32, 48, 0.82)),
    url("images/family-at-home.jpg") center / cover;
  color: var(--paper-soft);
  padding: clamp(54px, 8vw, 88px) max(16px, calc((100vw - 1180px) / 2));
}

.ata-final .eyebrow {
  color: var(--brass);
}

.ata-final h2,
.ata-final p {
  color: var(--paper-soft);
}

.ata-final p {
  color: rgba(255, 255, 255, 0.82);
}

.ata-disclosure {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--coal);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px max(16px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
}

.ata-disclosure h2 {
  color: var(--paper-soft);
}

.ata-disclosure p {
  color: rgba(255, 255, 255, 0.74);
}

.site-lead-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 32, 48, 0.94);
  box-shadow: 0 18px 52px rgba(7, 32, 48, 0.24);
  padding: 12px;
  color: var(--paper-soft);
}

.site-lead-dock span {
  font-size: 13px;
  font-weight: 900;
}

.site-lead-dock a {
  border-radius: var(--radius);
  background: var(--brass);
  padding: 10px 13px;
  color: var(--coal);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.license-lead-cta,
.legal-lead-cta {
  margin-top: 24px;
  border-radius: var(--radius);
  background: var(--coal);
  padding: clamp(24px, 4vw, 38px);
  color: var(--paper-soft);
}

.license-lead-cta .eyebrow {
  color: var(--brass);
}

.license-lead-cta h2,
.legal-lead-cta h2 {
  color: var(--paper-soft);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
}

.license-lead-cta .button,
.legal-lead-cta .button {
  margin-top: 18px;
}

.legal-lead-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.home-disclosure h2 {
  color: var(--coal);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-disclosure p {
  max-width: 980px;
  color: var(--muted);
  font-size: 13px;
}

.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 {
  position: absolute;
  inset: 0;
}

.portrait-wrap img {
  object-fit: cover;
  object-position: 45% 50%;
}

.who-band,
.carrier-section,
.licenses-overview,
.split-panel,
.audience-list,
.final-cta,
.quiz-shell,
.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);
}

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

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

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

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

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

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px) 0 42px;
}

.quote-copy h1 {
  max-width: 790px;
  color: var(--coal);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(46px, 7.6vw, 94px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.quote-copy .lead {
  max-width: 710px;
  color: #435462;
  font-size: clamp(18px, 2.1vw, 24px);
}

.quote-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.quote-highlights span {
  border: 1px solid rgba(14, 45, 66, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 13px;
  color: var(--coal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-layout .quiz-shell {
  border: 0;
  background: var(--coal);
  color: var(--paper-soft);
  padding: 14px;
  box-shadow: var(--shadow);
}

.quote-layout .quiz-body h2 {
  color: var(--paper-soft);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.quote-layout .quiz-body > p,
.quote-layout .quiz-top span,
.quote-layout .microcopy,
.quote-layout .handoff-panel span,
.quote-layout .booking-step span,
.quote-layout .send-status {
  color: rgba(255, 255, 255, 0.76);
}

.quote-layout .quiz-body > p {
  margin: 8px 0 14px;
}

.quiz-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-layout .progress-track {
  background: rgba(255, 255, 255, 0.14);
}

.quote-layout .progress-fill {
  background: linear-gradient(90deg, var(--brass), #ffffff);
}

.availability-field {
  margin-top: 16px;
}

.availability-field label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 16px 18px;
  color: var(--coal);
  font: inherit;
  font-size: 20px;
  font-weight: 900;
}

.availability-field input:focus {
  border-color: var(--brass);
  outline: none;
  box-shadow: 0 0 0 3px rgba(228, 184, 90, 0.22);
}

.availability-field input[aria-invalid="true"] {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(228, 184, 90, 0.28);
}

.quote-layout .quiz-actions {
  margin-top: 18px;
}

.quote-layout .option-button,
.quote-layout .field-stack input,
.quote-layout .field-stack textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--coal);
}

.quote-layout .option-button:hover,
.quote-layout .option-button:focus,
.quote-layout .field-stack input:focus,
.quote-layout .field-stack textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(228, 184, 90, 0.2);
}

.quote-layout .field-stack label {
  color: rgba(255, 255, 255, 0.76);
}

.quote-layout .field-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.quote-layout .field-stack label:last-child {
  grid-column: 1 / -1;
}

.quote-layout .field-stack textarea {
  min-height: 74px;
}

.quote-layout .field-stack input {
  min-height: 46px;
  padding: 11px 13px;
}

.quote-layout .microcopy {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.35;
}

.quote-layout .button.primary {
  background: var(--brass);
  color: var(--coal);
  box-shadow: 0 16px 34px rgba(228, 184, 90, 0.24);
}

.quote-layout .button.primary:hover {
  background: #f0c867;
}

.quote-layout .button.secondary,
.quote-layout .back-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper-soft);
}

.quote-layout .handoff-panel,
.quote-layout .booking-step,
.quote-layout .summary-box {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.quote-layout .handoff-panel strong,
.quote-layout .booking-step strong {
  color: var(--brass);
}

.review-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.review-proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  padding: 22px;
  box-shadow: 0 16px 44px rgba(14, 45, 66, 0.08);
}

.review-proof-grid strong,
.review-proof-grid span {
  display: block;
}

.review-proof-grid strong {
  color: var(--coal);
  font-size: 22px;
  font-weight: 900;
}

.review-proof-grid span {
  margin-top: 6px;
  color: var(--muted);
}

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

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

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

.quiz-shell {
  padding: 22px;
}

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

.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-proof {
  margin-bottom: 30px;
}

.license-proof-heading {
  max-width: 820px;
  margin-bottom: 16px;
}

.license-proof-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.license-proof-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
}

.license-screenshot-frame {
  overflow-x: auto;
  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);
  margin: 0;
}

.license-screenshot-frame img {
  display: block;
  width: 100%;
  min-width: 760px;
  background: var(--paper-soft);
}

.license-screenshot-frame figcaption {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.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;
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #072030;
  padding: 28px max(16px, calc((100vw - 1180px) / 2)) 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

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

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

.footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .coverage-card,
  .split-panel,
  .audience-list,
  .licenses-overview,
  .license-detail-card,
  .who-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,
  .simple-hero,
  .simple-split,
  .simple-split.reverse,
  .ata-content,
  .ata-content.reverse,
  .quote-layout,
  .funnel-layout,
  .split-section,
  .who-band,
  .carrier-section,
  .licenses-overview {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .simple-hero {
    min-height: 650px;
  }

  .simple-hero-media {
    min-height: 100%;
  }

  .ata-content.reverse .ata-image {
    order: 0;
  }

  .simple-split.reverse > div {
    order: 0;
  }

  .simple-stats,
  .benefit-grid,
  .review-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simple-stats div:nth-child(2) {
    border-right: 0;
  }

  .simple-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .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) {
  body:not([data-flow]) {
    padding-bottom: 88px;
  }

  .site-header {
    width: 100%;
    top: 0;
  }

  .nav {
    align-items: flex-start;
    width: calc(100% - 20px);
  }

  .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,
  .simple-hero,
  .simple-stats,
  .simple-split,
  .ata-content,
  .benefit-section,
  .carrier-strip,
  .quote-layout,
  .review-proof-grid,
  .section,
  .split-section,
  .who-band,
  .carrier-section,
  .final-cta,
  .funnel-layout,
  .disclosure-strip,
  .home-disclosure,
  .legal-page,
  .licenses-page,
  .licenses-overview,
  .footer {
    width: 100%;
  }

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

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

  .simple-hero {
    width: 100%;
    min-height: 680px;
  }

  .simple-hero-media {
    min-height: 100%;
  }

  .simple-hero-copy h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .simple-hero-inner {
    width: calc(100% - 20px);
  }

  .simple-hero-copy {
    padding: 24px;
  }

  .ata-content {
    padding: 44px 0;
  }

  .ata-image {
    min-height: 320px;
  }

  .ata-feature-section .section-heading,
  .ata-feature-section .benefit-grid {
    width: calc(100% - 20px);
  }

  .simple-stats,
  .benefit-grid,
  .review-proof-grid {
    grid-template-columns: 1fr;
  }

  .quote-layout {
    gap: 22px;
    padding-top: 42px;
  }

  .quote-copy h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .quote-layout .field-stack {
    grid-template-columns: 1fr;
  }

  .quote-layout .field-stack label:last-child {
    grid-column: auto;
  }

  .site-lead-dock {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: space-between;
  }

  .simple-stats div {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .simple-stats div:last-child {
    border-bottom: 0;
  }

  .simple-split {
    padding-top: 44px;
  }

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

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

  .coverage-grid,
  .process-grid,
  .audience-list,
  .license-detail-grid,
  .who-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%;
  }
}
