:root{
  --bg:#050506;
  --panel:#15161a;
  --text:#f7f7fb;
  --muted:#a5a7b0;
  --line:#2b2d35;
  --green:#61ff96;
  --pink:#ff2daa;
  --cyan:#3dccff;
  --radius:20px;
}
*{box-sizing:border-box}
html{color-scheme:dark}
body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  font:14px/1.5 Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:radial-gradient(circle at 50% 12%,#202126,var(--bg) 52%,#000 100%);
}
button,input,select,textarea{font:inherit}
.shell{width:min(1180px,100%);margin:auto;padding:24px 16px 80px}
.status-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg,#191a1f,#101116);
  box-shadow:0 18px 50px #0008;
}
.status-card h1{margin:.3rem 0 .5rem}
.status-card p{margin:0;color:var(--muted)}
.eyebrow{
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  background:linear-gradient(90deg,var(--pink),#ff9a35,#ffe34a,#70ff54,var(--cyan),#9c5cff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
