:root {
  color-scheme: light dark;
  --bg: #f2f2f7;
  --surface: #ffffff;
  --text: #1c1c1e;
  --muted: #6e6e73;
  --line: #d1d1d6;
  --accent: #0b57d0;
  --focus: #0b57d0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --surface: #1c1c1e;
    --text: #f2f2f7;
    --muted: #98989d;
    --line: #3a3a3c;
    --accent: #6ea8fe;
    --focus: #6ea8fe;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.5;
}

a {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.wrap {
  width: min(40rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

header.site {
  margin-bottom: 1.5rem;
}

.brand {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand a {
  color: inherit;
  text-decoration: none;
}

h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
}

.lede,
.meta,
.muted {
  color: var(--muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}

.card h2:first-child,
.card p:first-child {
  margin-top: 0;
}

ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.35rem;
}

h2 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

p {
  margin: 0.65rem 0;
}

nav.page {
  margin: 1.25rem 0 0;
}

footer.site {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--muted);
}

.disclaimer {
  margin: 1.25rem 0 0;
}

.policy-meta {
  font-size: 0.9375rem;
}

.policy-meta p {
  margin: 0.25rem 0;
}

code,
.stable-url {
  overflow-wrap: anywhere;
  word-break: break-word;
}
