:root {
  --bg-primary: #0B0B0F;
  --bg-elevated: #16161D;
  --bg-elevated-2: #1F1F29;
  --accent: #6C5CE7;
  --accent-pressed: #5842C3;
  --gold: #FFC24B;
  --text-primary: #F5F5F7;
  --text-secondary: #9A9AA5;
  --divider: #2A2A35;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

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

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--divider);
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

nav.site-nav a {
  color: var(--text-secondary);
  margin-left: 28px;
  font-size: 14px;
  font-weight: 500;
}
nav.site-nav a:hover { color: var(--text-primary); text-decoration: none; }

.hero {
  padding: 80px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--accent); }
.hero p.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent-pressed); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--divider);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--accent); background: transparent; }

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0 80px;
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}

.feature-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 28px;
}
.feature-card .icon { font-size: 28px; margin-bottom: 14px; display: block; }
.feature-card h3 { margin: 0 0 8px; font-size: 17px; }
.feature-card p { margin: 0; color: var(--text-secondary); font-size: 14px; }

footer.site-footer {
  border-top: 1px solid var(--divider);
  padding: 28px 0;
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer.site-footer a { color: var(--text-secondary); margin-right: 20px; }
footer.site-footer a:hover { color: var(--text-primary); }

.legal {
  padding: 56px 0 80px;
  max-width: 760px;
}
.legal h1 { font-size: 32px; margin-bottom: 4px; }
.legal .updated { color: var(--text-secondary); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 20px; margin-top: 36px; margin-bottom: 12px; }
.legal p, .legal li { color: #D6D6DC; font-size: 15px; }
.legal ul { padding-left: 20px; }
