:root{
  --bg:#0b1220;
  --card:#111a2e;
  --text:#e8eefc;
  --muted:#a9b4d0;
  --accent:#7c3aed;
  --accent2:#22c55e;
  --warn:#f59e0b;
  --stroke:rgba(255,255,255,.08);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(124,58,237,.35), transparent),
    radial-gradient(800px 500px at 100% 20%, rgba(34,197,94,.25), transparent),
    var(--bg);
  color:var(--text);
}

.wrap{
  max-width:1100px;
  margin:auto;
  padding:28px 18px 60px;
}

.card{
  background:rgba(17,26,46,.85);
  border-radius:22px;
  padding:22px;
  margin-bottom:18px;
  border:1px solid var(--stroke);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}

.kpi{
  font-size:32px;
  font-weight:800;
}

.small{color:var(--muted)}

.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  font-size:12px;
  margin-right:6px;
}

.section-title{
  font-weight:800;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:12px;
  color:#c7d2fe;
}

.footer{
  text-align:center;
}
