:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5c6760;
  --line: #d9dfdb;
  --paper: #f7f8f5;
  --white: #ffffff;
  --accent: #1f7a5a;
  --accent-dark: #11543d;
  --shadow: 0 24px 80px rgba(23, 32, 28, 0.16);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
}

.brand {
  font-weight: 760;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}

nav a:hover {
  color: var(--white);
}

.hero {
  min-height: 88svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 22, 17, 0.82) 0%, rgba(11, 22, 17, 0.72) 38%, rgba(11, 22, 17, 0.18) 100%),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=2200&q=82") center / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28svh;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), rgba(247, 248, 245, 0));
}

.hero-content {
  width: min(720px, calc(100% - 40px));
  margin: 0 0 clamp(72px, 12vh, 140px) clamp(20px, 7vw, 96px);
  color: var(--white);
  animation: rise 720ms ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7ee0b6;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: 112px;
}

h2 {
  font-size: 58px;
  max-width: 820px;
}

.lede {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 720;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: #e9fff5;
  color: #0d3e2d;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.summary {
  width: min(1120px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.summary > div {
  min-height: 112px;
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.summary strong {
  font-size: 21px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}

.two-column,
.policy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 96px);
}

.copy {
  color: var(--muted);
  font-size: 18px;
}

.copy p:first-child {
  margin-top: 0;
}

.facts {
  margin: 34px 0 0;
  display: grid;
  gap: 1px;
  background: var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  background: var(--paper);
  padding: 16px 0;
}

.facts dt {
  color: var(--ink);
  font-weight: 760;
}

.facts dd {
  margin: 0;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.small {
  font-size: 15px;
}

.document {
  padding-top: 112px;
}

.document-page .site-header {
  color: var(--ink);
}

.document-page nav a {
  color: var(--muted);
}

.document-page nav a:hover {
  color: var(--ink);
}

.doc-hero,
.policy-text {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.doc-hero {
  padding: 84px 0 54px;
}

.doc-hero h1 {
  color: var(--ink);
  font-size: 76px;
}

.doc-hero .lede {
  color: var(--muted);
}

.policy-text {
  padding-bottom: 110px;
  font-size: 18px;
  color: var(--muted);
}

.policy-text h2 {
  margin-top: 54px;
  font-size: 38px;
  color: var(--ink);
}

.policy-text ul {
  padding-left: 22px;
}

.policy-text li + li {
  margin-top: 10px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 22px 20px;
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    margin: 0 20px 74px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 36px;
  }

  .lede {
    font-size: 19px;
  }

  .summary,
  .two-column,
  .policy-band {
    grid-template-columns: 1fr;
  }

  .summary {
    margin-top: 0;
    width: 100%;
  }

  .section {
    width: calc(100% - 40px);
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .doc-hero h1 {
    font-size: 48px;
  }

  .policy-text h2 {
    font-size: 30px;
  }
}
