:root {
  color-scheme: light;
  --ink: #091313;
  --muted: #536164;
  --line: rgba(9, 19, 19, 0.11);
  --soft: #f7fbfa;
  --teal: #18a090;
  --teal-bright: #69d7cb;
  --plum: #351b3d;
  --white: #fffefd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(24, 160, 144, 0.82);
  outline-offset: 3px;
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  margin-inline: auto;
  width: min(1160px, calc(100% - 2rem));
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(9, 19, 19, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 4.75rem;
  padding: 0.75rem max(1rem, calc((100vw - 1160px) / 2));
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  height: 2.75rem;
  object-fit: contain;
  width: 3rem;
}

.brand span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-size: 1rem;
  font-weight: 950;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 750;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 0.2rem;
}

.site-header nav a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0.7rem 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.header-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  line-height: 1;
  min-height: 3rem;
  padding: 0.95rem 1.2rem;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, #081414 0%, #123335 46%, #0d6f66 100%);
  border: 1px solid rgba(219, 228, 230, 0.58);
  box-shadow: 0 14px 42px rgba(24, 160, 144, 0.2);
  color: white;
}

.button-secondary {
  background: rgba(9, 19, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: white;
}

.button:hover,
.header-cta:hover {
  box-shadow: 0 16px 46px rgba(9, 19, 19, 0.2);
  transform: translateY(-1px);
}

.hero {
  align-items: end;
  background: var(--ink);
  color: white;
  display: flex;
  isolation: isolate;
  min-height: clamp(41rem, 84svh, 50rem);
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(3rem, 7vw, 5.5rem);
  position: relative;
}

.trust-hero {
  background:
    radial-gradient(circle at 84% 12%, rgba(105, 215, 203, 0.22), transparent 24rem),
    linear-gradient(135deg, #091313 0%, #152425 48%, #351b3d 100%);
  color: white;
  padding-block: clamp(7rem, 12vw, 10rem) clamp(4rem, 8vw, 7rem);
}

.trust-hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 1rem 0 0;
  max-width: 12ch;
}

.hero-image,
.hero-shade,
.hero-grid {
  inset: 0;
  position: absolute;
}

.hero-image {
  filter: saturate(1.06) contrast(1.08);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
  width: 100%;
  z-index: -3;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 19, 19, 0.97) 0%, rgba(9, 19, 19, 0.84) 52%, rgba(9, 19, 19, 0.58) 100%),
    linear-gradient(180deg, rgba(9, 19, 19, 0.18), rgba(53, 27, 61, 0.72));
  z-index: -2;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(105, 215, 203, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 215, 203, 0.1) 1px, transparent 1px);
  background-size: 4.4rem 4.4rem;
  opacity: 0.56;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark .eyebrow,
.final-cta .eyebrow {
  color: var(--teal-bright);
}

.hero h1 {
  font-size: clamp(3.8rem, 11vw, 8.4rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 1rem 0 0;
  max-width: 11ch;
}

.hero-lead {
  color: white;
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 1.5rem 0 0;
  max-width: 20ch;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  font-weight: 650;
  line-height: 1.65;
  margin: 1.45rem 0 0;
  max-width: 49rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-proofbar {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 7vw, 5rem);
  max-width: 58rem;
  padding-top: 1rem;
}

.hero-proofbar span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section.white {
  background: white;
}

.section.soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(24, 160, 144, 0.08), transparent 28rem),
    var(--soft);
}

.section.dark,
.final-cta {
  background:
    radial-gradient(circle at 85% 15%, rgba(105, 215, 203, 0.2), transparent 26rem),
    linear-gradient(135deg, #091313 0%, #152425 46%, #351b3d 100%);
  color: white;
}

.section-head {
  max-width: 58rem;
}

.section-head h2,
.split h2,
.final-cta h2 {
  font-size: clamp(2.3rem, 6vw, 5rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 1rem 0 0;
}

.section-head p:not(.eyebrow),
.split p,
.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
  font-weight: 650;
  line-height: 1.65;
  margin: 1.35rem 0 0;
}

.dark .section-head p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.process-grid article,
.entry-grid a,
.faq-list article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(9, 19, 19, 0.07);
  padding: 1.35rem;
}

.card h3,
.process-grid h3,
.entry-grid strong,
.faq-list h3 {
  color: var(--ink);
  display: block;
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.card p,
.process-grid p,
.entry-grid span,
.faq-list p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 620;
  line-height: 1.6;
  margin: 0.85rem 0 0;
}

.split {
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.82fr 1.18fr;
}

.comparison {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  background: white;
  display: grid;
  grid-template-columns: 0.62fr 1fr 1fr;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row > * {
  border-left: 1px solid rgba(9, 19, 19, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
  padding: 1rem;
}

.comparison-row > :first-child {
  border-left: 0;
}

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

.comparison-head {
  background: var(--ink);
}

.comparison-head span {
  color: white;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.95);
}

.process-grid span {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--teal-bright);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 950;
  height: 2.1rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 2.1rem;
}

.entry-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.district-map {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.district-map article {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(9, 19, 19, 0.07);
  display: grid;
  gap: 0.7rem;
  min-height: 12rem;
  padding: 1.35rem;
}

.district-map strong {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.08;
}

.district-map span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.6;
}

.entry-grid a {
  display: flex;
  flex-direction: column;
  min-height: 14rem;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.entry-grid a:hover {
  border-color: rgba(24, 160, 144, 0.55);
  box-shadow: 0 22px 58px rgba(9, 19, 19, 0.1);
  transform: translateY(-2px);
}

.entry-grid span {
  margin-top: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

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

.status-stack {
  display: grid;
  gap: 0.8rem;
}

.status-stack article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(9, 19, 19, 0.06);
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.status-stack strong {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.status-stack span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.45;
}

.trust-good {
  border-color: rgba(24, 160, 144, 0.35);
}

.trust-watch {
  border-color: rgba(96, 56, 104, 0.32);
}

.final-cta {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.final-cta h2 {
  max-width: 12ch;
}

.final-cta p:not(.eyebrow) {
  max-width: 48rem;
}

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding-block: 2rem;
}

.final-mail-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.6;
  margin: 1rem auto 0;
  max-width: 52rem;
}

.footer-grid {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.footer-grid strong {
  font-size: 1rem;
  font-weight: 950;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
  margin: 0.4rem 0 0;
  max-width: 44rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
}

@media (max-width: 1050px) {
  .site-header {
    align-items: start;
    flex-wrap: wrap;
  }

  .site-header nav {
    flex-wrap: wrap;
    order: 3;
    width: 100%;
  }

  .card-grid.four,
  .card-grid.three,
  .district-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-grid,
  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .site-header {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 1fr;
    padding-inline: 0.75rem;
  }

  .brand {
    justify-self: start;
  }

  .site-header nav {
    display: grid;
    gap: 0.45rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    order: 2;
    width: 100%;
  }

  .site-header nav a {
    border: 1px solid rgba(255, 255, 255, 0.13);
    min-height: 2.5rem;
    padding: 0.55rem 0.35rem;
    text-align: center;
    white-space: normal;
  }

  .header-cta {
    order: 3;
    width: 100%;
  }

  .hero {
    min-height: 44rem;
  }

  .hero-proofbar,
  .card-grid.four,
  .card-grid.three,
  .district-map,
  .process-grid,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > * {
    border-left: 0;
    border-top: 1px solid rgba(9, 19, 19, 0.08);
  }

  .comparison-row > :first-child {
    border-top: 0;
  }

  .footer-grid {
    align-items: start;
    flex-direction: column;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}
