:root{
  --bg:#0b0f17;
  --panel:#0f1624;
  --text:#e8edf6;
  --muted:#a9b3c6;
  --line:rgba(255,255,255,.10);
  --accent:#a78bfa;
  --accent2:#22c55e;
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(167,139,250,.22), transparent 60%),
    radial-gradient(800px 520px at 80% 30%, rgba(34,197,94,.16), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(56,189,248,.12), transparent 60%),
    var(--bg);
  line-height:1.4;
}
a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}
.skip{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:12px; width:auto; height:auto;
  padding:10px 12px; border-radius:12px;
  background:#111a2b; border:1px solid var(--line);
  z-index:50;
}

.topbar{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background:rgba(11,15,23,.65);
  border-bottom:1px solid var(--line);
  z-index:20;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.topbar__nav{display:flex; gap:14px; align-items:center}
.link{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
}
.link:hover{color:var(--text)}

.brand{display:flex; align-items:center; gap:10px; font-weight:800}
.brand__mark{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(167,139,250,.95), rgba(34,197,94,.75));
  color:#070a10;
  box-shadow: 0 10px 25px rgba(167,139,250,.25);
}
.brand__text{letter-spacing:.2px}
.brand--sm .brand__mark{width:30px;height:30px;border-radius:11px}

.hero{padding:52px 0 64px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:start;
}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background:rgba(255,255,255,.03);
  font-weight:650;
  margin:0 0 14px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height:1.08;
  letter-spacing:-.8px;
}
.accent{
  background: linear-gradient(135deg, rgba(167,139,250,1), rgba(34,197,94,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  white-space:nowrap;
}
.lead{
  margin:0 0 20px;
  color:var(--muted);
  font-size: 16.5px;
  max-width: 62ch;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:750;
  letter-spacing:.2px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.18)}
.btn:active{transform: translateY(0)}
.btn--primary{
  background: linear-gradient(135deg, rgba(167,139,250,.95), rgba(34,197,94,.85));
  color:#05070b;
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.btn--ghost{background: rgba(255,255,255,.03)}
.btn--full{width:100%}

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top: 18px;
}
.trust__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px 12px;
}
.trust__kpi{font-weight:900; letter-spacing:.2px}
.trust__txt{color:var(--muted); font-size: 13.5px; margin-top:4px}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}
.card h2{margin:0 0 8px; font-size:20px}
.card__desc{margin:0 0 14px; color:var(--muted)}
.coupon{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  padding: 12px;
  border-radius: 16px;
  border:1px solid rgba(167,139,250,.35);
  background: rgba(167,139,250,.10);
  margin: 12px 0 12px;
}
.coupon__label{grid-column: 1/-1; color:var(--muted); font-weight:650; font-size: 13px}
.coupon__code{
  font-weight:950;
  letter-spacing: 1.2px;
  font-size: 20px;
}
.coupon__btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:850;
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
}
.coupon__btn:hover{border-color: rgba(255,255,255,.18)}
.coupon__btn--ok{
  border-color: rgba(34,197,94,.55);
  background: rgba(34,197,94,.18);
}
.fine{
  margin: 10px 0 14px;
  padding-left: 18px;
  color: var(--muted);
}
.fine li{margin: 6px 0}
.note{
  margin: 14px 2px 0;
  color: var(--muted);
  font-size: 13.5px;
}
.note a{color: var(--text); text-decoration: underline; text-decoration-color: rgba(255,255,255,.25)}

.footer{
  border-top:1px solid var(--line);
  padding: 22px 0;
  background: rgba(0,0,0,.18);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.footer__meta{margin:6px 0 0; color:var(--muted)}
.footer__right{display:flex; gap:14px}

@media (max-width: 900px){
  .hero{padding: 32px 0 48px}
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .trust{grid-template-columns: 1fr; }
  .topbar__nav{gap:12px}
}


