:root {
  --ink: #10221f;
  --muted: #52605d;
  --paper: #f7faf7;
  --panel: #ffffff;
  --line: #d9e2dc;
  --green: #0a5c4a;
  --green-dark: #063c34;
  --mint: #dff2e8;
  --gold: #d9972e;
  --coral: #c75d4d;
  --shadow: 0 18px 50px rgba(16, 34, 31, 0.16);
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--green-dark);
  border-radius: 6px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(6, 31, 28, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-health-news.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 24, 22, 0.92) 0%, rgba(4, 24, 22, 0.75) 34%, rgba(4, 24, 22, 0.24) 68%),
    linear-gradient(0deg, rgba(4, 24, 22, 0.42), rgba(4, 24, 22, 0.1));
}

.hero-content {
  align-self: end;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(54px, 9vh, 96px) clamp(18px, 6vw, 84px);
  padding-top: calc(var(--header-height) + 42px);
}

.eyebrow,
.section-kicker,
.status {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.7rem, 13vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--green-dark);
  background: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--mint);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.17);
}

.medical-note {
  max-width: 620px;
  margin: 28px 0 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.76);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
}

.intro-band {
  display: flex;
  justify-content: center;
  padding: 20px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--green-dark);
}

.intro-band div {
  display: flex;
  width: min(1160px, 100%);
  gap: 12px;
}

.intro-band span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(64px, 10vw, 124px) clamp(18px, 5vw, 76px);
}

.section-split,
.checklist-layout {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
}

.section-main > p,
.section-heading > p,
.checklist-layout > div p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.fact-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.fact-card,
.coverage-card {
  min-height: 228px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(16, 34, 31, 0.07);
}

.fact-number {
  display: block;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.fact-card p,
.coverage-card p {
  margin: 0;
  color: var(--muted);
}

.coverage-section {
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.coverage-grid,
.source-links {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.coverage-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coverage-card .status {
  color: var(--coral);
}

.checklist-section {
  background: #eef5ef;
}

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

.checklist li {
  position: relative;
  padding: 18px 18px 18px 52px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 26px rgba(16, 34, 31, 0.06);
}

.checklist li::before {
  position: absolute;
  top: 19px;
  left: 18px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.source-section {
  background: var(--green-dark);
  color: #fff;
}

.source-section .section-heading > p {
  color: rgba(255, 255, 255, 0.74);
}

.source-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.source-links a {
  min-height: 86px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.source-links a:hover,
.source-links a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.76);
  background: #071b18;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: rgba(6, 31, 28, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 24, 22, 0.94) 0%, rgba(4, 24, 22, 0.78) 52%, rgba(4, 24, 22, 0.38) 100%),
      linear-gradient(0deg, rgba(4, 24, 22, 0.46), rgba(4, 24, 22, 0.1));
  }

  .section-split,
  .checklist-layout,
  .section-heading,
  .site-footer,
  .intro-band div {
    display: block;
  }

  .section-kicker {
    margin-bottom: 18px;
  }

  .fact-grid,
  .coverage-grid,
  .source-links {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .checklist {
    margin-top: 28px;
  }

  .site-footer p {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 46px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .fact-card,
  .coverage-card {
    min-height: auto;
  }
}
