:root {
  --ink: #0b1714;
  --ink-2: #142720;
  --green: #047857;
  --green-2: #10b981;
  --cyan: #0891b2;
  --blue: #2563eb;
  --amber: #f59e0b;
  --coral: #ef4444;
  --cream: #f7fbf7;
  --paper: #ffffff;
  --line: #dce8e2;
  --muted: #62746c;
  --shadow: 0 18px 44px rgba(13, 41, 32, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f4f8f6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 232, 226, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #fff;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #31463e;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #eaf7f1;
  color: var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-cta {
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 16, 0.92) 0%, rgba(6, 20, 16, 0.82) 36%, rgba(6, 20, 16, 0.35) 74%, rgba(6, 20, 16, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 20, 16, 0.25), rgba(6, 20, 16, 0.62));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 76px;
  color: #fff;
}

.eyebrow,
.section-heading p,
.section-kicker {
  margin: 0 0 12px;
  color: #0f8f68;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a8f5d4;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--amber);
}

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

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: #d9eee7;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.btn {
  padding: 0 18px;
  font-size: 15px;
}

.btn-primary {
  background: var(--green-2);
  color: #042019;
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.28);
}

.btn-primary:hover {
  background: #38d99a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-wide {
  width: 100%;
  color: #042019;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.status-row div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.status-row strong,
.status-row span {
  display: block;
}

.status-row strong {
  font-size: 16px;
}

.status-row span {
  color: #b7d5cc;
  font-size: 13px;
}

.quick-strip {
  width: min(1180px, calc(100% - 48px));
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: #204238;
  font-weight: 850;
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip i {
  color: var(--green);
  font-size: 22px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 28px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin-bottom: 16px;
  color: #10251f;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #10251f;
  font-size: 20px;
  line-height: 1.18;
}

.muted,
.feature-card p,
.update-card p,
.faq-preview p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 28px;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(13, 41, 32, 0.06);
}

.feature-card i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: #fff;
  font-size: 24px;
}

.feature-card.green i {
  background: var(--green);
}

.feature-card.amber i {
  background: var(--amber);
}

.feature-card.blue i {
  background: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #213a32;
  font-weight: 700;
}

.check-list i {
  color: var(--green);
  font-size: 20px;
  margin-top: 1px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 900;
}

.download-panel {
  padding: 24px;
  border: 1px solid #b9ead7;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #ecfff6 100%);
  box-shadow: var(--shadow);
}

.panel-top,
.download-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.panel-top {
  margin-bottom: 24px;
}

.panel-top span,
.download-meta small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.panel-top strong {
  color: var(--green);
}

.progress-track {
  height: 10px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 99px;
  background: #d8ede4;
}

.progress-track span {
  display: block;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber));
}

.download-meta {
  margin-bottom: 24px;
}

.download-meta strong {
  display: block;
  color: #10251f;
}

.authority {
  padding-bottom: 0;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.topic-list a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 18px rgba(13, 41, 32, 0.05);
}

.topic-list i {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: #e8f8f2;
  color: var(--green);
  font-size: 24px;
}

.topic-list strong,
.topic-list small {
  display: block;
}

.topic-list small {
  margin-top: 4px;
  color: var(--muted);
}

.updates-and-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  padding-bottom: 92px;
}

.update-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.update-card h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 99px;
  background: rgba(245, 158, 11, 0.16);
  color: #f9d28a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.update-card .text-link {
  color: #7ee7bd;
}

.faq-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: #142720;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin: -6px 24px 22px;
}

.faq-item.active p {
  display: block;
}

.faq-item.active i {
  transform: rotate(180deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 44px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #365247;
  font-weight: 800;
}

.page-hero {
  padding: 90px 0 42px;
  background: var(--ink);
  color: #fff;
}

.page-hero .wrap,
.content-wrap {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
}

.page-hero p {
  max-width: 680px;
  color: #d1eee5;
  font-size: 18px;
}

.content-wrap {
  display: grid;
  gap: 18px;
  padding: 54px 0 86px;
}

.content-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.content-card h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fcfa;
}

.step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 4px;
    padding: 0 0 18px;
  }

  .site-nav.open a {
    padding: 12px;
    background: #f0faf5;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content,
  .section,
  .quick-strip,
  .page-hero .wrap,
  .content-wrap {
    width: min(100% - 32px, 720px);
  }

  .status-row,
  .quick-strip,
  .feature-grid,
  .split,
  .topic-list,
  .updates-and-faq,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -24px;
  }

  .quick-strip a {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip a:last-child {
    border-bottom: 0;
  }

  .download-panel {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding: 30px 20px;
  }

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

@media (max-width: 560px) {
  .hero-content {
    padding-top: 72px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .panel-top,
  .download-meta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-card,
  .update-card,
  .content-card {
    padding: 22px;
  }
}
