:root{
  --bg:#0b0f17;
  --panel:#111827;
  --panel-2:#0f172a;
  --text:#e5e7eb;
  --muted:#a3a3a3;
  --line:rgba(255,255,255,.10);
  --brand:#7c3aed;
  --brand2:#22c55e;
  --shadow: 0 12px 35px rgba(0,0,0,.35);
  --radius:18px;
  --radius-sm:12px;
  --max:1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 700px at 15% 0%, rgba(124,58,237,.18), transparent 55%),
              radial-gradient(900px 600px at 85% 10%, rgba(34,197,94,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

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

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip-link:focus{ left:10px; z-index:9999; }

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,23,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(34,197,94,1));
  font-weight:800;
  box-shadow: var(--shadow);
}
.brand-text{ display:flex; flex-direction:column; gap:2px; }
.muted{ color:var(--muted); font-size:0.95rem; }

.site-nav{
  display:flex; align-items:center; gap:16px;
}
.site-nav a{
  padding:8px 10px;
  border-radius:10px;
}
.site-nav a.active{
  background: rgba(124,58,237,.18);
  border:1px solid rgba(124,58,237,.35);
}
.site-nav.simple a{ padding:8px 10px; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:18px; height:2px;
  background:var(--text);
  margin:4px auto;
  border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(34,197,94,1));
  color:#071016;
  font-weight:700;
  border:0;
  cursor:pointer;
  box-shadow: var(--shadow);
}
.btn:hover{ text-decoration:none; filter:brightness(1.05); }
.btn:active{ transform:translateY(1px); }
.btn-ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.18);
  color: var(--text);
  box-shadow:none;
}
.btn-small{ padding:10px 12px; border-radius:12px; }

.hero{
  padding:48px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  margin:0 0 14px;
  font-size:.9rem;
  color:var(--muted);
}

h1{
  margin:0 0 16px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height:1.12;
}
.gradient{
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(34,197,94,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.quick-answers{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin: 16px 0 18px;
}
.qa{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 14px;
}
.qa h3{ margin:0 0 6px; font-size:1.02rem; }
.qa p{ margin:0; color: rgba(229,231,235,.92); }

.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; }
.fineprint{ margin:16px 0 0; color:var(--muted); }

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h2{ margin:0 0 10px; font-size:1.15rem; }
.checklist{ margin:0; padding-left:18px; }
.checklist li{ margin:8px 0; color: rgba(229,231,235,.92); }

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.stat{
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:12px;
  text-align:center;
}
.stat-num{ font-weight:800; font-size:1.05rem; }
.stat-label{ color:var(--muted); font-size:.9rem; }

.card-note{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
}

.section{ padding:36px 0; }
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{ margin-bottom:14px; }
.section-head h2{ margin:0 0 8px; font-size:1.6rem; }
.section-head p{ margin:0; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: rgba(229,231,235,.92); }

.steps{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:12px;
}
.steps li span{ display:block; margin-top:4px; }
.steps.compact{ gap:10px; }
.steps.compact li{ margin-bottom:2px; }

.page-hero{
  padding:34px 0 6px;
}
.page-hero h1{ margin:0 0 8px; font-size:2.2rem; }
.page-hero p{ margin:0; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.panel{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.panel h2{ margin:0 0 10px; }
.panel h3{ margin:16px 0 8px; }
.bullets{ margin:0; padding-left:18px; }
.bullets li{ margin:8px 0; color: rgba(229,231,235,.92); }

.callout{
  margin-top:14px;
  background: rgba(124,58,237,.12);
  border:1px solid rgba(124,58,237,.28);
  border-radius: var(--radius);
  padding:16px;
}
.callout h3{ margin:0 0 8px; }

.form{
  display:grid;
  gap:12px;
}
label{ display:grid; gap:6px; font-weight:600; }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(34,197,94,.6);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}

.prose h2{ margin-top:22px; }
.prose p{ color: rgba(229,231,235,.92); }

.site-footer{
  margin-top:26px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.footer-inner{
  padding:18px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a{
  color: var(--muted);
  padding:6px 8px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.footer-bottom{
  padding:12px 0 18px;
  color: var(--muted);
  font-size:.92rem;
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px){
  .nav-toggle{ display:inline-block; }
  .site-nav{
    display:none;
    position:absolute;
    right:20px;
    top:66px;
    flex-direction:column;
    align-items:stretch;
    width:min(320px, calc(100% - 40px));
    background: rgba(11,15,23,.95);
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding:10px;
    box-shadow: var(--shadow);
  }
  .site-nav.open{ display:flex; }
  .site-nav a{ padding:12px 12px; }
}
