:root {
  --ink: #101114;
  --muted: #5c6470;
  --lime: #d4e247;
  --teal: #14838a;
  --soft: #f5f7f8;
  --line: #dde3e6;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-right: 10px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}
.navlinks a {
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #becb2f;
}
.button.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero {
  background: linear-gradient(120deg, #0b1112, #18292b);
  color: #fff;
  padding: 86px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 62px;
}
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--lime);
  font-weight: 800;
}
.hero h1 {
  font:
    800 clamp(42px, 6vw, 72px)/1.04 Outfit,
    sans-serif;
  letter-spacing: -0.03em;
  margin: 14px 0 22px;
}
.hero p {
  font-size: 19px;
  color: #dbe1e2;
  max-width: 720px;
}
.hero-card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 24px 60px #0006;
}
.hero-card h2 {
  font:
    700 27px/1.2 Outfit,
    sans-serif;
  margin: 0 0 12px;
}
.hero .hero-card p {
  color: #46505a;
}
.check {
  padding: 0;
  list-style: none;
}
.check li {
  margin: 11px 0;
  padding-left: 28px;
  position: relative;
}
.check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.section {
  padding: 76px 0;
}
.section.soft {
  background: var(--soft);
}
.section h2 {
  font:
    750 clamp(31px, 4vw, 45px)/1.14 Outfit,
    sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 820px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
}
.card h3 {
  font:
    700 22px/1.25 Outfit,
    sans-serif;
  margin: 0 0 10px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.facts {
  border-left: 4px solid var(--lime);
  background: #f8fadf;
  padding: 22px 24px;
  border-radius: 0 12px 12px 0;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}
.faq p {
  color: var(--muted);
}
.cluster a {
  color: #0b747a;
  font-weight: 750;
}
.cta {
  background: var(--lime);
  padding: 54px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta h2 {
  margin: 0;
  max-width: 670px;
}
.footer {
  background: #0d1112;
  color: #cbd2d3;
  padding: 42px 0;
  font-size: 14px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer a {
  color: #fff;
}
.source-note {
  font-size: 13px;
  color: var(--muted);
}
.status-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 38px;
}
.status-overview article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.status-overview strong {
  display: block;
  color: var(--ink);
  font-size: 29px;
  line-height: 1;
  margin-bottom: 8px;
}
.state-heading {
  margin: 36px 0 16px;
}
.state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px 24px;
}
.state-card {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.state-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.state-card h4 {
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
}
.state-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.state-card a {
  color: #0b747a;
  font-weight: 700;
}
.status-badge {
  background: #e6f4ea;
  border-radius: 999px;
  color: #176b38;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 5px 8px;
  text-transform: uppercase;
}
.state-card .status-badge:not(.pending) {
  display: none;
}
.status-badge.pending {
  background: #fff2cc;
  color: #7a5400;
}
.state-note {
  border-top: 1px solid var(--line);
  margin-top: 13px;
  padding-top: 11px;
}
.state-note summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--lime) 28%, white);
  border-left: 3px solid var(--lime);
  border-radius: 6px;
  color: #505a00;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
  padding: 5px 9px;
}
.state-note summary::-webkit-details-marker {
  display: none;
}
.state-note summary::before {
  color: #6d7800;
  content: "▸";
  font-size: 14px;
  line-height: 1;
}
.state-note[open] summary::before {
  content: "▾";
}
.state-note p {
  margin-top: 8px;
}
@media (max-width: 800px) {
  .navlinks a:not(.button) {
    display: none;
  }
  .hero {
    padding: 58px 0;
  }
  .hero-grid,
  .two,
  .grid3,
  .status-overview,
  .state-grid {
    grid-template-columns: 1fr;
  }
  .state-grid {
    padding: 4px 18px;
  }
  .hero-card {
    margin-top: 10px;
  }
  .cta,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding: 56px 0;
  }
}
