:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.04);
  --stroke:rgba(255,255,255,.10);
  --text:#F2F5FF;
  --muted:#AAB3C5;
  --shadow: 0 18px 50px rgba(0,0,0,.42);
  --radius:18px;
  --max: 1140px;
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 540px at 12% -10%, rgba(0,230,255,.14), transparent 60%),
    radial-gradient(900px 540px at 88% -10%, rgba(124,92,255,.16), transparent 60%),
    var(--bg);
  color: var(--text);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(var(--max), calc(100% - 32px)); margin:0 auto; }
.glass{
  background: var(--panel);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.topbar{
  position:sticky; top:0; z-index:100;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.70);
  border-bottom:1px solid var(--stroke);
}
.topbar-row{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ font-weight:900; letter-spacing:.2px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  font-weight:900;
  letter-spacing:.2px;
  transform: translateY(0);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.08); }
.btn-ghost{ background: transparent; }
.btn-primary{
  border-color: rgba(0,230,255,.22);
  background: linear-gradient(135deg, rgba(0,230,255,.22), rgba(124,92,255,.22));
}
.btn-big{ padding: 14px 22px; font-size: 15px; }

.hero{ padding: 38px 0 16px; }
.hero-grid{
  display:grid; gap:16px;
  grid-template-columns: 1.08fr .92fr;
  align-items:stretch;
}
.hero-copy{ padding: 20px; }
.hero-media{ overflow:hidden; }
.hero-media img{ width:100%; height:auto; }
h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.9vw, 46px);
  line-height:1.06;
}
h2{
  margin:0;
  font-size: clamp(22px, 2.9vw, 32px);
  line-height:1.12;
}
h3{ margin:0; font-size: 18px; }
.muted{ color: var(--muted); }
.pricebox{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
}
.price{
  font-weight: 1000;
  font-size: 22px;
  margin-top: 4px;
}
.price.big{ font-size: 24px; }

.section{ padding: 30px 0; }
.section.alt{
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.015);
}
.section-head{ margin-bottom: 14px; }
.section-head.center{ text-align:center; }
.shout{
  margin-top: 8px;
  font-weight: 1000;
  letter-spacing:.6px;
  text-transform: uppercase;
  color: rgba(0,230,255,.9);
}
.shout.small{ font-size: 13px; }
.kicker{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(0,230,255,.25);
  color: rgba(0,230,255,.9);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.proof-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.proof-grid .tile{
  overflow:hidden;
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
}
.proof-grid .tile img{
  width:100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.how-grid{
  display:grid; gap: 14px;
  grid-template-columns: 1.05fr .95fr;
  align-items:start;
}
.steps{ display:grid; gap:10px; }
.step{
  padding: 14px;
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
}
.step .t{ font-weight: 1000; }
.step .d{ margin-top: 6px; color: var(--muted); }
.how-media{ overflow:hidden; }
.how-media img{ width:100%; height:auto; }
.cta-row{ margin-top: 14px; }
.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.accordion{ display:grid; gap:10px; }
.accordion details{
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  padding: 12px 14px;
}
.accordion summary{ cursor:pointer; font-weight: 1000; outline:none; }
.accordion p{ margin: 10px 0 0; color: var(--muted); }
.two{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.pad{ padding: 14px; }
.mini-grid{ margin-top: 10px; display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.mini-grid .tile{ border-radius: 16px; overflow:hidden; border:1px solid var(--stroke); background: rgba(255,255,255,.02); }
.cards3{ display:grid; gap:12px; grid-template-columns: repeat(4, 1fr); }
.card{
  padding: 14px;
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
}
.card .t{ font-weight: 1000; }
.card .d{ margin-top: 6px; color: var(--muted); }
.bonus-grid{ display:grid; gap:12px; grid-template-columns: repeat(2, 1fr); }
.bonus{
  padding: 14px;
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
}
.pills{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 8px; }
.pills span{
  border:1px solid var(--stroke);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  color: var(--muted);
}
.callout{
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid rgba(0,230,255,.18);
  background: linear-gradient(135deg, rgba(0,230,255,.10), rgba(124,92,255,.08));
}
.callout.soft{ border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
.bullets{ margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.offer{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 14px; padding: 16px; align-items:center; }
.offer-price{ text-align:right; }
.offer-price .btn{ margin-top: 10px; width: 100%; }
.about{ display:grid; gap: 14px; grid-template-columns: 120px 1fr; align-items:start; }
.avatar{
  width:120px; height:120px;
  border-radius: 22px;
  border:1px solid var(--stroke);
  object-fit: cover;
}
.name{ font-weight: 1000; margin-top: 6px; }
.faq{ display:grid; gap:10px; }
.faq details{
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  padding: 12px 14px;
}
.faq summary{ cursor:pointer; font-weight:1000; }
.faq p{ margin: 10px 0 0; color: var(--muted); }
.section.final{ padding: 34px 0 52px; }
.finalbox{ padding: 18px; text-align:center; }
.footer{ padding: 20px 0 34px; border-top:1px solid var(--stroke); }
.footer .muted{ font-size: 13px; margin-top: 6px; }
@media (max-width: 980px){
  .hero-grid, .how-grid, .offer{ grid-template-columns: 1fr; }
  .proof-grid{ grid-template-columns: repeat(2, 1fr); }
  .cards3{ grid-template-columns: repeat(2, 1fr); }
  .two{ grid-template-columns: 1fr; }
  .offer-price{ text-align:left; }
  .about{ grid-template-columns: 1fr; }
}
