:root {
  --bg: #020617;
  --card: #0f172a;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --gold: #f7c948;
  --cyan: #22d3ee;
  --blue: #38bdf8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at top, #0b1226 0%, var(--bg) 60%);
  color: var(--text);
}
.dashboard { max-width: 1100px; margin: 0 auto; padding: 24px 16px 40px; display: grid; gap: 16px; }
.card-premium {
  background: linear-gradient(145deg, rgba(15,23,42,.95), rgba(2,6,23,.92));
  border: 1px solid rgba(56,189,248,.25);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  padding: 18px;
}
.dashboard-header { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin: 0 0 8px; }
h1 { margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.dashboard-header p { margin: 0; color: var(--muted); }
.header-actions, .button-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-primary { background: linear-gradient(135deg, var(--gold), #f59e0b); color: #111827; }
.btn-ghost { background: rgba(56,189,248,.14); color: var(--text); border: 1px solid rgba(56,189,248,.35); }
.btn-danger { background: rgba(239,68,68,.2); color: #fecaca; border: 1px solid rgba(239,68,68,.4); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.stat { background: rgba(15,23,42,.7); border: 1px solid rgba(148,163,184,.25); border-radius: 14px; padding: 12px; }
.stat dt { color: var(--muted); margin-bottom: 6px; font-size: .88rem; }
.stat dd { margin: 0; font-size: 1.1rem; font-weight: 700; }
.progress-track { width: 100%; height: 12px; border-radius: 999px; background: rgba(148,163,184,.2); overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(135deg, var(--cyan), var(--gold)); transition: width .3s ease; }
.list-premium, .actions-list, .guidelines { margin: 0; padding-left: 20px; color: var(--text); }
.checklist { display: grid; gap: 8px; }
.check-item { display: flex; align-items: center; gap: 8px; background: rgba(15,23,42,.62); border-radius: 10px; padding: 8px 10px; border: 1px solid rgba(148,163,184,.2); }
textarea { width: 100%; margin: 8px 0 12px; background: rgba(2,6,23,.65); color: var(--text); border: 1px solid rgba(148,163,184,.4); border-radius: 12px; padding: 10px; }
.feedback { min-height: 24px; color: var(--cyan); font-weight: 600; }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-header { flex-direction: column; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}
