:root {
  --brand-navy: #12344d;
  --navy: var(--brand-navy);
  --navy-dark: #0e2839;
  --teal: #12344d;
  --teal-dark: #0e2839;
  --btn-ink: #fff;
  --ink: #1d3344;
  --muted: #5d7384;
  --line: #e3eaf0;
  --bg: #ffffff;
  --bg-2: #f4f7f9;
  --paper: #f4f6f8;
  --paper-ink: #1d3344;
  --paper-muted: #5d7384;
  --paper-line: #dce4ea;
  --dark: var(--brand-navy);
  --dark-2: var(--brand-navy);
  --white: #fff;
  --ok: #1a8f62;
  --shadow: 0 12px 32px rgba(18, 52, 77, 0.08);
  --radius-card: 12px;
  --radius-btn: 8px;
  --font: Inter, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-lock { overflow: hidden; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
}
.skip:focus { top: 12px; }

.wrap { width: var(--wrap); max-width: 100%; min-width: 0; margin-inline: auto; overflow-wrap: break-word; }

.kicker, .eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.surface-navy .kicker,
.funnel .kicker,
.cta-band .kicker { color: rgba(255, 255, 255, 0.72); }
.hero .kicker { color: rgba(255, 255, 255, 0.82); }
.hero .kicker.hero-kicker {
  display: block;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.16em;
}
h1, h2, h3 {
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.12;
  font-weight: 700;
}
h2 { font-size: clamp(32px, 4.6vw, 52px); margin: 0 0 16px; max-width: 22ch; }
h3 { font-size: 22px; margin: 0 0 10px; }
.em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.lede, .section-lead {
  max-width: 640px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: break-word;
}
.fine { margin: 14px 0 0; font-size: 14px; color: var(--muted); }
.stage-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-btn);
  padding: 13px 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}
.btn-primary { background: var(--brand-navy); color: #fff; }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.45) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18, 52, 77, 0.28);
}
.btn-primary:hover::after { transform: translateX(130%); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-ghost, .btn-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover, .btn-on-dark:hover { background: #fff; color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(255,255,255,0.18); }
.btn-text, .btn.btn-text {
  background: none;
  color: #fff;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}
.btn-text:hover { color: var(--teal); transform: none; box-shadow: none; }
.quiz-dock .btn-text { color: var(--navy); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-label-short { display: none; }
.btn.is-loading {
  pointer-events: none;
  color: transparent !important;
}
.btn.is-loading::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  z-index: 2;
}
@keyframes spin { to { transform: rotate(360deg); } }
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--navy);
  z-index: 90;
  animation: loadline 0.85s ease forwards;
  pointer-events: none;
}
@keyframes loadline {
  0% { width: 0; opacity: 1; }
  75% { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 24px;
  padding: 12px 28px;
  background: var(--brand-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
  color: rgba(255, 255, 255, 0.9);
}
.site-header.is-scrolled {
  background: var(--brand-navy);
  box-shadow: 0 12px 32px rgba(7, 20, 30, 0.35);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
  justify-self: start;
  color: #fff;
  transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.92; color: #fff; }
.brand-logo {
  height: 32px;
  width: auto;
  max-width: min(160px, 44vw);
  flex: none;
  display: block;
  object-fit: contain;
}
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word strong { font-size: 14px; font-weight: 800; letter-spacing: -0.03em; white-space: nowrap; }
.brand-word small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.header-nav a, .nav-drop > button {
  text-decoration: none;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: var(--radius-btn);
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header-nav a::after, .nav-drop > button::after { display: none; }
.header-nav a:hover, .nav-drop > button:hover,
.header-nav a[aria-current="page"], .nav-drop:hover > button, .nav-drop:focus-within > button {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.header-nav a[aria-current="page"], .nav-drop > button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.16);
}
.nav-drop > button { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}
.nav-drop:hover .nav-caret,
.nav-drop:focus-within .nav-caret,
.nav-drop.open .nav-caret { transform: rotate(180deg); }
.nav-drop { position: relative; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 48px rgba(18, 52, 77, 0.16);
  padding: 8px;
  z-index: 100;
}
.nav-drop-mega {
  display: none;
  grid-template-columns: repeat(3, minmax(168px, 1fr));
  gap: 4px 8px;
  min-width: min(560px, calc(100vw - 32px));
  padding: 14px;
}
.nav-drop-col { min-width: 0; }
.nav-drop-label {
  margin: 0 0 6px;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-drop:hover .nav-drop-menu:not(.nav-drop-mega),
.nav-drop:focus-within .nav-drop-menu:not(.nav-drop-mega),
.nav-drop.open .nav-drop-menu:not(.nav-drop-mega) { display: block; }
.nav-drop:hover .nav-drop-mega,
.nav-drop:focus-within .nav-drop-mega,
.nav-drop.open .nav-drop-mega { display: grid; }
.nav-drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.nav-drop-menu a:hover { background: rgba(18, 52, 77, 0.08); color: var(--navy-dark); transform: translateX(4px); border-left-color: var(--navy); }
.nav-drop-menu a[aria-current="page"] {
  background: rgba(18, 52, 77, 0.12);
  border-left-color: var(--brand-navy);
  color: var(--brand-navy);
  font-weight: 700;
}
.nav-drop:has(.nav-drop-menu a[aria-current="page"]) > button {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
  justify-self: end;
}
.header-phone {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}
.header-phone:hover { color: #fff; }
.site-header .btn-primary {
  background: #fff;
  color: var(--brand-navy);
}
.site-header .btn-primary:hover {
  background: var(--bg-2);
  color: var(--brand-navy);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 1px; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: min(760px, 92vh);
  display: flex;
  align-items: center;
  padding: 64px 0 80px;
  background: #0c1218;
}
.hero::before,
.hero::after { display: none; }
.hero-layout {
  display: block;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  background: #0c1218;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(8, 14, 20, 0.38);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 50%;
  border-radius: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(620px, calc(100vw - 32px));
  min-width: 0;
  margin: 0;
}
.hero .lede, .hero .fine { max-width: 100%; overflow-wrap: break-word; }
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5.2vw, 64px);
  margin: 0 0 22px;
  max-width: 12ch;
  overflow-wrap: break-word;
}
.hero .lede { color: rgba(255, 255, 255, 0.92); font-size: 18px; line-height: 1.55; max-width: 38ch; }
.hero-brand {
  margin: 0 0 14px;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.hero-details {
  margin: 0 0 22px;
  max-width: 46ch;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-btn);
  background: rgba(8, 14, 20, 0.28);
  padding: 12px 16px;
}
.hero-details summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  list-style: none;
}
.hero-details summary::-webkit-details-marker { display: none; }
.hero-details summary::after {
  content: " +";
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
.hero-details[open] summary::after { content: " −"; }
.hero-details p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.hero-details p + p { margin-top: 10px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero .fine { color: rgba(255, 255, 255, 0.7); }

.lined {
  position: relative;
  isolation: isolate;
}
.lined::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, #000 8%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, #000 8%, transparent 78%);
}
.lined > * { position: relative; z-index: 1; }

.match { padding: 96px 0 108px; }
.match-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.match-head h2 {
  max-width: 52ch;
  margin-inline: auto;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.03em;
}
.match-head .section-lead { margin-inline: auto; max-width: 58ch; font-size: 17px; }
.match-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: var(--radius-card);
  background: var(--bg-2);
  color: var(--navy);
}
.match-icon svg { display: block; }
.who h2 { max-width: 24ch; }
.pricing h2 { max-width: 22ch; }
.match-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.match-grid article {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-card);
  padding: 26px 24px 28px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.match-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 52, 77, 0.28);
  box-shadow: 0 16px 36px rgba(18, 52, 77, 0.1);
}
.match-grid h3 { font-size: 20px; margin: 0 0 10px; }
.match-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.on-light {
  background: var(--paper);
  color: var(--paper-ink);
}
.on-light h2, .on-light h3 { color: var(--navy); }
.on-light .section-lead, .on-light .fine { color: var(--paper-muted); }
.on-light .kicker { color: var(--navy); }

.surface-muted { background: var(--bg-2); }
.surface-light { background: #fff; }
.surface-navy {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.88);
}
.surface-navy h2,
.surface-navy h3 { color: #fff; }
.surface-navy .section-lead,
.surface-navy .lede,
.surface-navy p:not(.kicker) { color: rgba(255, 255, 255, 0.82); }
.surface-navy .fine { color: rgba(255, 255, 255, 0.62); }

.types { padding: 88px 0; }
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.type-col {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--paper-ink);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.type-col:hover { transform: translateY(-4px); border-color: rgba(18, 52, 77, 0.28); box-shadow: 0 16px 36px rgba(18, 52, 77, 0.1); }
.type-col img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.type-col:hover img { transform: scale(1.04); }
.type-col > div { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.type-col h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }
.type-col p { color: var(--paper-muted); margin: 0 0 16px; flex: 1; font-size: 15px; }
.type-col em {
  font-style: normal;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
  transition: color 0.2s ease;
}
.type-col:hover em { color: var(--navy-dark); }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.chip-row li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--paper);
  border-radius: 999px;
  padding: 6px 10px;
  transition: background-color 0.2s ease;
}
.type-col:hover .chip-row li { background: var(--bg-2); }

.funnel { padding: 88px 0; color: #fff; }
.funnel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.funnel-layout img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.funnel h2 { color: #fff; max-width: 14ch; }
.funnel .section-lead { color: #fff; }
.funnel-stack { margin-top: 28px; max-width: 780px; }
.funnel-row {
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 18px 12px;
  margin-inline: -12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.2s ease;
}
.funnel-row:hover { background: rgba(31, 127, 136, 0.12); }
.funnel-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.funnel-row b {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.funnel-row span { font-size: 22px; font-weight: 650; letter-spacing: -0.03em; color: #fff; }
.funnel-row[data-w="6"] span { font-size: 30px; font-weight: 600; }
.funnel-row[data-w="5"] span { font-size: 26px; }
.funnel-row[data-w="4"] span { font-size: 23px; }
.funnel-row[data-w="1"] span { font-size: 26px; }

.geo { padding: 88px 0; }
.geo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}
.geo-codes {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 5px;
}
.geo-codes span {
  display: grid;
  place-items: center;
  aspect-ratio: 1.1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--paper-muted);
  background: #fff;
  border-radius: 8px;
}
.geo-codes span.mark { background: var(--navy); color: #fff; }
.geo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.geo-list li {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.geo-list li:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.geo-codes span { transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.geo-codes span:hover { background: var(--navy); color: #fff; transform: scale(1.08); }

.find { padding: 88px 0; }
.find-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.find img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.find h2 { max-width: 18ch; }
.find-q { list-style: none; margin: 0 0 28px; padding: 0; }
.find-q li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  font-size: 18px;
  color: var(--navy);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.find-q li:hover { color: var(--teal); padding-left: 6px; }
.find-q span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 6px;
}

.channels { padding: 88px 0; }
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.channel-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--paper-ink);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.channel-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.55s ease; }
.channel-card:hover img { transform: scale(1.07); }
.channel-card:hover { transform: translateY(-4px); border-color: rgba(18, 52, 77, 0.28); box-shadow: 0 16px 36px rgba(18, 52, 77, 0.1); }
.channel-card > div { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.channel-card h3 { color: var(--navy); }
.channel-card p { color: var(--paper-muted); margin: 0 0 16px; flex: 1; }
.channel-card em { font-style: normal; color: var(--navy); font-weight: 700; font-size: 14px; transition: color 0.2s ease; }
.channel-card:hover em { color: var(--navy-dark); }

.process { padding: 88px 0; }
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.process img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.process h2 { max-width: 24ch; }
.process ol { list-style: none; margin: 22px 0 0; padding: 0; counter-reset: step; }
.process li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  font-size: 17px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.process.surface-navy li {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.process.surface-navy li:hover { color: #fff; padding-left: 6px; }
.process li:hover { color: var(--navy); padding-left: 6px; }
.process li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.process.surface-navy li::before { color: rgba(255, 255, 255, 0.55); }

.who { padding: 88px 0; }
.who-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: start;
}
.who-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.resource-band { padding: 88px 0; }
.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.resource-layout h2 { max-width: 22ch; }
.text-link {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--navy-dark); }
.section-photo { border-radius: var(--radius-card); }
.guide-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 35%;
}
.text-link-secondary { margin-left: 18px; color: var(--muted); font-weight: 600; }
.text-link-secondary:hover { color: var(--navy); }
.who-pills, .industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.who-pills li, .industry-grid li {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  font-weight: 650;
  color: var(--navy);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.who-pills li:hover, .industry-grid li:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 52, 77, 0.28);
  box-shadow: 0 8px 18px rgba(18, 52, 77, 0.08);
}

.services { padding: 88px 0 100px; }
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.services .service-grid li {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.services .service-grid li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.pricing { padding: 96px 0 108px; text-align: center; }
.pricing-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.pricing-head h2 { margin-inline: auto; }
.pricing-head .section-lead { margin-inline: auto; max-width: 58ch; }
.price-factors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 36px;
  text-align: left;
  width: 100%;
}
.price-factors div {
  background: var(--bg-2);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.price-factors div:hover {
  border-color: rgba(18, 52, 77, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 52, 77, 0.08);
  background: #fff;
}
.price-factors h3 {
  font-size: 22px;
  margin: 0 0 8px;
  max-width: 16ch;
}
.price-factors p { margin: 0; color: var(--muted); font-size: 16px; }
.pricing .btn { display: inline-flex; }

.quiz { padding: 88px 0 108px; color: var(--ink); }
.quiz-intro-head { margin-bottom: 32px; }
.quiz-intro-head h2 { max-width: 20ch; color: var(--navy); }
.quiz-intro-head p { max-width: 680px; color: var(--muted); }
.quiz-intro-head .btn { margin-top: 18px; }
.quiz-shell { scroll-margin-top: 88px; }
.quiz-track { display: flex; flex-wrap: wrap; gap: 4px 20px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--paper-line); }
.quiz-track button {
  background: none; border: 0; font: inherit;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6d8494; padding: 6px 0; position: relative;
  transition: color 0.2s ease;
}
.quiz-track button:not(:disabled):hover { color: var(--teal); }
.quiz-track button.on { color: var(--teal); }
.quiz-track button.on::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -15px;
  height: 2px;
  background: var(--navy);
}
.quiz-track button.done { color: var(--navy); cursor: pointer; }
.quiz-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  position: sticky;
  top: 88px;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(18, 52, 77, 0.05);
}
.audience-card h3 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}
.audience-card ul { list-style: none; margin: 0; padding: 0; }
.audience-card li { padding: 8px 0; border-bottom: 1px solid var(--paper-line); font-size: 14px; font-weight: 600; color: var(--navy); }
.audience-card .empty { font-weight: 500; color: var(--muted); border: 0; }
.quiz-frame {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-card);
  padding: 28px;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(18, 52, 77, 0.05);
}
.quiz-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 12px;
}
.quiz-head h2, .unlock h2, .beat h2 { font-size: clamp(24px, 3.5vw, 32px); margin: 0 0 8px; color: var(--navy); max-width: none; }
.quiz-head p, .unlock p, .beat p { color: var(--muted); margin: 0 0 20px; }
.answer-stack { display: grid; gap: 6px; }
.answer {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-left: 3px solid transparent;
  border-radius: var(--radius-card);
  padding: 14px 16px;
  cursor: pointer;
  color: var(--navy);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.answer:hover { border-color: rgba(18, 52, 77, 0.35); border-left-color: var(--brand-navy); transform: translateX(4px); background: var(--bg-2); }
.answer.selected { background: rgba(18, 52, 77, 0.07); border-color: var(--brand-navy); border-left-color: var(--brand-navy); }
.answer kbd {
  width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--paper-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--muted); flex: none;
}
.answer.selected kbd { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }
.answer span { flex: 1; }
.answer b { display: block; font-size: 15px; color: var(--navy); }
.answer i { width: 16px; height: 16px; border: 2px solid var(--paper-line); border-radius: 4px; flex: none; }
.answer.check i { border-radius: 4px; }
.answer.selected i { background: var(--brand-navy); border-color: var(--brand-navy); box-shadow: inset 0 0 0 3px #fff; }
.quiz-block { margin-top: 20px; }
.quiz-label { margin: 0 0 8px; font-size: 14px; font-weight: 700; color: var(--navy); }
.quiz-help { margin: 14px 0 8px; font-size: 14px; color: var(--muted); }
.quiz-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.quiz-pills button {
  border: 1px solid var(--paper-line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.quiz-pills button:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.quiz-pills button.selected { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }
.quiz-pills button.selected:hover { color: #fff; background: var(--navy-dark); border-color: var(--navy-dark); }
.quiz-check { display: flex; align-items: center; gap: 8px; font-weight: 600; margin: 0 0 10px; color: var(--navy); }
.quiz-age { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz-age label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.quiz-text-field, .quiz-note-field, .quiz-age input,
.unlock-form input, .contact-native input, .contact-native select, .contact-native textarea {
  width: 100%;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  background: #fff;
  color: var(--paper-ink);
}
.quiz .quiz-text-field, .quiz .quiz-note-field, .quiz .quiz-age input,
.quiz .unlock-form input {
  background: #fff;
  border: 1px solid var(--paper-line);
  color: var(--navy);
  border-radius: 10px;
}
.quiz input:-webkit-autofill,
.quiz input:-webkit-autofill:hover,
.quiz input:-webkit-autofill:focus,
.quiz textarea:-webkit-autofill,
.quiz select:-webkit-autofill {
  -webkit-text-fill-color: var(--navy);
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 99999s ease-out 0s;
}
.quiz input:focus, .quiz textarea:focus, .quiz select:focus {
  outline: 2px solid rgba(18, 52, 77, 0.35);
  outline-offset: 1px;
  border-color: var(--brand-navy);
  background: #fff;
}
.quiz-note-field { min-height: 88px; resize: vertical; }
.quiz-dock { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.quiz-dock p { margin: 0 auto 0 0; color: var(--muted); font-size: 13px; }
.quiz-seo { margin: 24px 0 0; color: var(--muted); font-size: 12px; }
.unlock-form input { margin-bottom: 10px; }
.unlock-form .btn { width: 100%; margin-top: 8px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-note a { color: var(--teal); font-weight: 700; }
.fine-center { text-align: center; color: var(--muted); font-size: 14px; }
.gen-bar { height: 6px; background: var(--paper-line); border-radius: 99px; overflow: hidden; margin-bottom: 10px; }
.gen-bar i { display: block; height: 100%; width: 0; background: var(--teal); }
.gen-label { font-weight: 700; color: var(--navy); }
.recap-list, .thanks-checks { list-style: none; padding: 0; margin: 16px 0; }
.recap-list { background: var(--bg-2); border-radius: var(--radius-card); padding: 8px 18px; }
.recap-list li { padding: 10px 0; color: var(--navy); }
.thanks-checks li { padding: 8px 0 8px 22px; position: relative; font-weight: 600; color: var(--navy); }
.thanks-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); }

.faq-home { padding: 88px 0; text-align: center; }
.faq-home h2 { margin-inline: auto; }
.faq-list { max-width: 760px; margin-inline: auto; text-align: left; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-card);
  margin-bottom: 8px;
  padding: 0 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-list details:hover { border-color: var(--teal); box-shadow: 0 8px 18px rgba(18, 52, 77, 0.06); }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 16px 36px 16px 0;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  color: var(--teal-dark);
  font-size: 20px;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0 0 16px; color: var(--paper-muted); }
.faq-more { margin: 18px 0 0; }
.faq-more a { color: var(--teal-dark); font-weight: 700; }
.faq-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.cta-band { color: rgba(255, 255, 255, 0.82); padding: 96px 0; }
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 48px;
  align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(36px, 6vw, 64px); max-width: 12ch; }
.cta-band p { max-width: 560px; color: rgba(255, 255, 255, 0.72); }
.cta-side .fine { color: #c5d2dc; margin: 10px 0 16px; }
.cta-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-side .footer-phone { margin: 0; }
.cta-band .powered { margin-top: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }

.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 0 0 24px;
  border-top: none;
}
.cta-band.surface-navy {
  border-bottom: none;
  background: var(--brand-navy);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  padding: 36px 0 24px;
  align-items: start;
}
.footer-grid > p,
.footer-grid > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.6;
}
.blog-page { background: #fff; }
.blog-hero {
  background: var(--brand-navy);
  color: #fff;
  padding: 72px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-hero-inner { max-width: 720px; }
.blog-hero .kicker { color: rgba(255, 255, 255, 0.68); margin-bottom: 18px; }
.blog-hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 58px);
  max-width: 14ch;
  margin: 0 0 20px;
  line-height: 1.06;
}
.blog-hero h1 .em { color: #fff; }
.blog-hero-lede {
  margin: 0;
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.blog-list { padding: 56px 0 96px; max-width: 720px; }
.blog-post-preview {
  padding: 0 0 40px;
  border-bottom: 1px solid var(--paper-line);
}
.blog-post-preview--media {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.blog-post-thumb {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.blog-post-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.35s ease;
}
.blog-post-thumb:hover img { transform: scale(1.03); }
.blog-post-copy { min-width: 0; }
.blog-post-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-post-preview h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  max-width: none;
  margin: 0 0 14px;
  line-height: 1.18;
}
.blog-post-preview h2 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-post-preview h2 a:hover { color: var(--navy-dark); }
.blog-post-preview > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 62ch;
}
.footer-brand { color: #fff; margin: 0 0 10px; }
.footer-brand small { color: #8aa0b0; }
.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-content: flex-start;
  justify-content: flex-end;
  max-width: 440px;
  margin-left: auto;
}
.footer-grid nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-grid nav a:hover { color: #fff; transform: none; }
.footer-sitemap a { transition: color 0.2s ease; }
.footer-sitemap a:hover { color: #fff; }
.footer-phone {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-phone:hover { color: #fff; }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-legal nav { display: flex; gap: 16px; }
.footer-legal a { color: #8aa0b0; text-decoration: none; }
.footer-legal a:hover { color: #fff; }
.footer-legal p { margin: 0; }
.footer-copy p { color: #8aa0b0; margin: 0 0 10px; max-width: 46ch; }
.footer-copy .kicker { color: rgba(255, 255, 255, 0.72); }
.footer-bar {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0 16px;
}
.footer-logo-wrap {
  display: inline-flex;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 10px;
}
.footer-logo {
  display: block;
  height: 24px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.footer-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.footer-sitemap {
  width: var(--wrap);
  margin: 0 auto 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-sitemap a { color: #8aa0b0; text-decoration: none; }
.footer-ready { color: #fff; font-weight: 700; }
.site-footer .btn-primary, .site-footer .btn-light { background: #fff; color: var(--navy); }
.site-footer .btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,0.35); }

.page-hero, .faq-hero {
  background: var(--dark-2);
  color: #fff;
  padding: 64px 0 72px;
}
.page-hero .wrap, .faq-hero-copy {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
}
.page-hero h1, .faq-hero h1 { color: #fff; font-size: clamp(36px, 5.4vw, 52px); margin: 0; max-width: 18ch; }
.page-hero .section-lead { color: rgba(255, 255, 255, 0.78); margin-bottom: 0; }
.faq-hero .kicker { color: var(--teal); }
.faq-hero-photo { display: none; }
.page-body, .faq-page .faq {
  width: min(800px, calc(100% - 48px));
  margin: -24px auto 72px;
  position: relative;
  z-index: 2;
}
.page-body, .contact-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  color: var(--paper-ink);
}
.contact-card { margin: 0; }
.faq-page { background: var(--paper); }
.page-body h2 { font-size: 24px; margin: 24px 0 8px; color: var(--navy); max-width: none; }
.page-body p, .page-body li { color: var(--paper-muted); }
.page-body a { color: var(--teal-dark); font-weight: 700; }
.page-body a.btn { color: var(--btn-ink); }
.related-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.related-pages a {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.related-pages a:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 8px 18px rgba(18, 52, 77, 0.08); }
.contact-lead { color: var(--paper-muted); }
.contact-lead-secondary { margin-top: -4px; font-size: 15px; }
.contact-lead a { color: var(--brand-navy); font-weight: 700; }
.contact-123 {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  background: transparent;
  overflow: hidden;
}
.contact-123 iframe {
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0;
  border: 0 !important;
  outline: none;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}
.contact-form-pending code {
  font-size: 13px;
  color: var(--navy);
}
.contact-native { display: grid; gap: 12px; }
.contact-native textarea { min-height: 110px; resize: vertical; }
.contact-native label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); }
.contact-native label input,
.contact-native label select,
.contact-native label textarea { margin-top: 6px; }

.article {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 96px;
  color: var(--paper-ink);
}
.article h2 {
  font-size: clamp(24px, 3vw, 32px);
  max-width: none;
  margin: 40px 0 12px;
  color: var(--navy);
}
.article h3 { font-size: 20px; margin: 24px 0 8px; color: var(--navy); }
.article p, .article li {
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.7;
}
.article p { margin: 0 0 16px; }
.article-back { margin: 0 0 20px !important; }
.article-back a { font-weight: 700; color: var(--brand-navy); text-decoration: none; }
.article-back a:hover { text-decoration: underline; }
.article strong { color: var(--navy); }
.article .selects { color: var(--navy); font-weight: 600; }

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .site-header {
    position: sticky;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .brand, .header-nav, .header-actions { justify-self: auto; }
  .header-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 16px 16px;
    background: var(--brand-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 32px rgba(7, 20, 30, 0.35);
  }
  .site-header.nav-open .header-nav { display: flex; }
  .header-nav a, .nav-drop > button {
    padding: 14px 10px;
    border-bottom: 0;
    text-align: left;
  }
  .header-nav a::after, .nav-drop > button::after { display: none; }
  .nav-drop-menu {
    position: static;
    display: none;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    margin: 4px 0 8px;
    padding: 6px;
    border-radius: var(--radius-btn);
    min-width: 0;
  }
  .nav-drop.open .nav-drop-menu:not(.nav-drop-mega) { display: block; }
  .nav-drop.open .nav-drop-mega {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .nav-drop-label { color: rgba(255, 255, 255, 0.55); padding-left: 10px; }
  .nav-drop-menu a { color: rgba(255, 255, 255, 0.92); }
  .nav-drop-menu a:hover { background: rgba(255, 255, 255, 0.12); color: #fff; border-left-color: #fff; }
  .nav-drop-menu a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.18);
    border-left-color: #fff;
    color: #fff;
  }
  .header-phone { display: none; }
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  .type-grid, .quiz-layout, .process-grid, .geo-layout, .footer-grid, .related-pages, .footer-bar, .price-factors, .channel-grid, .find-layout, .match-grid, .who-pills, .industry-grid, .services .service-grid, .cta-layout, .funnel-layout, .who-layout, .resource-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .hero-layout { display: block; }
  .find img, .process img, .funnel-layout img, .who-photo { min-height: 240px; height: 240px; }
  .guide-photo { min-height: 0; height: auto; }
  .footer-grid nav { justify-content: flex-start; margin-left: 0; max-width: none; }
  .blog-post-preview--media { grid-template-columns: 1fr; }
  .audience-card { position: static; }
  .hero {
    display: flex;
    align-items: center;
    min-height: 640px;
    padding: 40px 0 56px;
  }
  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    order: 0;
  }
  .hero-visual::after {
    background: rgba(8, 14, 20, 0.42);
  }
  .hero-photo, .hero-visual { min-height: 0; height: 100%; }
  .hero-copy { margin: 0; width: 100%; max-width: calc(100vw - 32px); min-width: 0; }
}

@media (max-width: 720px) {
  :root { --wrap: calc(100% - 32px); }
  .site-header { padding: 10px 12px; }
  .brand-word small { display: none; }
  .hero h1 { font-size: 30px; max-width: 12ch; }
  .hero .lede, .hero .fine {
    font-size: 16px;
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .funnel-row { grid-template-columns: 1fr; gap: 6px; }
  .funnel-row[data-w] span { font-size: 18px !important; }
  .geo-codes { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .quiz-frame { padding: 20px 16px; }
  .quiz-dock { flex-wrap: wrap; }
  .quiz-dock .btn { width: 100%; }
  .row-2, .quiz-age { grid-template-columns: 1fr; }
  .footer-legal, .footer-bar { flex-direction: column; }
  .type-grid, .quiz-layout, .process-grid, .geo-layout, .footer-grid, .related-pages, .footer-bar, .price-factors, .channel-grid, .find-layout, .match-grid, .who-pills, .industry-grid, .services .service-grid, .cta-layout, .funnel-layout, .hero-layout, .who-layout, .resource-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  h2 { max-width: none; }
}

@media (max-width: 520px) {
  .header-actions .btn { display: none; }
  .geo-codes { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .type-col:hover, .btn-primary:hover, .channel-card:hover, .answer:hover, .hero-photo:hover { transform: none; }
  .type-col:hover img, .channel-card:hover img { transform: none; }
  .btn-primary::after, body::before { display: none; }
  .btn.is-loading::before { animation: none; }
}
