:root {
  --primary: #7C3AED;
  --primary-hover: #6D28D9;
  --accent: #C026D3;
  --grad: linear-gradient(135deg, #6D28D9, #C026D3);
  --bg: #09090f;
  --bg2: #0f0e1a;
  --surface: #13111f;
  --border: rgba(124,58,237,0.2);
  --text: #f0eeff;
  --muted: #9ca3af;
  --card: rgba(124,58,237,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; color: white;
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 24px; flex: 1;
}
.nav-links a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: white; }
.btn-nav {
  background: var(--grad);
  color: white; font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 20px;
  white-space: nowrap; flex-shrink: 0;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.25) 0%, transparent 70%);
}
.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  color: #c4b5fd;
  font-size: 13px; font-weight: 600;
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: white;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--grad);
  color: white; font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: 12px;
  box-shadow: 0 4px 30px rgba(124,58,237,0.5);
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-coffee {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFDD00; color: #000;
  font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255,221,0,0.3);
  transition: background 0.15s, transform 0.1s;
}
.btn-coffee:hover { background: #f5d400; transform: translateY(-2px); }
.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-n {
  font-size: 32px; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Sections ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #a78bfa;
  margin-bottom: 12px;
}
section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1px;
  color: white; margin-bottom: 14px;
}
.section-sub {
  font-size: 17px; color: var(--muted); max-width: 580px;
  margin-bottom: 56px;
}

/* ── Features ────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--bg2);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.15s;
}
.feat-card:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-3px);
}
.feat-card--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(192,38,211,0.08));
  border-color: rgba(124,58,237,0.35);
}
.feat-icon { font-size: 28px; margin-bottom: 12px; }
.feat-card h3 {
  font-size: 16px; font-weight: 700; color: white;
  margin-bottom: 8px;
}
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.feat-card p strong { color: #c4b5fd; }

/* ── How to ──────────────────────────────────────── */
.howto {
  padding: 100px 0;
}
.steps {
  display: flex; align-items: flex-start;
  gap: 16px; flex-wrap: wrap; margin-top: 48px;
}
.step {
  flex: 1; min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: white;
  margin-bottom: 16px;
}
.step h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--muted); }
.step-arrow {
  font-size: 24px; color: var(--primary);
  align-self: center; flex-shrink: 0;
  padding: 0 4px;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--bg2);
}
.faq-list {
  max-width: 720px;
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 48px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(124,58,237,0.4); }
.faq-item summary {
  padding: 18px 22px;
  font-size: 15px; font-weight: 600; color: white;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--primary); font-weight: 400; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.faq-item p a { color: #a78bfa; text-decoration: underline; }
.faq-item p code {
  background: rgba(124,58,237,0.15);
  padding: 2px 6px; border-radius: 4px;
  font-family: monospace; font-size: 13px; color: #c4b5fd;
}

/* ── CTA ─────────────────────────────────────────── */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(124,58,237,0.18) 0%, transparent 70%);
}
.cta-section p { font-size: 18px; color: var(--muted); margin-bottom: 40px; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-weight: 800; font-size: 15px; color: white; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-copy a { color: #a78bfa; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: white; }

/* ── Legal pages ─────────────────────────────────── */
.legal-page {
  max-width: 760px; margin: 80px auto; padding: 0 24px 80px;
}
.legal-page h1 {
  font-size: 38px; font-weight: 800; letter-spacing: -1px;
  color: white; margin-bottom: 8px;
}
.legal-page .updated {
  font-size: 13px; color: var(--muted); margin-bottom: 48px;
}
.legal-page h2 {
  font-size: 20px; font-weight: 700; color: white;
  margin: 36px 0 10px;
}
.legal-page p, .legal-page li {
  font-size: 15px; color: var(--muted); line-height: 1.8;
}
.legal-page ul { padding-left: 22px; margin-top: 8px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: #a78bfa; text-decoration: underline; }
.legal-page strong { color: #e0d7ff; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .feat-card--wide { grid-column: span 1; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; }
}
