:root{
  --primary:#6D28D9;
  --secondary:#06B6D4;
  --accent:#F59E0B;
  --bg:#0B1220;
  --surface:#0F1A33;
  --card:#121F3F;
  --text:#E5E7EB;
  --muted:#9CA3AF;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 28px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(109,40,217,.25), transparent 55%),
              radial-gradient(1000px 600px at 80% 20%, rgba(6,182,212,.22), transparent 55%),
              radial-gradient(900px 500px at 55% 90%, rgba(245,158,11,.15), transparent 55%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
.bg-glow{
  position:fixed; inset:-240px -240px auto auto;
  width:520px; height:520px;
  background: radial-gradient(circle at 30% 30%, rgba(109,40,217,.9), transparent 60%);
  filter: blur(70px);
  opacity:.35;
  pointer-events:none;
  z-index:-1;
}
.container{max-width:1100px; margin:0 auto; padding:22px}
a{color:inherit; text-decoration:none}
.muted{color:var(--muted)}
.small{font-size:12px}
.sep{opacity:.5; padding:0 8px}

.topbar{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  position:sticky; top:0;
  backdrop-filter: blur(14px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
  z-index:30;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px;
  border-radius:14px;
  font-weight:800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.brandText{display:flex; flex-direction:column; line-height:1.1}
.siteName{font-weight:800}
.tagline{font-size:12px; color:var(--muted)}
.nav{display:flex; align-items:center; gap:14px}
.nav a{opacity:.9}
.nav a:hover{opacity:1}
.pill{
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  padding:26px 0 8px;
}
.hero h1{font-size:44px; line-height:1.05; margin:0 0 10px; letter-spacing:-.02em}
.hero p{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6}
.heroCtas{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
  font-weight:700;
  transition: transform .12s ease, opacity .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: rgba(255,255,255,.10);
}
.btn.ghost{
  background: rgba(255,255,255,.06);
}

.trust{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.heroArt{display:flex; align-items:center; justify-content:center}
.glassCard{
  width:100%;
  max-width:440px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding:16px;
  position:relative;
  overflow:hidden;
}
.glassCard:before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(109,40,217,.35), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(6,182,212,.25), transparent 55%);
  transform: rotate(18deg);
}
.glassCard > *{position:relative}
.miniTitle{font-weight:800; margin-bottom:10px}
.miniList{display:grid; gap:10px}
.miniItem{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:12px;
  border-radius:16px;
  background: rgba(15,26,51,.7);
  border:1px solid rgba(255,255,255,.08);
}
.miniFooter{margin-top:12px; font-size:12px; color:var(--muted)}

.section{padding:26px 0}
.sectionHead h2{margin:0 0 6px; font-size:26px}
.sectionHead p{margin:0; color:var(--muted); line-height:1.6}

.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius: var(--radius);
  background: rgba(18,31,63,.74);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 44px rgba(0,0,0,.35);
  overflow:hidden;
}
.cardTop{
  padding:14px 14px 0;
  display:flex; gap:10px; align-items:center; justify-content:space-between;
}
.badge{
  font-size:12px; font-weight:800;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.25);
  color: #FFD28A;
}
.cardImg{
  height:170px;
  margin:12px 14px 0;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.cardImg img{width:100%; height:100%; object-fit:cover}
.cardBody{padding:14px}
.cardTitle{font-size:18px; font-weight:800; margin:0 0 6px}
.cardMeta{display:flex; gap:10px; flex-wrap:wrap; font-size:12px; color:var(--muted)}
.pill2{
  padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.cardDesc{margin:10px 0 12px; color:var(--muted); line-height:1.55}
.features{display:flex; flex-wrap:wrap; gap:8px; margin:0 0 14px; padding:0; list-style:none}
.features li{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(6,182,212,.10);
  border: 1px solid rgba(6,182,212,.18);
}
.cardBottom{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:0 14px 14px;
}
.price{
  font-size:20px; font-weight:900;
  background: linear-gradient(135deg, var(--accent), rgba(255,255,255,.8));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.footer{
  padding:22px 0 46px;
  display:flex; align-items:center; justify-content:center;
  color:var(--muted);
  gap:8px;
  text-align:center;
  flex-wrap:wrap;
}
.faq{display:grid; gap:10px; margin-top:14px}
details{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:12px 14px;
}
summary{cursor:pointer; font-weight:800}
details > div{margin-top:10px; color:var(--muted); line-height:1.6}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr; }
  .grid{grid-template-columns: repeat(2, 1fr);}
  .nav{display:none}
}
@media (max-width: 560px){
  .hero h1{font-size:36px}
  .grid{grid-template-columns: 1fr;}
}
