:root {
  --purple-900: #2a0040;
  --purple-800: #3d0466;
  --purple-700: #5b0aa3;
  --purple: #7a1bff;
  --purple-300: #b18cff;
  --black: #0a0a0a;
  --ink: #121212;
  --white: #ffffff;
  --muted: #c7c7d3;
  --card: #1a1123;
  --gradient: linear-gradient(135deg, #7a1bff 0%, #b18cff 100%);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--white);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(122,27,255,0.2), transparent),
              radial-gradient(800px 600px at 100% 10%, rgba(177,140,255,0.12), transparent),
              var(--black);
}

#cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(122,27,255,0.25), rgba(122,27,255,0.12) 40%, transparent 70%);
  filter: blur(30px);
  mix-blend-mode: screen;
  opacity: 0.75;
  z-index: 5;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 0 0 2px rgba(122,27,255,.5); }
.brand-text { font-weight: 700; letter-spacing: .3px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--white); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); color: var(--white); text-decoration: none; transition: transform .08s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gradient); border-color: transparent; box-shadow: 0 10px 30px rgba(122,27,255,.35); }
.btn-ghost { background: transparent; }

.hero { padding: 72px 0 36px; background: radial-gradient(900px 500px at 60% -10%, rgba(122,27,255,0.35), transparent); }
.hero h1 { font-size: clamp(32px, 5vw, 56px); margin: 0 0 12px; line-height: 1.05; }
.hero p { color: var(--muted); font-size: clamp(16px, 2.2vw, 18px); }
.hero-img { width: 100%; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 30px 80px rgba(122,27,255,.25); }
.cta-row { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

.section { padding: 72px 0; }
.section.alt { background: linear-gradient(180deg, rgba(122,27,255,.08), transparent); }

.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v-center { align-items: center; }

@media (max-width: 860px){
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .site-header { position: static; }
}

.feature-img { width: 100%; max-width: 520px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 24px 60px rgba(122,27,255,.25); }

.card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 16px 18px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02); }
.bullet-list { margin: 0; padding-left: 18px; color: var(--muted); }
.bullet-list li { margin: 8px 0; }

.rating-row { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; background: rgba(122,27,255,.15); border: 1px solid rgba(177,140,255,.25); border-radius: 999px; }
.stars { letter-spacing: 3px; color: #ffd66b; text-shadow: 0 0 18px rgba(255,214,107,.5); }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 12px 0 0; }
.steps li { position: relative; padding-left: 44px; margin: 14px 0; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 10px; background: var(--gradient); display: grid; place-items: center; font-weight: 700; }

.emoji-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.emoji { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 10px 24px rgba(122,27,255,.25); }

.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; background: rgba(10,10,10,0.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.muted { color: var(--muted); margin: 6px 0 22px; }
.features-grid { margin-top: 16px; }
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  min-height: 160px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 10px 40px rgba(122,27,255,.15);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(177,140,255,.35);
  box-shadow: inset 0 0 0 1px rgba(177,140,255,.2), 0 18px 60px rgba(122,27,255,.28);
}
.feature-icon { font-size: 28px; margin-bottom: 8px; }


