/* ---------- Base ---------- */
:root{
  --bg:#000;
  --panel:#0b0b0c;
  --panel-2:#0f0f12;
  --text:#e7e7ea;
  --muted:#a1a1aa;
  --muted-2:#8b8b95;
  --line:rgba(255,255,255,.08);
  --brand:#6366f1;
  --brand-2:#c084fc;
  --ring:rgba(99,102,241,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

.container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

.h1{font-size:clamp(2.2rem,3.5vw,3.2rem);line-height:1.1;font-weight:800;margin:0}
.h2{font-size:clamp(1.6rem,2.5vw,2.2rem);line-height:1.2;font-weight:800;margin:0}
.h3{font-size:1.1rem;font-weight:700;margin:.25rem 0 0}

.gradient{background:linear-gradient(90deg,var(--brand),var(--brand-2));-webkit-background-clip:text;background-clip:text;color:transparent}

.muted{color:var(--muted);max-width:65ch}
.muted-sm{color:var(--muted);font-size:.95rem}
.muted-xs{color:var(--muted-2);font-size:.8rem}

.ta-center{text-align:center}
.m-top-xs{margin-top:.5rem}

.row{display:flex;align-items:center}
.wrap{flex-wrap:wrap}
.stack-sm{display:flex;flex-direction:column;gap:.6rem}
.stack-md{display:flex;flex-direction:column;gap:1rem}

.gap-xs{gap:.4rem}
.gap-sm{gap:.6rem}
.gap-md{gap:1rem}
.gap-lg{gap:2rem}

.grid2{display:grid;grid-template-columns:1fr;align-items:center}
.grid3{display:grid;grid-template-columns:1fr}
@media(min-width:900px){
  .grid2{grid-template-columns:1.1fr .9fr}
  .grid3{grid-template-columns:repeat(3,1fr)}
}

.section{padding:64px 0}

/* ---------- Nav ---------- */
.nav{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(0,0,0,.5);
  border-bottom:1px solid var(--line);
}
.nav__inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{font-weight:700;letter-spacing:.4px}
.nav__links{display:none;gap:1.25rem}
@media(min-width:900px){.nav__links{display:flex}}
.nav a{color:var(--text);opacity:.85}
.nav a:hover{opacity:1}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border-radius:14px;border:1px solid transparent;
  padding:12px 18px;font-weight:600;box-shadow:0 8px 24px rgba(99,102,241,.15);
  transition:.2s transform ease,.2s box-shadow ease,.2s background ease;
}
.btn .push{transform:translateX(0);transition:transform .2s ease}
.btn:hover .push{transform:translateX(2px)}
.btn--primary{background:var(--brand);color:white}
.btn--primary:hover{box-shadow:0 12px 28px rgba(99,102,241,.3)}
.btn--ghost{background:rgba(255,255,255,.07);border-color:var(--line);color:white}
.btn--block{display:flex;width:100%}

/* ---------- Badges ---------- */
.badge{
  display:inline-flex;align-items:center;gap:.4rem;
  background:linear-gradient(90deg, rgba(99,102,241,.12), rgba(192,132,252,.12));
  color:#c7c8ff;border:1px solid rgba(99,102,241,.25);
  padding:6px 10px;border-radius:999px;font-size:.75rem;font-weight:700;
}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden;padding:72px 0 80px}
.hero__bg{
  position:absolute;inset:0;z-index:-1;
  background:linear-gradient(to bottom, #0b0b0c, #0b0b0c 20%, #000 100%);
  opacity:.95;
}
.videoCard__frame{aspect-ratio:16/9;border-radius:18px;overflow:hidden;border:1px solid var(--line);background:#15151a}
.videoCard__placeholder{height:100%;display:flex;align-items:center;justify-content:center;gap:.6rem;color:var(--muted)}
.hero__sub{margin-top:.75rem}

/* ---------- Countdown ---------- */
.countdown{
  display:inline-flex;align-items:center;gap:.5rem;border:1px solid var(--line);
  border-radius:999px;padding:8px 12px;font-size:.9rem;
}

/* ---------- Cards / Modules ---------- */
.cards .card{
  border:1px solid var(--line);background:linear-gradient(180deg,#101014,#070708);
  border-radius:18px;padding:18px;
}
.iconDot{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:999px;
  background:rgba(99,102,241,.18);border:1px solid rgba(99,102,241,.3);
  color:#c7c8ff;
}

.module{
  border:1px solid var(--line);border-radius:18px;padding:18px;background:#0e0e12;
}
.module ul{list-style:none;padding:0;margin:12px 0;display:flex;flex-direction:column;gap:.5rem}
.module li{display:flex;gap:.5rem;align-items:flex-start;color:var(--muted)}

/* ---------- Testimonials ---------- */
.testimonial{
  border:1px solid var(--line);border-radius:18px;padding:18px;background:#0e0e12;
}
.avatar{
  width:40px;height:40px;border-radius:999px;background:rgba(99,102,241,.2);
  border:1px solid rgba(99,102,241,.35);display:flex;align-items:center;justify-content:center;
  color:#c7c8ff;font-weight:700;margin-bottom:.5rem
}
.stars i{width:16px;height:16px;color:#facc15}
.star{color:#facc15}

/* ---------- Lists ---------- */
.list{list-style:none;padding:0;margin:14px 0;display:flex;flex-direction:column;gap:.5rem}
.ol{margin:14px 0 0 18px;display:flex;flex-direction:column;gap:.5rem}

/* ---------- Guarantee card ---------- */
.p-lg{padding:22px}

/* ---------- FAQ ---------- */
.faq{max-width:800px}
.faq__item{border-bottom:1px solid var(--line);padding:14px 0}
.faq__item summary{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;cursor:pointer;list-style:none;
  font-weight:600;color:#fff;
}
.faq__item p{color:var(--muted);margin:.5rem 0 0}

/* ---------- Checkout ---------- */
.checkout{
  display:grid;gap:1rem;grid-template-columns:1fr;
  border:1px solid var(--line);border-radius:18px;padding:18px;background:#0e0e12;
  max-width:900px;
}
@media(min-width:900px){
  .checkout{grid-template-columns:1.2fr .8fr;align-items:center}
}
.price{font-size:2rem;font-weight:800}
.price__sub{font-size:.9rem;color:var(--muted)}

/* ---------- Footer ---------- */
.footer{border-top:1px solid var(--line);padding:40px 0;margin-top:40px}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}

/* ---------- Animations ---------- */
@keyframes floatIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.hero .h1, .hero .muted, .hero .btn, .hero .countdown, .videoCard{animation:floatIn .6s ease both}
