:root{
  --bg:#07080c;
  --panel:#0c0f18;
  --panel2:#0a0c13;
  --text:#f3f5ff;
  --muted:rgba(243,245,255,.72);
  --soft:rgba(243,245,255,.12);
  --soft2:rgba(243,245,255,.08);
  --gold1:#f6d27a;
  --gold2:#ffdca0;
  --lime:#8affc1;
  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(246,210,122,.16), transparent 55%),
    radial-gradient(700px 480px at 80% 20%, rgba(138,255,193,.10), transparent 55%),
    radial-gradient(900px 700px at 50% 90%, rgba(123,92,255,.08), transparent 60%),
    var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}
.section{padding:70px 0}
.section.alt{background:linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent)}
.section-head{margin-bottom:26px}
.section-head h2{margin:0 0 8px; font-size:34px; letter-spacing:-.02em}
.section-head p{margin:0; color:var(--muted)}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,8,12,.6);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(246,210,122,.25), rgba(138,255,193,.12));
  border:1px solid rgba(246,210,122,.25);
  box-shadow: 0 10px 35px rgba(246,210,122,.10);
}
.brand-text{line-height:1.1}
.brand-name{font-weight:800; letter-spacing:-.02em}
.brand-tag{font-size:12px; color:var(--muted)}

.links{display:flex; gap:16px; align-items:center}
.links a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.links a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.btn{
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:11px 14px;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  font-weight:700;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn-full{width:100%}
.btn-primary{
  border-color: rgba(246,210,122,.35);
  background: linear-gradient(135deg, rgba(246,210,122,.22), rgba(255,255,255,.06));
  box-shadow: 0 18px 45px rgba(246,210,122,.12);
}
.btn-primary:hover{background: linear-gradient(135deg, rgba(246,210,122,.28), rgba(255,255,255,.08))}
.btn-ghost{background: rgba(255,255,255,.04)}
.btn-ghost:hover{background: rgba(255,255,255,.07)}

.hero{padding:70px 0 40px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:26px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  color:var(--muted);
  font-size:13px;
  margin:0 0 14px;
}
.hero h1{
  margin:0 0 12px;
  font-size:48px;
  letter-spacing:-.03em;
  line-height:1.04;
}
.grad{
  background: linear-gradient(90deg, var(--gold1), var(--lime));
  -webkit-background-clip: text;
  background-clip:text;
  color:transparent;
}
.sub{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:10px}

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.trust-item{
  display:flex; gap:10px;
  padding:12px;
  border-radius:var(--radius);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
}
.trust-icon{font-size:18px}
.trust-title{font-weight:800; font-size:13px}
.trust-text{font-size:12px; color:var(--muted)}

.card{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding:16px;
}
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
  position:relative;
  overflow:hidden;
}
.card-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:12px;
}
.card-title{font-weight:800}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(246,210,122,.30);
  background: rgba(246,210,122,.10);
  color: var(--gold2);
}
.numbers{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:10px;
  margin:12px 0;
}
.ball{
  height:58px; border-radius:18px;
  display:grid; place-items:center;
  font-weight:800; font-size:18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.ball-power{
  border-color: rgba(138,255,193,.35);
  background: rgba(138,255,193,.10);
}
.card-note{color:var(--muted); font-size:13px; margin:10px 0 14px}
.card-actions{display:grid; gap:10px; margin-bottom:12px}
.mini{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
  display:grid;
  gap:8px;
}
.mini-row{display:flex; justify-content:space-between; color:var(--muted); font-size:13px}
.mini-value{color:var(--text); font-weight:700}

.sparkle{
  position:absolute;
  width:240px; height:240px;
  right:-120px; bottom:-120px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(246,210,122,.24), transparent 60%);
  pointer-events:none;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.feature-icon{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  font-weight:900;
  margin-bottom:10px;
  border:1px solid rgba(246,210,122,.26);
  background: rgba(246,210,122,.08);
  color: var(--gold2);
}
.feature h3{margin:0 0 6px}
.feature p{margin:0; color:var(--muted); line-height:1.6}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  align-items:stretch;
}
.price-card{
  position:relative;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
}
.price-card.highlight{
  border-color: rgba(246,210,122,.30);
  background: linear-gradient(180deg, rgba(246,210,122,.10), rgba(255,255,255,.02));
  box-shadow: 0 22px 60px rgba(246,210,122,.10);
}
.badge{
  position:absolute; top:14px; right:14px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(138,255,193,.10);
  border:1px solid rgba(138,255,193,.25);
  color: var(--lime);
}
.price-top h3{margin:0 0 8px}
.price{font-size:34px; font-weight:900; letter-spacing:-.02em}
.price span{font-size:13px; color:var(--muted); font-weight:700}
.price-sub{margin:8px 0 0; color:var(--muted)}
.list{margin:14px 0 16px; padding-left:18px; color:var(--muted); line-height:1.8}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.panel{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.panel h3{margin:0 0 8px}
.panel p{margin:0 0 12px; color:var(--muted); line-height:1.65}

.kpi-row{display:flex; gap:10px; flex-wrap:wrap}
.kpi{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  min-width:120px;
}
.kpi-num{font-weight:900; font-size:18px}
.kpi-label{color:var(--muted); font-size:12px}

.quotes{display:grid; gap:10px}
.quote{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color:var(--text);
}
.quote span{color:var(--muted); font-weight:700}

.subscribe-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.form{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
label{display:grid; gap:8px; font-weight:700; font-size:13px}
input, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(7,8,12,.45);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  outline:none;
}
input::placeholder{color: rgba(243,245,255,.45)}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}
.form-msg{margin-top:10px; color: var(--muted)}
.tiny-note{margin-top:12px; color: rgba(243,245,255,.55); font-size:12px; line-height:1.6}

.side-card{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.codebox{
  padding:12px;
  border-radius:14px;
  border:1px dashed rgba(246,210,122,.35);
  background: rgba(246,210,122,.07);
  color: var(--gold2);
  margin:10px 0;
  font-weight:700;
}
.divider{height:1px; background: rgba(255,255,255,.08); margin:14px 0}
.contact-line{margin:0; color:var(--muted)}
.contact-line strong{color:var(--text)}

.faq{display:grid; gap:10px}
details{
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
summary{cursor:pointer; font-weight:900}
details p{color:var(--muted); margin:10px 0 0; line-height:1.6}

.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:14px;
}
.footer-links{display:flex; gap:14px; color:var(--muted)}
.footer-links a:hover{color:var(--text)}

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  padding:12px 14px;
  border-radius:999px;
  background: rgba(138,255,193,.10);
  border:1px solid rgba(138,255,193,.28);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  display:flex; align-items:center; gap:10px;
  font-weight:900;
}
.wa-dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(138,255,193,.9);
  box-shadow: 0 0 0 6px rgba(138,255,193,.12);
}

/* Countdown */
.countdown{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.countdown-label{
  font-weight:900;
  margin-bottom:8px;
}
.countdown-box{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.cd-item{
  min-width:86px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(246,210,122,.26);
  background: rgba(246,210,122,.07);
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.cd-item span{
  font-weight:900;
  font-size:22px;
  letter-spacing:-.02em;
  color: var(--gold2);
}
.cd-item small{
  color: rgba(243,245,255,.70);
  font-weight:800;
}
.countdown-note{
  margin-top:8px;
  color: rgba(243,245,255,.65);
  font-size:12px;
}

/* Responsive */
@media (max-width: 940px){
  .hero-grid{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr; gap:10px}
  .grid-3{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .subscribe-wrap{grid-template-columns:1fr}
  .links{display:none}
  .hero h1{font-size:40px}
}