
:root {
  --bg: #08080D;
  --bg-elevated: #0F0F18;
  --text: #FFFFFF;
  --text-secondary: #B0B0C8;
  --text-tertiary: #9494B0;
  --border: rgba(255,255,255,0.06);
  --accent: #6C5CE7;
  --accent-bright: #A78BFA;
  --font-display: 'League Spartan', sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  background: var(--bg);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 720px; margin: 0 auto; padding: 80px 24px 120px; }
h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.subtitle {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-bottom: 48px;
}
h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-top: 48px;
  margin-bottom: 16px;
}
p { margin-bottom: 16px; max-width: 65ch; }
strong { color: var(--text); }
a { color: var(--accent-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 40px;
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); text-decoration: none; }
