:root {
  --teal-900: #073b3a;
  --teal-800: #075e5a;
  --teal-700: #0c7c72;
  --teal-100: #dff3ef;
  --indigo: #5570d9;
  --indigo-100: #e9edff;
  --coral: #e56b68;
  --coral-100: #fdebe9;
  --ink: #18211f;
  --muted: #65716e;
  --paper: #f6f9f8;
  --surface: #ffffff;
  --line: #dfe7e4;
  --warm: #fff8ed;
  --max: 1180px;
  --shadow: 0 14px 34px rgba(7, 59, 58, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--surface);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 4;
  padding: 17px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.home-header {
  color: var(--surface);
  background: transparent;
  border-color: rgba(255, 255, 255, .20);
}
.nav {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 20px;
  font-weight: 780;
  letter-spacing: 0;
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
  padding: 3px;
  border-radius: 12px;
  background: var(--surface);
  object-fit: contain;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 23px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--coral); }
.home-header .nav-links a:hover { color: #ffd6cf; }
.nav-cta {
  padding: 7px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.nav-cta:hover {
  color: var(--teal-900) !important;
  background: var(--surface);
  border-color: var(--surface);
}

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  isolation: isolate;
  color: var(--surface);
  background-color: var(--teal-900);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 59, 58, .98) 0%, rgba(7, 59, 58, .86) 48%, rgba(7, 59, 58, .53) 100%);
}
.hero-content {
  display: flex;
  position: relative;
  z-index: 2;
  min-height: 650px;
  max-width: 720px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 80px;
}
.hero-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .25;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%, black 100%);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow.light { color: #ffd1c7; }
.eyebrow.dark { color: var(--teal-700); }
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { font-size: clamp(58px, 8vw, 94px); }
h2 { font-size: clamp(38px, 5vw, 64px); }
h3 { font-size: 27px; }
.hero-statement {
  max-width: 590px;
  margin: 17px 0 0;
  color: #dff3ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3.4vw, 39px);
  line-height: 1.18;
}
.lede {
  max-width: 640px;
  margin: 25px 0 31px;
  color: #e2efed;
  font-size: 18px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--coral);
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { color: var(--surface); background: var(--coral); }
.button.primary:hover { background: #cf5957; border-color: #cf5957; }
.button.secondary { color: var(--surface); border-color: rgba(255, 255, 255, .70); }
.button.secondary:hover { color: var(--teal-900); background: var(--surface); border-color: var(--surface); }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 26px;
  margin: 44px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .30);
  list-style: none;
  color: #d7e8e5;
  font-size: 13px;
  font-weight: 700;
}
.hero-facts li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px 1px 0;
  background: var(--coral);
  border-radius: 50%;
}

.section { padding: 100px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 58px;
}
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 17px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.feature {
  min-height: 280px;
  padding: 27px 28px 32px;
  background: var(--surface);
  border-top: 4px solid var(--teal-700);
  box-shadow: var(--shadow);
}
.feature:nth-child(2) { border-color: var(--indigo); }
.feature:nth-child(3) { border-color: var(--coral); }
.feature-number {
  display: block;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}
.feature p { margin: 14px 0 0; color: var(--muted); }

.social-band { color: var(--surface); background: var(--teal-800); }
.social-grid {
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(340px, 1fr);
  align-items: start;
  gap: 86px;
}
.social-grid h2 { max-width: 520px; }
.social-list { border-top: 1px solid rgba(255, 255, 255, .42); }
.social-list div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .20);
}
.social-list span {
  color: #ffd1c7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.social-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}

.showcase { background: var(--warm); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 82px;
}
.showcase-copy p { max-width: 560px; color: var(--muted); font-size: 17px; }
.showcase-copy .text-link { margin-top: 18px; }
.showcase-art { position: relative; min-height: 420px; }
.showcase-art img {
  width: 72%;
  height: 390px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.showcase-note {
  position: absolute;
  right: 34%;
  bottom: 6px;
  width: min(245px, 58%);
  padding: 18px 19px;
  color: var(--ink);
  background: var(--surface);
  border-left: 4px solid var(--indigo);
  box-shadow: var(--shadow);
}
.showcase-note strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; }
.showcase-note span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.spark-band { background: var(--indigo-100); }
.spark-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 76px;
}
.spark-copy p { max-width: 570px; color: var(--muted); font-size: 17px; }
.spark-table { border-top: 1px solid rgba(85, 112, 217, .35); }
.spark-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(85, 112, 217, .22);
}
.spark-row strong { color: var(--teal-900); font-size: 16px; }
.spark-row span { color: var(--teal-800); font-weight: 800; }
.spark-note { margin-top: 15px; color: var(--muted); font-size: 13px; }

.support-band { background: var(--surface); }
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: end;
  gap: 82px;
}
.support-grid p { margin: 0 0 21px; color: var(--muted); font-size: 17px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  color: var(--ink);
  border-bottom: 2px solid var(--coral);
  font-weight: 760;
  text-decoration: none;
}
.text-link:hover { color: var(--coral); }

.site-footer {
  padding: 36px 0 44px;
  color: #c8e0dc;
  background: var(--teal-900);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px 38px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--surface); font-size: 16px; font-weight: 760; }
.footer-brand img { width: 32px; height: 32px; padding: 2px; border-radius: 9px; background: var(--surface); object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #ffd1c7; }
.copyright { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .14); }

/* Public policy and support documents. */
.doc { max-width: 860px; padding: 72px 0 96px; }
.doc .eyebrow { color: var(--teal-700); }
.doc h1 { color: var(--ink); font-size: clamp(48px, 7vw, 76px); }
.doc h2 { margin-top: 52px; color: var(--teal-800); font-size: 39px; }
.doc h3 { margin-top: 28px; color: var(--coral); font-family: inherit; font-size: 18px; font-weight: 760; line-height: 1.35; }
.doc .lede { max-width: 720px; color: var(--muted); }
.doc p, .doc li { color: var(--muted); }
.doc p { margin: 12px 0 0; }
.doc ul, .doc ol { margin: 14px 0 0; padding-left: 25px; }
.doc li + li { margin-top: 8px; }
.doc a { color: var(--teal-700); text-underline-offset: 3px; }
.doc strong { color: var(--ink); }
.toc {
  margin: 30px 0 38px;
  padding: 22px 25px 23px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  box-shadow: var(--shadow);
}
.toc h2 { margin: 0; font-family: inherit; font-size: 18px; font-weight: 780; }
.toc ol { margin: 8px 0 0; }
.toc li { margin: 4px 0; }
.notice {
  margin: 29px 0;
  padding: 19px 21px;
  color: var(--ink);
  background: var(--teal-100);
  border-left: 4px solid var(--teal-700);
}
.notice a { overflow-wrap: anywhere; }
.doc section { scroll-margin-top: 18px; }
.doc .policy-section + .policy-section { margin-top: 6px; }
.policy-source { margin-top: 34px; color: var(--muted); font-size: 13px; }
.policy-source a { font-weight: 700; }

@media (max-width: 900px) {
  .section-heading, .social-grid, .support-grid, .spark-grid, .showcase-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 0; }
  .feature-number { margin-bottom: 21px; }
  .hero-content { max-width: 680px; }
  .showcase-art { min-height: 390px; max-width: 650px; }
  .showcase-art img { width: 68%; }
}

@media (max-width: 620px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .site-header { padding: 13px 0; }
  .nav { align-items: flex-start; gap: 14px; }
  .brand span { display: none; }
  .nav-links { max-width: 280px; gap: 5px 15px; font-size: 13px; line-height: 1.4; }
  .nav-cta { padding: 6px 10px; }
  .hero { min-height: 720px; }
  .hero-content { min-height: 645px; padding-top: 34px; padding-bottom: 50px; }
  .hero::after { background: rgba(7, 59, 58, .79); }
  .lede { margin: 18px 0 24px; font-size: 16px; }
  .actions { width: 100%; }
  .button { width: 100%; }
  .hero-facts { gap: 8px 18px; margin-top: 29px; padding-top: 14px; }
  .section { padding: 65px 0; }
  .section-heading { margin-bottom: 38px; }
  .social-list div { grid-template-columns: 90px 1fr; gap: 15px; }
  .social-list strong { font-size: 20px; }
  .showcase-art { min-height: 330px; }
  .showcase-art img { width: 79%; height: 300px; }
  .showcase-note { right: 25%; width: 58%; }
  .spark-row { grid-template-columns: 1fr; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: auto; }
  .doc { padding: 54px 0 76px; }
  .doc h2 { font-size: 31px; }
  .toc { padding: 18px 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
