:root {
  --bg: #07111f;
  --panel: rgba(13, 24, 45, 0.78);
  --panel-border: rgba(130, 168, 255, 0.18);
  --text: #ebf2ff;
  --muted: #98a8c7;
  --accent: #67e8f9;
  --accent-2: #8b5cf6;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #fb7185;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}
:root.alt-accent {
  --accent: #f59e0b;
  --accent-2: #ef4444;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; background: linear-gradient(180deg, #07111f 0%, #08182d 100%); color: var(--text); }
body { position: relative; overflow-x: hidden; }
.shell { width: min(1100px, calc(100% - 32px)); margin: 32px auto 56px; position: relative; z-index: 2; }
.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 24px;
}
.hero { display: flex; justify-content: space-between; gap: 24px; align-items: start; margin-bottom: 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; color: var(--accent); font-size: 12px; margin: 0 0 10px; }
h1, h2 { margin: 0 0 10px; }
h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1; }
.lede { color: var(--muted); max-width: 720px; line-height: 1.7; margin: 0; }
.status-pill {
  white-space: nowrap; align-self: center; padding: 12px 16px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(103,232,249,.18), rgba(139,92,246,.18));
  border: 1px solid rgba(103,232,249,.25); color: #dff8ff; font-weight: 600;
}
.grid-two { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; margin-bottom: 24px; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.metric {
  padding: 16px; border-radius: 18px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.metric .label { color: var(--muted); font-size: 13px; }
.metric .value { margin-top: 8px; font-size: 30px; font-weight: 700; }
.metric .hint { margin-top: 6px; font-size: 13px; color: var(--accent); }
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.ghost-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.12); color: var(--text); border-radius: 999px; padding: 10px 14px; cursor: pointer;
}
.checklist, .stage-list { display: grid; gap: 12px; }
.check-item, .stage-item {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.check-item .bullet {
  width: 10px; height: 10px; border-radius: 999px; background: var(--success); margin-right: 10px; display: inline-block;
}
.stage-main { display: flex; align-items: center; gap: 10px; }
.badge { padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge.success { background: rgba(52,211,153,.14); color: #8ef1c8; }
.badge.active { background: rgba(251,191,36,.14); color: #fde68a; }
.badge.idle { background: rgba(148,163,184,.14); color: #cbd5e1; }
.filters input {
  width: 220px; padding: 10px 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.2); color: var(--text);
}
.sparkline { width: 100%; height: auto; overflow: visible; }
.footer-note { margin-top: 22px; color: var(--muted); text-align: center; font-size: 14px; }
.bg-orb {
  position: fixed; border-radius: 999px; filter: blur(60px); opacity: .28; z-index: 1; pointer-events: none;
}
.orb-a { width: 280px; height: 280px; background: var(--accent); top: -50px; left: -60px; }
.orb-b { width: 360px; height: 360px; background: var(--accent-2); right: -80px; top: 180px; }
@media (max-width: 860px) {
  .hero, .grid-two, .section-head { grid-template-columns: 1fr; display: grid; }
  .metric-grid { grid-template-columns: 1fr; }
  .filters input { width: 100%; }
}
