:root{
  --bg0:#070a12;
  --bg1:#0b1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.58);
  --shadow:0 18px 55px rgba(0,0,0,.45);
  --shadow2:0 10px 30px rgba(0,0,0,.35);
  --r:16px;
  --r2:22px;
  --max:1120px;
  --accent:#6a62ff;
  --accent2:#31d0ff;
  --good:#37d67a;
  --warn:#ffcc66;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% -5%, rgba(106,98,255,.28), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(49,208,255,.18), transparent 60%),
    radial-gradient(900px 500px at 50% 110%, rgba(106,98,255,.22), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }
img{ max-width:100%; display:block; }

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

.small{ font-size:12px; }
.muted{ color:var(--muted); }
.tiny{ font-size:12px; color:var(--muted2); line-height:1.45; margin-top:12px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  line-height:1;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color:var(--stroke2);
}

.btn-primary{
  border-color:rgba(106,98,255,.55);
  background: linear-gradient(135deg, rgba(106,98,255,.92), rgba(49,208,255,.78));
  color:#070a12;
  box-shadow: 0 20px 45px rgba(106,98,255,.22);
}

.btn-secondary{
  background:rgba(255,255,255,.06);
}

.btn-ghost{
  background: transparent;
  box-shadow:none;
  border-color: rgba(255,255,255,.12);
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7,10,18,.82), rgba(7,10,18,.58));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

.logo{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:12px;
  font-weight:900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
}

.brand-text{ opacity:.95; }

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-links a{
  color:rgba(255,255,255,.78);
  font-weight:600;
  font-size:13px;
}

.nav-links a:hover{ color:rgba(255,255,255,.92); }

.hero{
  padding: 56px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:stretch;
}

.hero-copy{
  padding-top: 6px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:rgba(255,255,255,.78);
  font-weight:700;
  font-size:12px;
}

.kicker .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(55,214,122,.12);
}

h1{
  margin: 14px 0 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.lead{
  margin: 14px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.mini-points{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.mini{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: 12px;
}

.mini-ic{
  width:18px;
  height:18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(55,214,122,.14);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(55,214,122,.18);
}

.hero-panel{
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(600px 300px at 70% 0%, rgba(106,98,255,.18), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.pill{
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.78);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.dots{
  display:flex;
  gap:6px;
}
.dots span{
  width:7px;height:7px;border-radius:999px;
  background: rgba(255,255,255,.14);
}

.panel-body{
  padding: 14px 16px 18px;
}

.panel-title{
  font-weight: 800;
  font-size: 12px;
  color: rgba(255,255,255,.80);
  margin-bottom: 10px;
}

.bar-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 10px 0;
}

.tag{
  width: 120px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
}

.bar{
  flex:1;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}

.fill{
  height:100%;
  width: var(--w);
  background: linear-gradient(90deg, rgba(106,98,255,.95), rgba(49,208,255,.85));
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}

.strip{
  padding: 12px 0;
  margin-top: 6px;
}

.strip-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.strip-item{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.strip-title{
  font-weight: 900;
  letter-spacing:.2px;
  font-size: 13px;
}

.strip-sub{
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.section{
  padding: 54px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.section-head h2{
  margin:0;
  font-size: 24px;
  letter-spacing:-0.01em;
}

.section-head p{
  margin:0;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.card-ic{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 10px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing:.1px;
}
.card p{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height:1.55;
  font-weight: 600;
}

.steps{
  display:grid;
  gap: 12px;
}

.step{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
}

.num{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(106,98,255,.18);
  border: 1px solid rgba(106,98,255,.22);
}

.step-title{
  font-weight: 900;
  font-size: 13px;
}
.step-sub{
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.media{
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
  padding: 14px;
  overflow:hidden;
}
.media img{
  width:100%;
  border-radius: 14px;
}

.pricing-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items:start;
}

.pricing-card{
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding: 12px;
  overflow:hidden;
}

.pricing-aside .aside-card{
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(49,208,255,.12), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.aside-card h3{ margin:0 0 8px; font-size: 14px; }
.aside-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
.checks{ margin-top: 12px; display:grid; gap:8px; color: rgba(255,255,255,.78); font-weight:700; font-size:12px; }

.faq{
  display:grid;
  gap: 10px;
  margin-top: 8px;
}

details{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
}

summary{
  cursor:pointer;
  font-weight: 900;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

details p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.55;
}

.final-cta{
  margin-top: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(600px 260px at 70% 0%, rgba(106,98,255,.16), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}

.final-cta h3{
  margin:0;
  font-size: 16px;
}
.final-cta p{
  margin:6px 0 0;
}

.footer{
  padding: 26px 0 38px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: 13px;
}

.footer-links a:hover{ color: rgba(255,255,255,.92); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .strip-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .pricing-wrap{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
}

@media (max-width: 520px){
  .container{ width: min(var(--max), calc(100% - 28px)); }
  .tag{ width: 95px; }
}