:root {
  --bg: #000000;
  --surface: #111111;
  --surface-border: #222222;
  --text: #ffffff;
  --text-secondary: #999999;
  --text-tertiary: #555555;
  --accent: #ed1f24;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
}

nav .container {
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); opacity: 1; }

/* Hero */
.hero {
  padding: 120px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

.hero-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Legal */
.legal {
  padding: 100px 0 60px;
}

.legal h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.legal .date {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal p, .legal ul {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 18px;
}

.legal ul li {
  margin-bottom: 6px;
}

/* Footer */
footer {
  border-top: 1px solid var(--surface-border);
  padding: 32px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-tertiary);
  font-size: 12px;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 11px;
  color: var(--text-tertiary);
}

@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
}
