:root {
  --bleed-bg: #0a0a0f;
  --bleed-surface: #14141c;
  --bleed-text: #f4f4f5;
  --bleed-muted: #a1a1aa;
  --bleed-accent: #f23847;
  --bleed-border: #27272a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bleed-text);
  background: var(--bleed-bg);
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

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

.brand {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleed-muted);
  margin: 0 0 0.5rem;
}

h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--bleed-accent);
}

.subtitle {
  margin: 0.5rem 0 0;
  color: var(--bleed-muted);
  font-size: 0.95rem;
}

nav.legal-nav {
  margin-top: 1rem;
  font-size: 0.875rem;
}

nav.legal-nav a + a::before {
  content: ' · ';
  color: var(--bleed-muted);
  text-decoration: none;
}

h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bleed-text);
}

p,
li {
  color: var(--bleed-muted);
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

.card {
  background: var(--bleed-surface);
  border: 1px solid var(--bleed-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.card strong {
  color: var(--bleed-text);
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bleed-border);
  font-size: 0.8rem;
  color: var(--bleed-muted);
}

footer a {
  color: var(--bleed-muted);
}

footer a:hover {
  color: var(--bleed-accent);
}
