:root {
  --bg: #0b0f1a;
  --bg-alt: #111827;
  --card: #151c2c;
  --border: #24304a;
  --text: #e7ecf5;
  --muted: #9aa7bd;
  --aurora-1: #5eead4;
  --aurora-2: #818cf8;
  --aurora-3: #f472b6;
  --accent: #5eead4;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 640px; }
.center { text-align: center; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 700; color: var(--text); text-decoration: none;
}
.logo-mark {
  width: 22px; height: 22px; border-radius: 7px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
  display: inline-block;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  border-radius: 10px; padding: 12px 24px; font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  color: #0b0f1a;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(94, 234, 212, 0.25); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--aurora-1); }
.btn-small { padding: 8px 16px; font-size: 0.9rem; background: var(--card); color: var(--text) !important; border: 1px solid var(--border); }
.btn-small:hover { border-color: var(--aurora-1); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }

/* Hero */
.hero { position: relative; padding: 110px 0 90px; overflow: hidden; }
.eyebrow {
  color: var(--aurora-1); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.82rem; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 22px; }
.grad {
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: 1.2rem; color: var(--muted); max-width: 620px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { color: var(--muted); font-size: 0.9rem; }
.aurora {
  position: absolute; top: -220px; right: -180px; width: 640px; height: 640px;
  background:
    radial-gradient(closest-side, rgba(94, 234, 212, 0.16), transparent 65%),
    radial-gradient(closest-side, rgba(129, 140, 248, 0.14), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

/* Stats */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px; padding: 34px 24px; text-align: center;
}
.stats-grid strong { display: block; font-size: 1.5rem; color: var(--aurora-1); }
.stats-grid span { color: var(--muted); font-size: 0.9rem; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 18px; }
.section-lede { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin-bottom: 40px; }

/* Cards & grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card a { color: var(--aurora-1); }
.card-icon { font-size: 1.6rem; margin-bottom: 14px; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.steps li { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  color: #0b0f1a; font-weight: 700; margin-bottom: 16px;
}
.steps h3 { margin-bottom: 10px; }
.steps p { color: var(--muted); font-size: 0.97rem; }

/* Pricing */
.pricing-grid { align-items: start; }
.price-card ul { list-style: none; margin-top: 18px; }
.price-card li { color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.price-card li:last-child { border-bottom: none; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--aurora-1); margin-top: 6px; }
.featured { border-color: var(--aurora-2); position: relative; }
.badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: #0b0f1a; background: var(--aurora-2);
  border-radius: 20px; padding: 3px 12px; margin-bottom: 12px;
}

/* Contact */
.contact { padding-bottom: 110px; }
.contact .btn { margin-top: 10px; }

/* Footer */
.footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 50px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer-copy { color: var(--muted); font-size: 0.9rem; margin-top: 8px; max-width: 320px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: var(--text); }
.footer-legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); }
.footer-legal p { color: #64748b; font-size: 0.8rem; margin-bottom: 6px; }

/* Legal pages */
.legal-page { padding: 70px 0 90px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal-updated { color: var(--muted); margin-bottom: 40px; font-size: 0.9rem; }
.legal-page h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.98rem; }
.legal-page ul { margin: 10px 0 10px 22px; }
.legal-page a { color: var(--aurora-1); }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 70px 0 60px; }
  .section { padding: 60px 0; }
}
