:root {
  --ink: #19211d;
  --muted: #667169;
  --faint: #8b948e;
  --line: #dfe4df;
  --paper: #ffffff;
  --soft: #f8f9f6;
  --background: #f3f4f0;
  --nav: #121815;
  --green: #159665;
  --green-dark: #08764f;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

.top-nav {
  background: var(--nav);
  border-bottom: 1px solid #29332e;
}

.nav-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: #ffffff;
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.brand span {
  color: #8fe0b4;
}

.back-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid #3a4740;
  border-radius: 6px;
  padding: 7px 11px;
  color: #d9e2dc;
  font-size: 12px;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.back-link:hover {
  border-color: #67776e;
  background: #1a221e;
  color: #ffffff;
}

.legal-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 66px 0 86px;
}

.legal-kicker {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 11px 0 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 6vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.updated {
  color: var(--faint);
  font-size: 11px;
}

.intro {
  max-width: 720px;
  margin: 28px 0 46px;
  color: #4f5b54;
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

p,
li {
  color: #546159;
  font-size: 13px;
  line-height: 1.75;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 7px;
}

.source-link {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #b9d6c6;
  text-underline-offset: 3px;
}

.source-link:hover {
  color: var(--green);
  text-decoration-color: currentColor;
}

.site-footer {
  border-top: 1px solid #29332e;
  background: var(--nav);
  color: #aebdb6;
}

.site-footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  color: #d6e2dc;
  font-size: 11px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #8fe0b4;
}

.copyright {
  margin-top: 16px;
  color: #788881;
  font-size: 10px;
}

@media (max-width: 700px) {
  .nav-inner,
  .legal-shell,
  .site-footer-inner {
    width: min(100% - 32px, 880px);
  }

  .legal-shell {
    padding: 46px 0 62px;
  }

  h1 {
    font-size: 42px;
  }

  .intro {
    margin-bottom: 36px;
    font-size: 18px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .back-link {
    padding: 7px 9px;
  }
}
