:root{
  --bg:#0d0f14;
  --text:#111827;
  --muted:#6b7280;
  --panel:rgba(255,255,255,0.88);
  --shadow:0 16px 60px rgba(0,0,0,.25);
  --ring:0 0 0 5px rgba(66,165,245,0.28);
  --radius:26px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Nunito","Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  background:var(--bg);
  color:var(--text);
}
body::after{
  content:"";
  position:fixed;
  inset:-10%;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1200px 520px at 18% 12%, rgba(255,255,255,0.18), transparent 65%),
    radial-gradient(900px 520px at 72% 16%, rgba(168,85,247,0.16), transparent 62%),
    radial-gradient(900px 620px at 55% 70%, rgba(59,130,246,0.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.0));
  filter:saturate(1.05);
}
.wrap{
  max-width:980px;
  margin:0 auto;
  padding:18px;
  padding-bottom:60px;
}
.hero{
  background:var(--panel);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
  border:1px solid rgba(15,23,42,0.10);
}
.badge{
  width:52px;height:52px;border-radius:18px;
  display:grid;place-items:center;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(15,23,42,0.10);
  margin-bottom:10px;
  font-size:22px;
}
h1{margin:0;font-size:28px;letter-spacing:0.2px}
p{margin:8px 0 0;color:var(--muted);font-weight:650}
.cta{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  width:100%;
  border-radius:22px;
  text-decoration:none;
  font-weight:900;
  color:#121722;
  background:linear-gradient(90deg, rgba(59,130,246,0.92), rgba(168,85,247,0.92));
  box-shadow:0 10px 24px rgba(17,24,39,0.12);
  transition:transform 200ms ease-out, filter 200ms ease-out;
}
.cta:focus{outline:none;box-shadow:0 10px 24px rgba(17,24,39,0.12), var(--ring)}
.cta:active{transform:translateY(1px) scale(0.99)}
.fine{margin-top:10px;color:var(--muted);font-size:13px;font-weight:700}
.cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.card{
  background:rgba(255,255,255,0.86);
  border-radius:22px;
  padding:14px;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow:0 10px 40px rgba(0,0,0,.14);
}
.card h2{margin:0;font-size:16px;font-weight:1000}
.card p{margin-top:6px;font-size:14px}
.footer{
  position:fixed;
  left:0;right:0;bottom:0;
  padding:10px 14px;
  display:flex;
  justify-content:center;
  gap:10px;
  color:rgba(255,255,255,0.80);
  background:linear-gradient(to top, rgba(13,15,20,0.88), rgba(13,15,20,0.0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.footer a{color:rgba(255,255,255,0.90);text-decoration:none;font-weight:800}
.dot{opacity:0.6}
@media (max-width:820px){
  .cards{grid-template-columns:1fr}
  h1{font-size:24px}
}

