:root{
  --bg:#0b0f19;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.12);
  --accent:#1e62ff;
  --danger:#ff2d55;
}
*{box-sizing:border-box}
body{
  margin:0;color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(30,98,255,.35), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,45,85,.25), transparent 55%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
.wrap{max-width:1120px;margin:0 auto;padding:22px}

.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,25,.75);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.bar{display:flex;align-items:center;justify-content:space-between;gap:14px}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg,var(--accent),var(--danger))}
.title{font-weight:800;font-size:14px}
.sub{font-size:12px;color:var(--muted)}
.nav{display:flex;gap:10px;flex-wrap:wrap}
.nav a{padding:10px 12px;border:1px solid rgba(255,255,255,.10);border-radius:999px;background:rgba(255,255,255,.04);font-size:13px}
.actions{display:flex;gap:10px;flex-wrap:wrap}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  font-weight:700;white-space:nowrap;
}
.btn.primary{background:linear-gradient(135deg,rgba(30,98,255,.95),rgba(30,98,255,.55));border-color:rgba(30,98,255,.35)}
.btn.danger{background:linear-gradient(135deg,rgba(255,45,85,.95),rgba(255,45,85,.55));border-color:rgba(255,45,85,.35)}

.hero{padding:18px 0}
.hero-card{
  display:grid;grid-template-columns: 1.1fr .9fr;gap:14px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius:22px;padding:16px;
}
.chip{
  display:inline-flex;gap:8px;align-items:center;width:fit-content;
  border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04);
  padding:8px 12px;border-radius:999px;font-size:12px;color:rgba(255,255,255,.86)
}
.hero h1{margin:10px 0 8px;font-size:28px;line-height:1.15}
.hero h1 span{display:block;font-size:14px;color:var(--muted);font-weight:700;margin-top:6px}
.hero p{margin:0;color:rgba(255,255,255,.75)}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

.kpi{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.kpi-box{border:1px solid rgba(255,255,255,.10);border-radius:16px;background:rgba(255,255,255,.04);padding:12px}
.kpi-box .k{font-size:12px;color:var(--muted)}
.kpi-box .v{margin-top:4px;font-weight:900}

.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin:14px 0 10px}
.sec-head h2{margin:0;font-size:18px}
.sec-head p{margin:0;color:var(--muted);font-size:13px}

.grid{display:grid;grid-template-columns: repeat(3, 1fr);gap:12px}
.campaign{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:18px;overflow:hidden;
  display:flex;flex-direction:column;
}
.cover{height:150px;background:#111 center/cover no-repeat}
.body{padding:12px}
.pill{display:inline-flex;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background:rgba(0,0,0,.18);font-size:12px;width:fit-content}
.h{margin-top:8px;font-weight:900}
.t{margin-top:4px;font-size:12px;color:var(--muted)}
.d{margin-top:8px;font-size:13px;color:rgba(255,255,255,.75)}
.go{margin-top:10px;font-weight:800;color:rgba(255,255,255,.9)}

.card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:18px;
  padding:14px;
}
.row{display:flex;gap:10px;flex-wrap:wrap}
.muted{color:var(--muted);font-size:12px;margin-top:10px}
.footer{padding:20px 0 30px;color:rgba(255,255,255,.58);font-size:12px}

.table{
  width:100%;
  border-collapse:separate;border-spacing:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;overflow:hidden;
  background:rgba(255,255,255,.03);
}
.table th,.table td{
  padding:10px 10px;border-bottom:1px solid rgba(255,255,255,.08);
  font-size:13px;vertical-align:top;
}
.table th{background:rgba(255,255,255,.05);text-align:left;font-size:12px;color:rgba(255,255,255,.86);text-transform:uppercase}
.table tr:last-child td{border-bottom:none}
.input{
  width:100%;
  padding:10px 12px;border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);color:var(--text);
  outline:none;
}
.form-grid{display:grid;grid-template-columns: 1fr 1fr;gap:10px}
@media (max-width: 940px){
  .hero-card{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .nav{display:none}
  .form-grid{grid-template-columns:1fr}
}
