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

:root {
  --bg: #08090C;
  --surface: #111318;
  --surface2: #181B22;
  --border: #1E2230;
  --text: #F0F1F5;
  --sub: #8A8F9E;
  --muted: #4A4F60;
  --purple: #7C5CFC;
  --amber: #F59E0B;
  --emerald: #10B981;
  --blue: #3B82F6;
  --pink: #EC4899;
  --violet: #8B5CF6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.logo-icon { color: var(--purple); font-size: 18px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--sub);
}
.nav-links a:hover { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-primary { background: var(--purple); color: #fff; }
.btn-secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}
.badge-soon {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  padding: 2px 6px;
  border-radius: 100px;
  letter-spacing: .5px;
}

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(124,92,252,.12);
  border: 1px solid rgba(124,92,252,.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.gradient {
  background: linear-gradient(135deg, var(--purple), #C084FC, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px;
  color: var(--sub);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
}

/* ── Strip ── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--surface);
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--sub);
}
.pill {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
}

/* ── Features ── */
.features { padding: 100px 0; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--sub);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card--purple:hover { border-color: rgba(124,92,252,.4); }
.feature-card--amber:hover  { border-color: rgba(245,158,11,.4); }
.feature-card--violet:hover { border-color: rgba(139,92,246,.4); }
.feature-card--emerald:hover{ border-color: rgba(16,185,129,.4); }
.feature-card--pink:hover   { border-color: rgba(236,72,153,.4); }
.feature-card--blue:hover   { border-color: rgba(59,130,246,.4); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.6;
}

/* ── How it works ── */
.how {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
}
.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--sub); line-height: 1.6; }
.step-arrow {
  font-size: 24px;
  color: var(--muted);
  margin-top: 30px;
  flex-shrink: 0;
}

/* ── CTA section ── */
.cta-section { padding: 100px 0; }
.cta-card {
  background: linear-gradient(135deg, rgba(124,92,252,.15), rgba(59,130,246,.1));
  border: 1px solid rgba(124,92,252,.25);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}
.cta-card h2 { margin-bottom: 12px; }
.cta-card p { color: var(--sub); margin-bottom: 32px; font-size: 17px; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--surface);
}
.footer-inner {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand p { color: var(--sub); font-size: 14px; margin-top: 8px; }
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--sub); transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Policy pages ── */
.policy-page { padding: 80px 0; max-width: 720px; }
.policy-page h1 { font-size: 36px; margin-bottom: 8px; }
.policy-date { color: var(--sub); font-size: 14px; margin-bottom: 48px; }
.policy-page h2 { font-size: 20px; font-weight: 700; margin: 40px 0 12px; }
.policy-page p, .policy-page li { font-size: 15px; color: var(--sub); line-height: 1.75; }
.policy-page ul { padding-left: 20px; margin-top: 8px; }
.policy-page li { margin-bottom: 6px; }
.policy-page a { color: var(--purple); }
.policy-page a:hover { text-decoration: underline; }

/* ── Support ── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.support-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.support-card p { font-size: 14px; color: var(--sub); line-height: 1.6; }
.support-card a { color: var(--purple); font-size: 14px; font-weight: 600; display: inline-block; margin-top: 12px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 60px; }
  .cta-card { padding: 40px 24px; }
  .step-arrow { display: none; }
  .steps { gap: 32px; }
  .footer-inner { gap: 40px; }
}
