/* assets/style.css */
:root{
  --bg:#0b1220;
  --panel:#0f1a2b;
  --card:#101c30;
  --text:#e8eefc;
  --muted:#9fb0d0;
  --line:rgba(255,255,255,.08);
  --brand:#6ea8fe;
  --brand2:#7c3aed;
  --danger:#ef4444;
  --shadow:0 18px 45px rgba(0,0,0,.35);
  --radius:18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(1000px 500px at 90% 0%, rgba(110,168,254,.25), transparent 55%),
    linear-gradient(180deg,#070b14 0%,#0b1220 60%,#070b14 100%);
  color:var(--text);
}
header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(10px);
  background:linear-gradient(180deg,rgba(16,28,48,.85),rgba(16,28,48,.55));
  border-bottom:1px solid var(--line);
  padding:14px 18px;
  display:flex;justify-content:space-between;align-items:center
}
.wrap{max-width:1150px;margin:22px auto;padding:0 14px}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  margin-bottom:16px
}
h2,h3{margin:0 0 12px 0}
.muted{color:var(--muted);font-size:13px}
input,select{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  margin:6px 0
}
button{
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#071022;
  font-weight:700;
  cursor:pointer
}
table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border-radius:14px;
  border:1px solid var(--line);
  overflow:hidden;
  background:rgba(255,255,255,.03)
}
th,td{
  padding:12px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:14px
}
th{
  font-size:12px;
  text-transform:uppercase;
  color:var(--muted);
  background:rgba(255,255,255,.03)
}
.copy{
  padding:8px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  cursor:pointer
}
.pill{
  display:inline-block;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 10px
}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:820px){.row{grid-template-columns:1fr}}
