:root {
  color-scheme: light dark;
  --bg: #101010;
  --panel: #181818;
  --text: #f4f1ee;
  --muted: #b9b2ad;
  --accent: #e5d3bf;
  --line: #34302c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.document {
  padding-bottom: 72px;
}

.eyebrow,
.updated {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
}

h2 {
  margin: 34px 0 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

p {
  margin: 0 0 14px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
  font-weight: 700;
}
