:root {
  --bg: #05060b;
  --panel: #0f1324;
  --accent: #3fe0c5;
  --accent2: #7c8cf8;
  --text: #e9ecf7;
  --muted: #9aa3bc;
  --border: #1d2235;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 16px;
  --pad: 18px;
  font-family: Inter, Segoe UI, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(63,224,197,0.08), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(124,140,248,0.08), transparent 30%),
              var(--bg);
}

* { box-sizing: border-box; }
body { margin: 0; background: transparent; }

.hero { padding: 48px 22px 12px; }
.hero.compact { padding-bottom: 0; }
.hero-body { max-width: 960px; margin: 0 auto; }
.eyebrow { letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-size: 12px; margin: 0 0 8px; }
h1 { margin: 0 0 10px; font-size: 32px; }
.lede { color: var(--muted); max-width: 720px; margin: 0; }

.shell { max-width: 960px; margin: 0 auto 48px; padding: 0 22px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 18px; }

.grid { display: grid; gap: 14px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stack { display: flex; flex-direction: column; gap: 6px; }
.label { font-size: 13px; color: var(--muted); }
textarea, select, input { width: 100%; border-radius: 12px; border: 1px solid var(--border); background: #0b0f1d; color: var(--text); padding: 12px; font-size: 15px; }
textarea { min-height: 140px; }

.primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #05060b; border: none; border-radius: 12px; padding: 12px 16px; font-weight: 700; cursor: pointer; box-shadow: 0 12px 30px rgba(63,224,197,0.25); text-decoration: none; display: inline-block; text-align: center; }
.primary:hover { filter: brightness(1.05); }
.link { color: var(--accent); text-decoration: none; font-weight: 600; }
.pill { border: 1px solid var(--border); border-radius: 999px; padding: 10px 12px; color: var(--muted); }
.muted { color: var(--muted); }
.error { color: #ff7b7b; font-weight: 600; }

.jobs { display: flex; flex-direction: column; gap: 10px; }
.job-row { display: flex; align-items: center; justify-content: space-between; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,0.02); }
.job-id { font-weight: 700; }
.status { padding: 6px 10px; border-radius: 999px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.status.processing { background: rgba(124,140,248,0.18); color: var(--accent2); }
.status.done { background: rgba(63,224,197,0.18); color: var(--accent); }
.status.error { background: rgba(255,123,123,0.15); color: #ff9a9a; }

.job-detail { display: flex; flex-direction: column; gap: 12px; }
.row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 10px; }

@media (max-width: 640px) {
  h1 { font-size: 26px; }
  .hero { padding-top: 32px; }
}
