:root {
  --bg: #090b0e;
  --panel: #11161d;
  --panel-2: #151d26;
  --text: #edf2f7;
  --muted: #8fa1b5;
  --line: rgba(255,255,255,.1);
  --acid: #d7ff42;
  --cyan: #7ce7ff;
  --orange: #ff9b54;
  --red: #ff5c7a;
  --green: #65f0a0;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  background:
    radial-gradient(circle at 15% 10%, rgba(124,231,255,.18), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(215,255,66,.12), transparent 30rem),
    linear-gradient(135deg, #08090c, #10151c 55%, #090b0e);
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 42px 0; }
.hero { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.eyebrow { color: var(--acid); letter-spacing: .16em; text-transform: uppercase; font-size: 12px; }
h1 { margin: 0; font-size: clamp(34px, 6vw, 72px); line-height: .95; letter-spacing: -0.08em; }
.lead { color: var(--muted); max-width: 680px; font-size: 15px; line-height: 1.7; }
.status-card, .panel { border: 1px solid var(--line); background: color-mix(in srgb, var(--panel) 88%, transparent); box-shadow: 0 24px 80px rgba(0,0,0,.32); backdrop-filter: blur(16px); }
.status-card { min-width: 270px; display: flex; gap: 12px; align-items: center; padding: 16px; border-radius: 18px; }
.status-card p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.dot { width: 12px; height: 12px; border-radius: 99px; background: var(--orange); box-shadow: 0 0 24px var(--orange); }
.grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; margin-bottom: 18px; }
.panel { border-radius: 24px; padding: 22px; }
.panel-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.panel-head span { color: #07090b; background: var(--acid); padding: 5px 8px; border-radius: 999px; font-weight: 900; }
h2 { font-size: 16px; margin: 0; letter-spacing: -.03em; }
.form label { display: grid; gap: 8px; color: var(--muted); font-size: 12px; margin-bottom: 14px; }
input { width: 100%; border: 1px solid var(--line); color: var(--text); background: #090d12; border-radius: 14px; padding: 13px 14px; outline: none; }
input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(124,231,255,.12); }
.two { display: grid; grid-template-columns: 1fr 180px; gap: 12px; }
.check { display: flex !important; grid-template-columns: auto 1fr; align-items: center; }
.check input { width: auto; }
button { border: 0; border-radius: 14px; padding: 13px 16px; font-weight: 900; cursor: pointer; color: #080b0e; background: var(--acid); transition: transform .15s, filter .15s; }
button:hover { transform: translateY(-1px); filter: brightness(1.06); }
button.ghost { color: var(--text); background: var(--panel-2); border: 1px solid var(--line); }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hint, .legend, .log { color: var(--muted); font-size: 12px; }
.legend { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.legend i { display: inline-block; width: 9px; height: 9px; border-radius: 99px; margin-right: 5px; }
.pending { background: var(--orange); } .running { background: var(--cyan); } .done { background: var(--green); } .failed { background: var(--red); }
.log { min-height: 88px; white-space: pre-wrap; background: #080b0f; border: 1px solid var(--line); border-radius: 16px; padding: 14px; overflow: auto; }
.jobs { display: grid; gap: 12px; }
.job { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--line); background: #0b1016; border-radius: 18px; }
.job strong { display: block; margin-bottom: 6px; }
.job p { margin: 0; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 6px 9px; font-size: 12px; background: var(--panel-2); }
.badge.pending { color: var(--orange); background: rgba(255,155,84,.12); }
.badge.running { color: var(--cyan); background: rgba(124,231,255,.12); }
.badge.done { color: var(--green); background: rgba(101,240,160,.12); }
.badge.failed, .badge.cancelled { color: var(--red); background: rgba(255,92,122,.12); }
@media (max-width: 820px) { .hero, .grid { grid-template-columns: 1fr; display: grid; } .two { grid-template-columns: 1fr; } .status-card { min-width: 0; } }
