:root{
  --bg:#0b1220;
  --text:#e8eefc;
  --muted:#a8b5d6;
  --brand:#6ee7ff;
  --brand2:#a78bfa;
  --line:rgba(255,255,255,.10);
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(167,139,250,.18), transparent 50%),
    radial-gradient(1200px 600px at 90% 10%, rgba(110,231,255,.18), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:28px 18px 72px;}

.nav{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0;}
.logo{display:flex; gap:10px; align-items:center; font-weight:900; letter-spacing:.3px;}
.mark{width:34px;height:34px;border-radius:12px; background:linear-gradient(135deg,var(--brand),var(--brand2)); box-shadow:0 10px 30px rgba(110,231,255,.18);}
.subbrand{font-size:12px;color:var(--muted);font-weight:900}

.navlinks{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.navlinks a{color:var(--muted); font-weight:850; font-size:14px; padding:10px 10px; border-radius:12px}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.navlinks a.active{background:rgba(255,255,255,.08); color:var(--text); border:1px solid var(--line)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; font-weight:1000;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#07101f; box-shadow:0 16px 40px rgba(167,139,250,.18);
  border:0; cursor:pointer;
}
.btn.secondary{background:rgba(255,255,255,.06); color:var(--text); border:1px solid var(--line); box-shadow:none;}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:950; font-size:13px;
}
.kicker span{width:8px;height:8px;border-radius:50%; background:var(--brand)}

h1{margin:16px 0 12px; font-size:44px; line-height:1.05; letter-spacing:-.8px}
@media (max-width: 520px){ h1{font-size:34px;} }
h2{margin:0; font-size:26px}
p.lead{color:var(--muted); font-size:16px; max-width:70ch}
.small{color:var(--muted); font-size:13px}

.hero{margin-top:18px; display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:stretch;}
@media (max-width: 920px){ .hero{grid-template-columns:1fr;} }
.heroLeft{padding:34px}
.heroRight{padding:22px; display:flex; flex-direction:column; gap:12px}

.mini{padding:18px; border-radius:16px; background:rgba(10,16,34,.55); border:1px solid var(--line);}
.mini h3{margin:0 0 6px; font-size:16px}
.mini p{margin:0; color:var(--muted); font-size:14px}

.ctaRow{display:flex; gap:12px; margin-top:20px; flex-wrap:wrap}

.stats{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:22px}
@media (max-width: 520px){ .stats{grid-template-columns:1fr;} }
.stat{padding:14px; border-radius:16px; background:rgba(255,255,255,.05); border:1px solid var(--line)}
.stat b{display:block; font-size:18px}
.stat small{color:var(--muted)}

section{margin-top:28px}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:12px}
.sectionHead p{margin:0; color:var(--muted); max-width:72ch}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
@media (max-width: 920px){ .grid3{grid-template-columns:1fr;} }
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 920px){ .grid2{grid-template-columns:1fr;} }

.pill{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted); font-weight:950; font-size:12px;
  background:rgba(255,255,255,.05);
}
.box{padding:20px}
.svc{padding:18px}
.svc h3{margin:10px 0 6px}
ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
li{margin:6px 0}

.hr{height:1px; background:var(--line); margin:14px 0}

.pricing{display:grid; grid-template-columns:1.1fr .9fr; gap:12px}
@media (max-width: 920px){ .pricing{grid-template-columns:1fr;} }
.priceBox{padding:20px}
.priceTag{font-size:40px; font-weight:1000; letter-spacing:-.8px; margin:0}
.badge{
  display:inline-flex; margin-top:10px; padding:8px 12px; border-radius:999px;
  border:1px solid rgba(110,231,255,.28);
  background:rgba(110,231,255,.10);
  color:var(--brand);
  font-weight:1000; font-size:13px;
}

.process{display:grid; grid-template-columns:repeat(4,1fr); gap:12px}
@media (max-width: 920px){ .process{grid-template-columns:1fr;} }
.step{padding:18px}
.num{
  width:34px; height:34px; border-radius:12px;
  background:rgba(110,231,255,.14);
  border:1px solid rgba(110,231,255,.25);
  display:flex; align-items:center; justify-content:center;
  font-weight:1000; color:var(--brand);
}

details{border:1px solid var(--line); border-radius:16px; padding:14px; background:rgba(255,255,255,.04)}
summary{cursor:pointer; font-weight:1000}
details p{color:var(--muted); margin:10px 0 0}

label{display:block; font-weight:950; font-size:13px; color:var(--muted); margin:10px 0 6px}
input, textarea{
  width:100%; padding:12px 12px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(6,10,22,.55);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}

.foot{
  margin-top:26px; padding:18px; color:var(--muted);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  border-top:1px solid var(--line);
}