:root {
  color-scheme: dark;
  --ink: #061412;
  --card: #0b2420;
  --line: #1f5a50;
  --ice: #f3fbf9;
  --muted: #92aaa5;
  --aqua: #33f0d0;
  --gold: #f5c842;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ice);
  background:
    radial-gradient(circle at 20% 0%, rgba(51, 240, 208, 0.18), transparent 32rem),
    linear-gradient(180deg, #08201c 0%, var(--ink) 48%, #030907 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 10px;
  color: var(--aqua);
  font-size: 22px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lede {
  max-width: 620px;
  color: var(--ice);
  font-size: 22px;
}

.updated {
  color: var(--gold);
}

a {
  color: var(--aqua);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 36, 32, 0.72);
  color: var(--ice);
  font-weight: 700;
  text-decoration: none;
}

ul {
  padding-left: 22px;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 760px);
    padding: 48px 0;
  }

  p,
  li {
    font-size: 16px;
  }

  .links {
    flex-direction: column;
  }
}
