:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #e95f5f;
  --border: #27272a;
  --max: 42rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

header.site {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.brand {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

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

.brand a:hover {
  color: var(--accent);
  text-decoration: none;
}

nav.legal-nav {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
}

nav.legal-nav a {
  color: var(--muted);
}

nav.legal-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.meta {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  font-family: system-ui, -apple-system, sans-serif;
}

p,
ul {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35rem;
}

footer.site {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.card-list li {
  margin: 0 0 0.75rem;
}

.card-list a {
  display: block;
  padding: 1rem 1.125rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 500;
}

.card-list a:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.card-list span {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.support-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-family: system-ui, -apple-system, sans-serif;
}

.support-box strong {
  color: var(--text);
}
