:root {
  --navy-950: #06283f;
  --navy-900: #082f49;
  --navy-800: #0b4268;
  --blue-100: #e8f1f5;
  --teal-700: #176d69;
  --teal-100: #dcefed;
  --gold-600: #a9803e;
  --gold-500: #c19a55;
  --gold-100: #f3e8d1;
  --paper: #f7f4ec;
  --paper-deep: #eee8dc;
  --surface: #fffdf8;
  --ink: #172635;
  --muted: #64717c;
  --line: #d7d6cf;
  --soft-line: rgba(8, 47, 73, 0.12);
  --shadow: 0 22px 60px rgba(6, 40, 63, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-950);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid #e3b65f;
  outline-offset: 3px;
}

.coverage-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  min-height: 38px;
  padding: 8px 20px;
  color: #d9e8ef;
  background: var(--navy-950);
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}

.coverage-banner strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.coverage-banner a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-weight: 800;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fd4bc;
  box-shadow: 0 0 0 4px rgba(127, 212, 188, 0.14);
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 6px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--soft-line);
  background: rgba(247, 244, 236, 0.93);
  backdrop-filter: blur(16px);
}

.home-brand {
  display: flex;
  align-items: center;
  width: clamp(250px, 26vw, 350px);
  min-width: 0;
}

.home-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 22px);
  margin-left: auto;
  color: #435463;
  font-size: 0.83rem;
  font-weight: 750;
}

.home-nav a {
  position: relative;
  padding: 10px 2px;
}

.home-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  background: var(--gold-600);
  transition: transform 160ms ease;
}

.home-nav a:hover::after,
.home-nav a:focus-visible::after,
.home-nav a.active::after {
  transform: scaleX(1);
}

.home-nav a.active {
  color: var(--navy-950);
}

.nav-note {
  display: inline-block;
  margin-left: 3px;
  border-radius: 999px;
  padding: 2px 5px;
  color: var(--muted);
  background: #e7e4dc;
  font-size: 0.56rem;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: 2px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--soft-line);
  border-radius: 4px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-950);
}

main {
  overflow: hidden;
}

.hero,
.section-shell,
.map-section,
.learn-section,
.trust-section {
  width: min(1260px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.72fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
  min-height: 680px;
  padding: clamp(64px, 8vw, 116px) 0;
}

.hero::after {
  position: absolute;
  top: 5%;
  right: -15%;
  z-index: -1;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(8, 47, 73, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(8, 47, 73, 0.018), 0 0 0 140px rgba(8, 47, 73, 0.012);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  color: var(--navy-950);
  font-weight: 500;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 6.8vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.052em;
}

h1 em {
  color: var(--teal-700);
  font-weight: 500;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 34px;
  color: #4b5d6b;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.area-finder {
  max-width: 720px;
  border: 1px solid var(--soft-line);
  padding: 20px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 12px 38px rgba(6, 40, 63, 0.06);
}

.finder-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-number {
  color: var(--gold-600);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.finder-heading strong,
.finder-heading span {
  display: block;
}

.finder-heading strong {
  color: var(--navy-950);
  font-size: 0.92rem;
}

.finder-heading div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.finder-form {
  display: grid;
  grid-template-columns: 1fr auto;
}

.finder-form input {
  width: 100%;
  min-width: 0;
  height: 54px;
  border: 1px solid #b9c1c3;
  border-right: 0;
  border-radius: 0;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  font-size: 0.92rem;
}

.finder-form input::placeholder {
  color: #88939a;
}

.finder-form button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--navy-950);
  border-radius: 0;
  padding: 0 22px;
  color: #fff;
  background: var(--navy-950);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 850;
  transition: color 150ms ease, background 150ms ease;
}

.finder-form button:hover,
.button-link:hover {
  color: var(--navy-950);
  background: var(--gold-100);
}

.finder-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.72rem;
}

.finder-actions a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area-result {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  border-left: 3px solid var(--gold-600);
  padding: 10px 12px;
  color: #354958;
  background: var(--gold-100);
  font-size: 0.77rem;
  line-height: 1.45;
}

.area-result[hidden] {
  display: none;
}

.area-result.is-available {
  border-color: var(--teal-700);
  background: var(--teal-100);
}

.area-result a {
  flex: 0 0 auto;
  color: var(--navy-950);
  font-weight: 850;
}

.coverage-card {
  position: relative;
  padding: clamp(25px, 3vw, 40px);
  color: #e4edf0;
  background:
    linear-gradient(155deg, rgba(13, 71, 89, 0.92), rgba(6, 40, 63, 0.99)),
    url("/assets/civic-building-masthead.jpg") center / cover;
  box-shadow: var(--shadow);
}

.coverage-card::before,
.coverage-card::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(8, 47, 73, 0.18);
  content: "";
  background: var(--paper-deep);
}

.coverage-card::before {
  inset: 12px -12px -12px 12px;
}

.coverage-card::after {
  inset: 23px -23px -23px 23px;
  opacity: 0.55;
}

.coverage-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #afc5ce;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(127, 212, 188, 0.28);
  padding: 5px 8px;
  color: #b9eadc;
  background: rgba(127, 212, 188, 0.08);
}

.live-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fd4bc;
}

.place-path {
  padding: 32px 0 26px;
}

.place-node {
  position: relative;
  border-left: 2px solid var(--gold-500);
  padding: 5px 0 5px 18px;
}

.place-node span,
.place-node strong {
  display: block;
}

.place-node span {
  margin-bottom: 4px;
  color: #9fb9c4;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.place-node strong {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  font-weight: 500;
}

.path-line {
  width: 1px;
  height: 24px;
  margin-left: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.county-node {
  margin-left: 28px;
}

.coverage-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.coverage-metrics div {
  padding: 18px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.coverage-metrics div:last-child {
  border-right: 0;
}

.coverage-metrics strong,
.coverage-metrics span {
  display: block;
}

.coverage-metrics strong {
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 500;
}

.coverage-metrics span {
  color: #a9bec7;
  font-size: 0.6rem;
  line-height: 1.3;
}

.coverage-card > p {
  margin: 18px 0;
  color: #a9bec7;
  font-size: 0.7rem;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.text-link span {
  color: var(--gold-500);
  font-size: 1.2rem;
}

.section-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 20px;
  color: var(--navy-950);
  font-size: 0.74rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-more-link::after {
  color: var(--gold-600);
  content: "→";
  font-size: 1rem;
}

.section-more-link-light {
  color: #fff;
}

.section-more-link-light::after {
  color: #e3bf78;
}

.section-shell,
.learn-section,
.trust-section {
  padding-block: clamp(76px, 9vw, 126px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: end;
  max-width: none;
}

.section-intro h2,
.map-copy h2,
.trust-statement h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-intro > p:not(.kicker),
.split-intro > p,
.map-copy > p,
.trust-statement > p {
  margin-bottom: 0;
  color: #566773;
  font-size: 0.98rem;
  line-height: 1.7;
}

.money-section {
  border-top: 1px solid var(--soft-line);
}

.money-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 0;
  border: 1px solid var(--soft-line);
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(6, 40, 63, 0.07);
}

.feature-record {
  padding: clamp(28px, 4vw, 52px);
  color: #dce8ec;
  background: var(--navy-900);
}

.record-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
  color: #95afba;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.active-label,
.soon-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(127, 212, 188, 0.3);
  padding: 5px 8px;
  color: #d5f4eb;
  background: rgba(127, 212, 188, 0.1);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-type {
  margin-bottom: 8px;
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-record h3 {
  max-width: 480px;
  margin: 0 0 34px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  font-weight: 500;
  line-height: 1.02;
}

.record-amount {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-block: 20px;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
}

.record-amount strong {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
}

.record-amount span {
  color: #98b0ba;
  font-size: 0.67rem;
  line-height: 1.4;
}

.record-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 28px 0;
  color: #a9bdc5;
  font-size: 0.64rem;
}

.record-flow i {
  color: var(--gold-500);
  font-style: normal;
}

.feature-record .button-link {
  border-color: var(--gold-500);
  color: var(--navy-950);
  background: var(--gold-100);
}

.record-list {
  display: flex;
  flex-direction: column;
}

.record-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  flex: 1;
  min-height: 118px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--soft-line);
  transition: background 150ms ease;
}

.record-row:hover {
  background: var(--gold-100);
}

.record-index,
.card-number {
  color: var(--gold-600);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.record-row small,
.record-row strong {
  display: block;
}

.record-row small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-row strong {
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.2;
}

.row-amount {
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 850;
  white-space: nowrap;
}

.row-amount i {
  margin-left: 8px;
  color: var(--gold-600);
  font-style: normal;
}

.view-all-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 15px 28px;
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 850;
  background: #f3f0e8;
}

.view-all-row span {
  color: var(--gold-600);
  font-size: 1.1rem;
}

.data-note {
  max-width: 920px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.55;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(40px, 7vw, 94px);
  align-items: center;
  padding-block: clamp(76px, 10vw, 144px);
}

.map-copy h2 {
  max-width: 450px;
  margin-bottom: 24px;
}

.path-example {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 28px 0 18px;
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 800;
}

.path-example span {
  border: 1px solid var(--soft-line);
  padding: 7px 9px;
  background: var(--surface);
}

.path-example i {
  color: var(--gold-600);
  font-style: normal;
}

.coming-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coming-line i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aeb5b6;
}

.map-preview {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid #c9cec9;
  background:
    linear-gradient(rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.56)),
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(8, 47, 73, 0.06) 50px),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(8, 47, 73, 0.06) 50px),
    #e8ece7;
}

.map-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(247, 244, 236, 0.15), rgba(8, 47, 73, 0.05));
}

.map-preview > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(75%, 580px);
  max-height: 360px;
  transform: translate(-50%, -53%);
  opacity: 0.72;
  filter: grayscale(0.45) sepia(0.12) drop-shadow(0 14px 20px rgba(8, 47, 73, 0.13));
}

.preview-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  border: 1px solid #b8beb9;
  padding: 6px 9px;
  color: #687570;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.map-pin {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--navy-800);
  box-shadow: 0 2px 8px rgba(6, 40, 63, 0.28);
}

.map-pin span {
  position: absolute;
  top: 16px;
  left: 4px;
  width: max-content;
  border: 1px solid rgba(8, 47, 73, 0.12);
  padding: 5px 7px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.59rem;
  font-weight: 800;
}

.pin-one { top: 38%; left: 36%; }
.pin-two { top: 54%; left: 55%; background: var(--teal-700); }
.pin-three { top: 31%; left: 67%; background: var(--gold-600); }

.map-preview-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  border-top: 1px solid #c9cec9;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.9);
  font-size: 0.62rem;
}

.map-preview-footer span:first-child {
  color: var(--navy-900);
  font-weight: 850;
}

.transparency-section {
  border-top: 1px solid var(--soft-line);
}

.preview-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(390px, 1.28fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  border: 1px solid #d0d1cb;
  padding: clamp(28px, 4vw, 50px);
  background: #eeece6;
}

.muted-preview {
  color: #68716f;
}

.muted-preview .soon-chip,
.learn-card .soon-chip,
.future-card .soon-chip {
  border-color: #c8cac5;
  color: #777e7a;
  background: #e2e1dc;
}

.preview-panel h3 {
  margin: 18px 0 10px;
  color: #56605e;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.preview-panel p {
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.criteria-preview {
  display: grid;
  gap: 18px;
}

.criteria-preview div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 14px;
  align-items: center;
  color: #727b78;
  font-size: 0.7rem;
  font-weight: 800;
}

.criteria-preview i {
  position: relative;
  display: block;
  height: 7px;
  overflow: hidden;
  background: #d4d5d0;
}

.criteria-preview i::after {
  display: block;
  width: var(--example-width);
  height: 100%;
  content: "";
  background: #a3aaa6;
}

.example-warning {
  position: absolute;
  right: clamp(28px, 4vw, 50px);
  bottom: 15px;
  color: #858b88;
  font-size: 0.58rem !important;
  font-style: italic;
}

.learn-section {
  border-top: 1px solid var(--soft-line);
}

.learn-section .section-intro > p:not(.kicker) {
  max-width: 650px;
  margin-top: 20px;
}

.learn-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.learn-card {
  border: 1px solid #d2d2cc;
  color: #66706d;
  background: #eeece6;
}

.lead-learn-card {
  grid-row: span 2;
}

.video-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 245px;
  color: #98a09d;
  background:
    linear-gradient(140deg, rgba(8, 47, 73, 0.08), rgba(169, 128, 62, 0.08)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.22) 12px 13px);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.play-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #afb5b2;
  border-radius: 50%;
  padding-left: 3px;
  color: #7e8783;
  font-size: 0.82rem;
}

.learn-card-copy,
.compact-learn-card {
  padding: 25px;
}

.learn-card h3 {
  margin: 16px 0 8px;
  color: #5c6663;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.learn-card p {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.compact-learn-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.compact-learn-card h3 {
  margin-top: 13px;
}

.centered-intro {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.centered-intro > p:not(.kicker) {
  margin-top: 18px;
}

.building-section {
  border-top: 1px solid var(--soft-line);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.future-card {
  position: relative;
  min-height: 315px;
  border: 1px solid #d1d1cb;
  padding: 26px;
  color: #69716e;
  background: #ebe9e3;
}

.future-mark {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 56px;
  height: 56px;
  border: 1px solid #c9cbc5;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.5);
}

.future-mark i {
  position: absolute;
  display: block;
}

.boards-mark .mark-node {
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #64736e;
  border-radius: 50%;
  background: #efede7;
}

.boards-mark .node-top {
  top: 8px;
  left: 23px;
}

.boards-mark .node-left {
  top: 36px;
  left: 11px;
}

.boards-mark .node-right {
  top: 36px;
  right: 11px;
}

.boards-mark .mark-branch {
  top: 23px;
  left: 15px;
  width: 26px;
  height: 17px;
  border-top: 2px solid #a7803f;
  border-right: 2px solid #a7803f;
  border-left: 2px solid #a7803f;
}

.boards-mark .mark-branch::before {
  position: absolute;
  top: -8px;
  left: 11px;
  width: 2px;
  height: 8px;
  background: #a7803f;
  content: "";
}

.bills-mark::before {
  position: absolute;
  top: 8px;
  left: 13px;
  width: 29px;
  height: 38px;
  border: 2px solid #64736e;
  border-radius: 2px;
  background: #efede7;
  content: "";
}

.bills-mark::after {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #a7803f;
  border-left: 2px solid #a7803f;
  background: #efede7;
  content: "";
}

.bills-mark .bill-line {
  z-index: 2;
  left: 20px;
  width: 17px;
  height: 2px;
  background: #88918d;
}

.bills-mark .line-one {
  top: 25px;
}

.bills-mark .line-two {
  top: 32px;
}

.bills-mark .line-three {
  top: 39px;
  width: 12px;
  background: #a7803f;
}

.lobbying-mark .dialogue-bubble {
  width: 29px;
  height: 20px;
  border: 2px solid #64736e;
  border-radius: 9px;
  background: #efede7;
}

.lobbying-mark .dialogue-bubble::after {
  position: absolute;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid #64736e;
  content: "";
}

.lobbying-mark .bubble-one {
  z-index: 1;
  top: 9px;
  left: 7px;
}

.lobbying-mark .bubble-one::after {
  left: 6px;
  border-right: 6px solid transparent;
}

.lobbying-mark .bubble-two {
  z-index: 2;
  right: 7px;
  bottom: 10px;
  border-color: #a7803f;
}

.lobbying-mark .bubble-two::after {
  right: 6px;
  border-top-color: #a7803f;
  border-left: 6px solid transparent;
}

.future-card h3 {
  margin: 50px 0 12px;
  color: #56615e;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.future-card p {
  min-height: 76px;
  margin-bottom: 26px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.future-connection {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #d1d1cb;
  color: #7a817e;
  font-size: 0.69rem;
  line-height: 1.55;
}

.future-connection strong {
  color: var(--gold-600);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-section {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(300px, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(48px, 7vw, 96px);
  overflow: hidden;
  padding-inline: max(20px, calc((100vw - 1260px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(193, 154, 85, 0.2), transparent 25%),
    linear-gradient(125deg, var(--navy-950), #0a455d);
}

.trust-section::before {
  position: absolute;
  right: -110px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.trust-statement,
.trust-links,
.trust-note {
  position: relative;
  z-index: 1;
}

.trust-statement {
  border-left: 4px solid var(--gold-500);
  padding-left: clamp(22px, 3vw, 38px);
}

.trust-statement h2 {
  max-width: 640px;
  margin-bottom: 28px;
  color: #fff;
}

.trust-statement > p:not(.kicker):not(.trust-promise) {
  max-width: 620px;
  margin: 0;
  color: #c6d6dc;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.76;
}

.trust-promise {
  width: fit-content;
  margin: 32px 0 0;
  border: 1px solid rgba(193, 154, 85, 0.72);
  padding: 11px 15px;
  color: #f1d9a9;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.trust-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 16px;
  min-height: 178px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 26px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(4px);
}

.trust-card-action {
  grid-column: 1 / -1;
  min-height: 132px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.trust-card-action:hover,
.trust-card-action:focus-visible {
  border-color: rgba(193, 154, 85, 0.78);
  background: rgba(193, 154, 85, 0.13);
  transform: translateY(-2px);
}

.trust-card span {
  grid-row: span 2;
  color: #e3bf78;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.trust-card strong {
  align-self: end;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
}

.trust-card small {
  color: #afc4cc;
  font-size: 0.74rem;
  line-height: 1.55;
}

.trust-card b {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: #e3bf78;
  font-size: 1.2rem;
}

.trust-note {
  grid-column: 2;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 20px 4px 0;
  color: #afc4cc;
  font-size: 0.72rem;
  line-height: 1.65;
}

.trust-note strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.home-footer {
  padding: 38px max(20px, calc((100% - 1260px) / 2)) 30px;
  color: #adc1ca;
  background: var(--navy-950);
}

.footer-brand {
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  display: block;
  width: clamp(280px, 34vw, 430px);
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 700px;
  margin: 30px 0;
}

.footer-links div {
  display: grid;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  font-size: 0.72rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #77919c;
  font-size: 0.63rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    width: min(620px, calc(100% - 24px));
  }

  .money-layout,
  .map-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .map-section {
    gap: 46px;
  }

  .map-copy {
    max-width: 650px;
  }

  .trust-note {
    grid-column: 1;
    margin: 0;
  }

  .future-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .coverage-banner {
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .coverage-banner span:not(.status-dot) {
    display: none;
  }

  .home-header {
    min-height: 76px;
    padding: 6px 14px;
  }

  .home-brand {
    width: clamp(185px, 58vw, 230px);
  }

  .home-brand img {
    width: 100%;
  }

  .menu-button {
    display: block;
  }

  .home-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    border-bottom: 1px solid var(--soft-line);
    padding: 8px 14px 14px;
    background: rgba(247, 244, 236, 0.98);
  }

  .home-header.menu-open .home-nav {
    display: grid;
  }

  .home-nav a {
    border-bottom: 1px solid var(--soft-line);
    padding: 13px 9px;
  }

  .hero,
  .section-shell,
  .map-section,
  .learn-section,
  .trust-section {
    width: min(100% - 28px, 1260px);
  }

  .trust-section {
    width: 100%;
    padding-inline: 20px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 82px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .finder-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .finder-form input {
    border-right: 1px solid #b9c1c3;
  }

  .finder-actions,
  .area-result,
  .record-amount,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .coverage-card {
    width: calc(100% - 14px);
    padding: 25px 20px;
  }

  .coverage-metrics {
    grid-template-columns: 1fr;
  }

  .coverage-metrics div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .coverage-metrics div:last-child {
    border-bottom: 0;
  }

  .coverage-metrics strong {
    margin-bottom: 0;
  }

  .split-intro,
  .preview-panel,
  .learn-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .trust-links {
    grid-template-columns: 1fr;
  }

  .trust-card-action {
    grid-column: auto;
  }

  .split-intro {
    gap: 22px;
  }

  .section-intro h2,
  .map-copy h2,
  .trust-statement h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .record-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 20px;
  }

  .row-amount {
    grid-column: 2;
  }

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

  .record-flow i {
    transform: rotate(90deg);
  }

  .map-preview {
    min-height: 410px;
  }

  .map-pin span {
    display: none;
  }

  .map-preview-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .criteria-preview div {
    grid-template-columns: 115px 1fr;
  }

  .example-warning {
    position: static;
    grid-column: 1;
  }

  .lead-learn-card {
    grid-row: auto;
  }

  .future-card {
    min-height: 275px;
  }

  .trust-note {
    margin-left: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
  }
}
