:root {
  --ink: #171a21;
  --navy: #1b2b5b;
  --navy-deep: #142044;
  --blue: #2d5bd7;
  --blue-pale: #ebf1ff;
  --teal: #df6cab;
  --teal-pale: #fceaf4;
  --pink: #df6cab;
  --pink-pale: #fceaf4;
  --coral: #2d5bd7;
  --paper: #ffffff;
  --wash: #f5f7fb;
  --line: #d8dfeb;
  --muted: #667188;
  --success: #16765f;
  --error: #b52f45;
  --shadow: 0 24px 70px rgba(17, 31, 68, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
body, button, input, select, textarea { letter-spacing: 0; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1100;
  height: 66px;
  color: #fff;
  background: rgba(16, 26, 59, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 18px; font-weight: 900; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 24px; color: #dbe3fa; font-size: 13px; font-weight: 750; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-state { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.nav-state::before { width: 8px; height: 8px; content: ""; background: var(--teal); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}
.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  content: "";
  background: var(--teal);
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34vw, 420px);
  height: 14px;
  content: "";
  background: var(--pink);
}
.hero-inner { position: relative; padding: 72px 0 54px; }
.eyebrow {
  margin: 0 0 18px;
  color: #ffe0ef;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { max-width: 880px; margin: 0; font-size: clamp(48px, 7vw, 82px); line-height: 0.98; letter-spacing: 0; }
.hero-copy { max-width: 760px; margin: 24px 0 0; color: #f4f6ff; font-size: 20px; line-height: 1.52; }
.status-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: #fff; font-size: 13px; }
.status-row span { display: inline-flex; align-items: center; gap: 8px; }
.status-row i { width: 8px; height: 8px; background: var(--teal); }
.status-row span:nth-child(2) i { background: var(--pink); }

.screen-band { position: relative; z-index: 2; padding: 0 0 86px; background: var(--wash); }
.address-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: -1px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--pink);
  border-top: 5px solid var(--pink);
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 7px; min-width: 0; }
.field label { color: var(--ink); font-size: 12px; font-weight: 850; }
.field small { color: var(--muted); font-size: 11px; line-height: 1.4; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8d1e1;
  border-radius: 4px;
  outline: none;
}
.field textarea { min-height: 94px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 95, 218, 0.13);
}
.field input::placeholder, .field textarea::placeholder { color: #8b94a8; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 19px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cbd5e6;
  border-radius: 5px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible { outline: 3px solid rgba(49, 95, 218, 0.28); outline-offset: 2px; }
.button.primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.button.teal { color: #fff; background: var(--teal); border-color: var(--teal); }
.button.pink { color: #fff; background: var(--pink); border-color: var(--pink); }
.button svg { width: 18px; height: 18px; stroke-width: 2.2; }
.button[disabled] { opacity: 0.65; cursor: wait; transform: none; }

.tool-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.75fr);
  min-height: 548px;
  margin-top: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.map-panel { position: relative; min-height: 548px; background: #e9eef5; }
#addressMap { position: absolute; inset: 0; }
.map-overlay {
  position: absolute;
  z-index: 500;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 13px;
  color: #fff;
  background: rgba(16, 26, 59, 0.94);
  font-size: 12px;
  font-weight: 800;
}
.context-panel { display: flex; flex-direction: column; min-width: 0; border-left: 1px solid var(--line); }
.context-head { padding: 26px 26px 20px; border-bottom: 1px solid var(--line); }
.context-kicker { margin: 0 0 7px; color: var(--blue); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.context-head h2 { margin: 0; color: var(--navy); font-size: 26px; line-height: 1.08; }
.resolved { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.empty-state { display: grid; align-content: center; flex: 1; padding: 34px 28px; }
.empty-state svg { width: 34px; height: 34px; color: var(--blue); }
.empty-state h2 { margin: 18px 0 8px; color: var(--navy); font-size: 26px; }
.empty-state p { margin: 0; color: var(--muted); line-height: 1.55; }
.metric-feature { padding: 22px 26px; background: var(--blue-pale); border-bottom: 1px solid #d2dcf6; }
.metric-feature span { display: block; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.metric-feature strong { display: block; margin-top: 5px; color: var(--navy); font-size: 38px; line-height: 1; }
.metric-feature small { display: block; margin-top: 8px; color: var(--muted); line-height: 1.4; }
.radius-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.radius-metric { min-height: 100px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.radius-metric:nth-child(odd) { border-right: 1px solid var(--line); }
.radius-metric span { display: block; color: var(--muted); font-size: 12px; }
.radius-metric strong { display: block; margin-top: 6px; color: var(--navy); font-size: 28px; }
.source-note { margin-top: auto; padding: 20px 26px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.source-note a { color: var(--blue); font-weight: 800; }
.result-limit { padding: 18px 26px; color: var(--ink); background: var(--pink-pale); border-top: 1px solid #f1cddd; font-size: 12px; line-height: 1.5; }
.site-pin { width: 24px; height: 24px; background: var(--pink); border: 4px solid #fff; transform: rotate(-45deg); border-radius: 50% 50% 50% 0; box-shadow: 0 5px 14px rgba(16, 26, 59, 0.35); }
.leaflet-control-attribution { font-size: 9px; opacity: 0.72; }
.leaflet-bar a { color: var(--navy); }

.message { min-height: 20px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.message.error { color: var(--error); font-weight: 750; }
.message.success { color: var(--success); font-weight: 750; }

.band { padding: 84px 0; }
.band.white { background: #fff; }
.band.wash { background: var(--wash); }
.band.navy { color: #fff; background: var(--navy-deep); }
.section-head { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: end; margin-bottom: 38px; }
.section-kicker { color: var(--blue); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.section-head h2 { max-width: 620px; margin: 9px 0 0; color: var(--navy); font-size: clamp(34px, 5vw, 52px); line-height: 1.02; }
.section-head > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.band.navy .section-kicker { color: var(--teal); }
.band.navy .section-head h2 { color: #fff; }
.band.navy .section-head > p { color: #c9d4f1; }

.answer-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.answer { position: relative; padding: 30px; }
.answer + .answer { border-left: 1px solid var(--line); }
.answer::before { position: absolute; top: -1px; left: 0; width: 78px; height: 5px; content: ""; background: var(--blue); }
.answer:nth-child(2)::before { background: var(--teal); }
.answer:nth-child(3)::before { background: var(--pink); }
.answer svg { width: 27px; height: 27px; color: var(--navy); }
.answer h3 { margin: 19px 0 8px; font-size: 20px; }
.answer p { margin: 0; color: var(--muted); line-height: 1.55; }

.product-band { padding-top: 94px; }
.product-heading { margin-bottom: 30px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.product-panel { position: relative; min-width: 0; padding: 36px; background: #fff; }
.product-panel + .product-panel { border-left: 1px solid var(--line); }
.product-panel::before { position: absolute; inset: 0 0 auto; height: 6px; content: ""; background: var(--teal); }
.product-panel.acquisition-product::before { background: var(--pink); }
.product-icon { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; }
.product-icon.teal { background: var(--teal); }
.product-icon.pink { background: var(--pink); }
.product-icon svg { width: 24px; height: 24px; }
.product-kicker { margin: 24px 0 8px; color: var(--blue); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.acquisition-product .product-kicker { color: var(--pink); }
.product-panel h3 { max-width: 480px; margin: 0; color: var(--navy); font-size: 32px; line-height: 1.05; }
.product-panel > p:not(.product-kicker) { min-height: 76px; margin: 15px 0 0; color: var(--muted); line-height: 1.58; }
.product-proof { margin: 28px 0; border-top: 1px solid var(--line); }
.product-proof div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.product-proof dt { color: var(--muted); font-size: 13px; }
.product-proof dd { margin: 0; color: var(--navy); font-size: 13px; font-weight: 900; text-align: right; }
.product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.text-link { color: var(--blue); font-size: 13px; font-weight: 850; text-underline-offset: 4px; }
.product-note { max-width: 230px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.research-verdict { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-top: 0; }
.research-verdict div { display: flex; align-items: center; gap: 13px; min-height: 74px; padding: 18px 24px; color: var(--ink); font-size: 13px; line-height: 1.45; }
.research-verdict div + div { border-left: 1px solid var(--line); }
.research-verdict svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--teal); }
.research-verdict div + div svg { color: var(--pink); }

.contribution-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.contribution-intro > div { padding: 26px; }
.contribution-intro > div + div { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.contribution-intro strong { display: block; font-size: 18px; }
.contribution-intro span { display: block; margin-top: 8px; color: #bdc9e9; line-height: 1.5; }
.contribution-intro > div:first-child { border-top: 5px solid var(--teal); }
.contribution-intro > div:last-child { border-top: 5px solid var(--pink); }

.contribution-drawer { border: 1px solid rgba(255, 255, 255, 0.2); }
.contribution-drawer > summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 26px; color: #fff; cursor: pointer; list-style: none; font-weight: 900; }
.contribution-drawer > summary::-webkit-details-marker { display: none; }
.contribution-drawer > summary span { display: inline-flex; align-items: center; gap: 11px; }
.contribution-drawer > summary svg { width: 21px; height: 21px; color: var(--teal); }
.contribution-drawer > summary small { color: #bdc9e9; font-size: 12px; font-weight: 700; }
.contribution-drawer[open] > summary { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.contribution-drawer .research-form { border: 0; }

.research-form { color: var(--ink); background: #fff; border: 1px solid rgba(255, 255, 255, 0.24); }
.form-section { padding: 28px; border-bottom: 1px solid var(--line); }
.form-section:last-child { border-bottom: 0; }
.form-section-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.form-section-head h3 { margin: 0; color: var(--navy); font-size: 22px; }
.form-section-head p { max-width: 580px; margin: 3px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.required-tag { flex: 0 0 auto; color: var(--blue); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 18px; }
.form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-grid .full { grid-column: 1 / -1; }
.outcome-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.outcome-group { padding: 22px; }
.outcome-group + .outcome-group { border-left: 1px solid var(--line); }
.outcome-group:nth-child(1) { border-top: 5px solid var(--blue); }
.outcome-group:nth-child(2) { border-top: 5px solid var(--teal); }
.outcome-group:nth-child(3) { border-top: 5px solid var(--pink); }
.outcome-group h4 { margin: 0 0 14px; color: var(--navy); font-size: 15px; }
.outcome-group .field + .field { margin-top: 12px; }
.optional-context { border-top: 1px solid var(--line); }
.optional-context summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 21px 28px; color: var(--navy); cursor: pointer; list-style: none; font-weight: 850; }
.optional-context summary::-webkit-details-marker { display: none; }
.optional-context summary::after { content: "+"; color: var(--blue); font-size: 26px; font-weight: 500; }
.optional-context[open] summary::after { content: "-"; }
.optional-context .form-grid { padding: 0 28px 28px; }
.check-line { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.check-line + .check-line { margin-top: 13px; }
.check-line input { flex: 0 0 auto; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 28px; }
.form-submit p { max-width: 600px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 23px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--blue); font-size: 26px; font-weight: 500; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { max-width: 850px; margin: -2px 0 24px; color: var(--muted); line-height: 1.6; }

.acquisition-hero { position: relative; padding: 72px 0 58px; color: #fff; background: var(--blue); border-left: 10px solid var(--pink); }
.acquisition-hero::after { position: absolute; inset: auto 0 0 auto; width: 34%; height: 12px; content: ""; background: var(--teal); }
.acquisition-hero h1 { max-width: 880px; font-size: clamp(46px, 7vw, 76px); }
.acquisition-hero > .shell > p:last-child { max-width: 740px; margin: 22px 0 0; color: #dfe6fb; font-size: 19px; line-height: 1.55; }
.acquisition-band { padding: 58px 0 92px; background: var(--wash); }
.acquisition-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.72fr); align-items: start; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.acquisition-form { min-width: 0; }
.calculator-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; border-bottom: 1px solid var(--line); }
.calculator-head h2 { margin: 5px 0 0; color: var(--navy); font-size: 31px; }
.calculator-section { padding: 28px; border-bottom: 1px solid var(--line); }
.calculator-section:last-child { border-bottom: 0; }
.calculator-section-title { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 21px; }
.calculator-section-title > svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--blue); }
.calculator-section:nth-child(4) .calculator-section-title > svg { color: var(--pink); }
.calculator-section:nth-child(5) .calculator-section-title > svg { color: var(--teal); }
.calculator-section-title h3 { margin: 0; color: var(--navy); font-size: 20px; }
.calculator-section-title p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.acquisition-results { position: sticky; top: 86px; min-width: 0; padding: 28px; border-left: 1px solid var(--line); background: var(--navy); color: #fff; }
.result-heading h2 { margin: 5px 0 0; font-size: 31px; }
.result-heading > p:last-child { margin: 8px 0 0; color: #bdc9e9; font-size: 12px; }
.result-stack { margin-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.result-line { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.result-line span { display: block; color: #aebbdc; font-size: 11px; }
.result-line strong { display: block; margin-top: 5px; font-size: 18px; line-height: 1.25; }
.result-line.featured { margin: 0 -28px; padding: 16px 28px; background: rgba(45, 91, 215, 0.15); border-left: 5px solid var(--blue); }
.result-line.total { margin: 0 -28px; padding: 17px 28px; background: rgba(217, 87, 145, 0.13); border-left: 5px solid var(--pink); }
.result-line.total strong { font-size: 21px; }
.evidence-progress { padding: 22px 0; }
.evidence-progress > div:first-child { display: flex; justify-content: space-between; gap: 20px; color: #bdc9e9; font-size: 11px; }
.evidence-progress strong { color: #fff; }
.progress-track { height: 8px; margin-top: 10px; overflow: hidden; background: rgba(255, 255, 255, 0.15); }
.progress-track i { display: block; width: 0; height: 100%; background: var(--teal); transition: width 160ms ease; }
.market-research-note { margin: 0 -28px 24px; padding: 20px 28px; color: var(--ink); background: var(--pink-pale); border-top: 5px solid var(--pink); }
.market-research-note strong { color: var(--navy); font-size: 14px; }
.market-research-note p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.acquisition-results > .button { width: 100%; }
.acquisition-notes { padding-top: 84px; }

.site-footer { padding: 38px 0; color: #c5d0ec; background: var(--navy-deep); font-size: 13px; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 34px; }
.footer-brand { color: #fff; font-size: 18px; font-weight: 900; }
.footer-copy { max-width: 620px; margin: 8px 0 0; line-height: 1.55; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 800; }

.document-hero { padding: 70px 0 54px; color: #fff; background: var(--blue); border-left: 10px solid var(--pink); }
.document-hero h1 { max-width: 820px; font-size: clamp(44px, 7vw, 72px); }
.document-hero p { max-width: 760px; margin: 22px 0 0; color: #dce4f8; font-size: 19px; line-height: 1.55; }
.document-body { padding: 72px 0 92px; }
.document-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 70px; align-items: start; }
.document-nav { position: sticky; top: 94px; display: grid; gap: 12px; color: var(--muted); font-size: 13px; }
.document-nav a { text-decoration: none; }
.document-nav a:hover { color: var(--blue); }
.prose h2 { margin: 54px 0 16px; color: var(--navy); font-size: 32px; line-height: 1.1; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 10px; color: var(--navy); font-size: 20px; }
.prose p, .prose li { color: var(--muted); line-height: 1.65; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 21px; }
.prose li + li { margin-top: 8px; }
.callout { margin: 26px 0; padding: 20px 22px; background: var(--blue-pale); border-left: 5px solid var(--blue); }
.callout.teal { background: var(--teal-pale); border-color: var(--teal); }
.callout.pink { background: var(--pink-pale); border-color: var(--pink); }
.callout p { margin: 0; color: var(--ink); }
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.data-table th, .data-table td { padding: 13px 12px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.data-table th { color: var(--navy); background: var(--wash); }

@media (max-width: 960px) {
  .tool-shell { grid-template-columns: 1fr; }
  .map-panel { min-height: 470px; }
  .context-panel { border-left: 0; border-top: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .answer-grid, .outcome-tabs { grid-template-columns: 1fr; }
  .product-grid, .research-verdict { grid-template-columns: 1fr; }
  .product-panel + .product-panel { border-left: 0; border-top: 1px solid var(--line); }
  .research-verdict div + div { border-left: 0; border-top: 1px solid var(--line); }
  .answer + .answer, .outcome-group + .outcome-group { border-left: 0; border-top: 1px solid var(--line); }
  .outcome-group:nth-child(2), .outcome-group:nth-child(3) { border-top-width: 5px; }
  .document-layout { grid-template-columns: 1fr; gap: 34px; }
  .acquisition-layout { grid-template-columns: 1fr; }
  .acquisition-results { position: static; border-left: 0; border-top: 1px solid var(--line); }
  .document-nav { position: static; grid-template-columns: repeat(3, 1fr); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 28px, 1160px); }
  .site-nav { height: 58px; }
  .nav-links a:not(.nav-state) { display: none; }
  .hero::before { width: 6px; }
  .hero-inner { padding: 48px 0 42px; }
  h1 { font-size: 46px; }
  .hero-copy { margin-top: 18px; font-size: 17px; }
  .status-row { display: grid; gap: 9px; margin-top: 22px; }
  .screen-band { padding-bottom: 62px; }
  .address-form { grid-template-columns: 1fr; padding: 18px; }
  .address-form .button { width: 100%; }
  .tool-shell { margin-top: 18px; }
  .map-panel { min-height: 380px; }
  .context-head, .metric-feature, .source-note, .result-limit { padding-left: 20px; padding-right: 20px; }
  .radius-metric { padding: 18px 20px; }
  .band { padding: 60px 0; }
  .section-head h2 { font-size: 36px; }
  .section-head > p { font-size: 16px; }
  .answer { padding: 26px 0; }
  .answer + .answer { border-left: 0; }
  .contribution-intro { grid-template-columns: 1fr; }
  .product-panel { padding: 28px 22px; }
  .product-panel h3 { font-size: 28px; }
  .product-panel > p:not(.product-kicker) { min-height: 0; }
  .product-actions { align-items: stretch; flex-direction: column; }
  .product-actions .button { width: 100%; }
  .product-note { max-width: none; }
  .contribution-drawer > summary { padding: 21px 18px; }
  .contribution-intro > div + div { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
  .form-section { padding: 22px 18px; }
  .form-section-head { display: block; }
  .required-tag { display: block; margin-top: 8px; }
  .form-grid, .form-grid.three { grid-template-columns: 1fr; }
  .outcome-group { padding: 20px 18px; }
  .optional-context summary { padding: 20px 18px; }
  .optional-context .form-grid { padding: 0 18px 22px; }
  .form-submit { align-items: stretch; flex-direction: column; padding: 22px 18px; }
  .form-submit .button { width: 100%; }
  .footer-grid { display: grid; }
  .document-hero { padding: 50px 0 40px; border-left-width: 6px; }
  .acquisition-hero { padding: 50px 0 42px; border-left-width: 6px; }
  .acquisition-hero h1 { font-size: 43px; }
  .acquisition-hero > .shell > p:last-child { font-size: 17px; }
  .acquisition-band { padding: 24px 0 60px; }
  .calculator-head, .calculator-section { padding: 22px 18px; }
  .calculator-head { align-items: flex-start; }
  .calculator-head .button { min-width: 48px; padding: 0 13px; }
  .calculator-head .button span { display: none; }
  .acquisition-results { padding: 24px 20px; }
  .result-line.featured, .result-line.total { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .market-research-note { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .document-body { padding: 52px 0 70px; }
  .document-nav { grid-template-columns: 1fr 1fr; }
  .data-table { display: block; overflow-x: auto; }
}
