:root {
  --bg: #141617;
  --surface: #202325;
  --border: #34373a;
  --text: #eeece6;
  --text-muted: #9a9d9f;
  --accent: #f2c230;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 720px; margin: 0 auto; padding: 64px 24px 80px; }
.back { display: inline-block; margin-bottom: 28px; font-size: 14px; color: var(--text-muted); }
h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 28px; }
h2 { font-size: 15px; font-weight: 700; margin: 28px 0 8px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; }
p { font-size: 15px; line-height: 1.7; color: var(--text); }
.muted { color: var(--text-muted); }
section + section { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 24px; }
.draft-banner {
  background: rgba(224,85,90,0.12); border: 1px solid #e0555a; color: #e0555a;
  border-radius: 10px; padding: 14px 16px; font-size: 13.5px; line-height: 1.6; margin-bottom: 28px;
}
.legal-links { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; display: flex; gap: 16px; }
