:root {
  --bg: #0a0a0a;
  --card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --green: #3ecf8e;
  --green-dim: rgba(62, 207, 142, 0.15);
  --max: 720px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 960px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

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

.logo span { color: var(--green); }

.nav { display: flex; gap: 20px; flex-wrap: wrap; }

.nav a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

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

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

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--green-dim);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.88; text-decoration: none; }

.btn-primary {
  background: var(--green);
  color: #000;
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

/* Features */
.features {
  display: grid;
  gap: 12px;
  margin: 48px 0;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Legal pages */
.page-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 8px;
}

.page-meta {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 32px 0 10px;
}

.legal p, .legal li {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.support-email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
}

footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8125rem;
}

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

@media (max-width: 600px) {
  .site-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero { padding-top: 48px; }
}
