:root {
  --bg: #09070f;
  --bg-soft: #141023;
  --panel: #171228;
  --text: #f5f2ff;
  --muted: #b8accf;
  --lilac: #b784ff;
  --rose: #ff6fa9;
  --cyan: #53e6ff;
  --ok: #7fffba;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 20% 0%, #1d1636 0%, var(--bg) 42%), var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.site-nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(9, 7, 15, 0.82);
  border-bottom: 1px solid rgba(183, 132, 255, 0.2);
}
.site-nav .container { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { font-weight: 700; letter-spacing: .04em; color: #fff; }
.nav-links { display: flex; gap: 14px; flex-wrap: wrap; }
.button, button {
  border: 0; border-radius: 999px; padding: 11px 18px;
  font-weight: 600; cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, var(--lilac), var(--rose));
}
.button.secondary, button.secondary {
  background: transparent; border: 1px solid rgba(255,255,255,.3);
}
.hero { padding: 72px 0 36px; }
.kicker { color: var(--rose); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.hero h1 { font-size: clamp(2rem, 6vw, 4rem); line-height: 1.05; margin: 12px 0; }
.hero p { color: var(--muted); max-width: 65ch; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(183, 132, 255, .25);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.section { padding: 28px 0; }
.section h2 { margin-top: 0; font-size: clamp(1.3rem, 4vw, 2rem); }
.pill { display:inline-block; padding:6px 12px; border-radius:999px; background: rgba(83,230,255,.12); border:1px solid rgba(83,230,255,.35); color: var(--cyan); font-size:.85rem; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.stat { padding: 14px; border-radius: 12px; background: rgba(12,10,20,.7); border: 1px solid rgba(255,255,255,.12); }
.stat strong { display:block; font-size:1.5rem; color: var(--rose); }
label { display:block; font-size:.9rem; margin: 8px 0 4px; color: var(--muted); }
input, textarea, select {
  width:100%; padding: 11px 12px; border-radius:12px;
  background: rgba(8,8,12,.8); border:1px solid rgba(255,255,255,.18); color:#fff;
}
small.muted, .muted { color: var(--muted); }
.footer { padding: 40px 0 110px; color: var(--muted); }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: rgba(15,10,25,.95); border-top: 1px solid rgba(255,255,255,.15);
}
.sticky-cta .container { display:flex; gap:10px; align-items:center; justify-content:space-between; padding:10px 0; }
.sticky-actions { display:flex; gap:8px; }
.choice-btn { width:100%; margin-top:8px; text-align:left; }
.progress { height:10px; border-radius:999px; background:#2a2244; overflow:hidden; }
.progress > span { display:block; height:100%; background:linear-gradient(90deg,var(--cyan),var(--lilac)); }
@media (max-width: 720px) {
  .sticky-cta .container { flex-direction: column; align-items: stretch; }
  .sticky-actions { width:100%; }
  .sticky-actions .button, .sticky-actions button { flex:1; text-align:center; }
}
