:root {
  --bg: #0b0c10;
  --bg-elevated: #14151d;
  --card: #1a1b26;
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f5f7;
  --text-secondary: #a9abb8;
  --text-tertiary: #6c6e7d;
  --brand: #6c63ff;
  --brand-light: #8b84ff;
  --accent-gold: #d4af6a;
  --accent-orange: #e8845c;
  --max-width: 1080px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
}

.nav-brand img { width: 28px; height: 28px; border-radius: 7px; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--text-primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: white;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.12);
  color: var(--brand-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero img.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(108, 99, 255, 0.35);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--brand-light), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* Sections */
section { padding: 72px 0; }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-header .eyebrow {
  color: var(--brand-light);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: rgba(108, 99, 255, 0.14);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  text-align: center;
  padding: 8px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 18px;
  font-size: 15px;
}

.step h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.step p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* Premium */
.premium-card {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.14), rgba(212, 175, 106, 0.08));
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.premium-price {
  font-size: 44px;
  font-weight: 800;
  margin: 8px 0;
}

.premium-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 480px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

@media (max-width: 560px) {
  .premium-list { grid-template-columns: 1fr; }
}

.premium-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.premium-list li::before {
  content: "✓";
  color: var(--brand-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* Privacy strip */
.privacy-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 760px) {
  .privacy-strip { grid-template-columns: repeat(2, 1fr); }
}

.privacy-strip div {
  padding: 24px 12px;
}

.privacy-strip .icon { font-size: 26px; margin-bottom: 10px; }
.privacy-strip h4 { font-size: 14px; margin: 0 0 6px; }
.privacy-strip p { font-size: 13px; color: var(--text-tertiary); margin: 0; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* CTA banner */
.cta-banner {
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 32px;
}

.cta-banner h2 {
  font-size: 28px;
  margin: 0 0 12px;
  font-weight: 800;
}

.cta-banner p {
  color: var(--text-secondary);
  margin: 0 0 28px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.footer-brand img { width: 22px; height: 22px; border-radius: 6px; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-top: 20px;
}

/* Legal pages */
.legal {
  padding: 64px 0 96px;
}

.legal h1 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 6px;
}

.legal .updated {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  margin: 40px 0 12px;
  font-weight: 700;
}

.legal h3 {
  font-size: 16px;
  margin: 24px 0 8px;
  font-weight: 700;
}

.legal p, .legal li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.legal ul { padding-left: 20px; }

.legal a { color: var(--brand-light); text-decoration: underline; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 32px;
}

.back-link:hover { color: var(--text-primary); }

/* Support page */
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-card .email {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-light);
  text-decoration: none;
}
