
:root{
  --bg:#0b0d0f;
  --panel:#151a1e;
  --text:#ffffff;
  --muted:#c9d1d9;
  --green:#39FF14; /* neon */
  --green-dark:#19c700;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
}

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.nav{
  position:sticky; top:0; z-index:10;
  background:rgba(11,13,15,0.9);
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{font-weight:800; letter-spacing:.2px}
.nav a{color:var(--text); text-decoration:none; margin-left:18px; opacity:.85}
.nav a:hover{opacity:1}
.nav .btn.primary{margin-left:24px}

.hero{padding:56px 0 28px}
.hero-inner{display:grid; grid-template-columns:1.2fr 1fr; gap:36px; align-items:center}
.hero-copy h1{
  font-size:40px; line-height:1.1; margin:0 0 10px 0; font-weight:800;
}
.subtitle{color:var(--muted); margin:0 0 18px 0}
.cta-row{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.price-note{color:#9aa3ab; font-size:14px; margin-top:8px}

.video-wrapper{
  background:var(--panel);
  padding:10px; border-radius:16px; overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.3);
  aspect-ratio:16/9;
}
.video-wrapper iframe{width:100%; height:100%; border:0; border-radius:12px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:999px; font-weight:700;
  text-decoration:none; transition:transform .06s ease, opacity .2s ease, background .2s ease, color .2s ease;
  border:1px solid transparent; cursor:pointer;
}
.btn.primary{
  background:var(--green); color:#000; border-color:var(--green);
}
.btn.primary:hover{transform:translateY(-1px); filter:saturate(120%)}
.btn.ghost{
  background:transparent; color:var(--text); border-color:rgba(255,255,255,.25);
}
.btn.ghost:hover{border-color:rgba(255,255,255,.45)}

.btn.big{padding:14px 22px; font-size:18px}

section{padding:26px 0}
.what-you-get h2,.reviews h2,.faq h2{font-size:28px; margin:0 0 12px 0}
ul.benefits{list-style:none; padding:0; margin:12px 0 0 0; display:grid; gap:10px}
ul.benefits li{padding:12px 14px; background:var(--panel); border-radius:10px}
ul.benefits li span{font-weight:600}

.review-grid{display:grid; gap:14px; grid-template-columns:1fr 1fr}
.review{display:flex; gap:12px; background:var(--panel); padding:14px; border-radius:10px}
.avatar{width:36px; height:36px; border-radius:50%; background:#222; display:flex; align-items:center; justify-content:center; font-weight:800}
.fineprint{opacity:.7; font-size:13px}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr; gap:24px}
  .hero-copy h1{font-size:34px}
}
