:root {
  color-scheme: dark;
  --background: #0b0d0c;
  --surface: #111411;
  --text: #f2f1eb;
  --muted: #a3aaa3;
  --quiet: #737a74;
  --accent: #9bc7a7;
  --line: #242925;
  --content-width: 70rem;
  --reading-width: 43rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: var(--quiet);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--accent);
  text-decoration-color: currentColor;
}

a:focus-visible {
  border-radius: 0.2rem;
  outline: 0.15rem solid var(--accent);
  outline-offset: 0.25rem;
}

.site-shell {
  width: min(100% - 2.5rem, var(--content-width));
  min-height: 100vh;
  margin-inline: auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header {
  min-height: 6.5rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  max-width: 58rem;
  padding: clamp(6rem, 15vw, 12rem) 0 clamp(6rem, 13vw, 10rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 2rem;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.policy {
  width: min(100%, var(--reading-width));
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.policy-heading {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.policy h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 1;
}

.policy-date {
  margin-bottom: 2rem;
  color: var(--quiet);
  font-size: 0.9rem;
}

.policy-intro {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.policy section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--line);
}

.policy h2 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy p:last-child {
  margin-bottom: 0;
}

.policy ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.policy li + li {
  margin-top: 0.55rem;
}

.policy a {
  color: var(--text);
}

.site-footer {
  min-height: 8rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 42rem) {
  .site-shell {
    width: min(100% - 2rem, var(--content-width));
  }

  .site-header {
    min-height: 5rem;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.25rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
