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

:root {
  --bg: #050505;
  --text: #f0f0f0;
  --accent: #d4ff00;
  --muted: #888;
  --border: #1a1a1a;
  --card-bg: #0c0c0c;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Nav */
nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
}

.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Main */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; color: var(--text); }
p.muted { color: var(--muted); }

ul, ol {
  margin: 0 0 1rem 1.25rem;
  color: var(--text);
}

li { margin-bottom: 0.35rem; }

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.hero .tagline {
  font-size: 1.35rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero .desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cta-line {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2.5rem;
}

/* Legal pages */
.legal h1 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.legal .updated { color: var(--muted); font-size: 0.875rem; margin-bottom: 2rem; }
.legal h2 { color: var(--accent); font-size: 1.1rem; margin-top: 2rem; }
.legal p, .legal li { font-size: 0.925rem; color: #ccc; }
.legal strong { color: var(--text); }

/* Support */
.support-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.support-section h3 {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 1rem;
}

.support-section p,
.support-section li {
  font-size: 0.925rem;
  color: #ccc;
}

/* Footer */
footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: var(--muted); font-size: 0.8rem; }
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 2.25rem; }
  .hero .tagline { font-size: 1.1rem; }
  .features { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  nav { padding: 1rem 1rem 0; }
  main { padding: 2rem 1rem 3rem; }
  footer { padding: 1.5rem 1rem; }
}
