:root {
  --bg: #020617;
  --panel: rgba(255,255,255,0.085);
  --panel-strong: rgba(255,255,255,0.13);
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(125, 211, 252, 0.55);
  --text: #f8fafc;
  --muted: #a8b3c7;
  --muted-2: #64748b;
  --cyan: #67e8f9;
  --cyan-2: #22d3ee;
  --green: #86efac;
  --amber: #fcd34d;
  --red: #fda4af;
  --shadow: 0 24px 70px rgba(0,0,0,0.34);
  --radius: 28px;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(255,255,255,0.09), transparent 34%), var(--bg);
  color: var(--text);
  line-height: 1.5;
}
.bg-orb { position: fixed; border-radius: 999px; filter: blur(72px); pointer-events: none; z-index: -1; }
.orb-one { width: 540px; height: 540px; left: -12%; top: -16%; background: rgba(34,211,238,0.20); }
.orb-two { width: 600px; height: 600px; right: -16%; top: 10%; background: rgba(37,99,235,0.22); }
.orb-three { width: 520px; height: 520px; left: 22%; bottom: -24%; background: rgba(217,70,239,0.10); }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(2,6,23,0.74);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 250px; }
.brand-mark {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid rgba(103,232,249,0.32);
  border-radius: 18px;
  background: rgba(103,232,249,0.14);
  color: var(--cyan);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(34,211,238,0.12);
}
.brand h1 { margin: 0; font-size: 24px; letter-spacing: -0.03em; }
.brand p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.nav button, .btn, .pill, button {
  font: inherit;
}
.nav button {
  border: 1px solid transparent;
  background: rgba(255,255,255,0.075);
  color: #dbeafe;
  border-radius: 16px;
  padding: 9px 12px;
  cursor: pointer;
  transition: .18s ease;
}
.nav button:hover { background: rgba(255,255,255,0.14); }
.nav button.active { background: #fff; color: #0f172a; }
.progress-shell, .app-shell { width: min(1400px, calc(100% - 32px)); margin: 0 auto; }
.progress-shell { padding: 16px 0 0; }
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  padding: 12px;
}
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.step-btn {
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 13px 14px;
  text-align: left;
  background: rgba(0,0,0,0.22);
  color: var(--text);
  cursor: pointer;
}
.step-btn.active { background: var(--cyan); color: #082f49; }
.step-btn small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; opacity: .72; font-weight: 800; }
.step-btn span { display: block; margin-top: 4px; font-weight: 800; }
.progress-health { margin-top: 10px; color: var(--muted); font-size: 13px; background: rgba(0,0,0,.22); border: 1px solid var(--line); border-radius: 18px; padding: 11px 14px; }
.app-shell { padding: 20px 0 44px; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: 1.1fr .9fr; }
.grid.equal { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid.five { grid-template-columns: repeat(5, minmax(0,1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--panel-strong), rgba(255,255,255,0.055));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  padding: 20px;
}
.card.highlight { border-color: rgba(103,232,249,0.32); background: linear-gradient(135deg, rgba(103,232,249,0.14), rgba(255,255,255,0.07)); }
.section-title { margin-bottom: 16px; }
.section-title h2 { margin: 0; font-size: 20px; letter-spacing: -0.02em; }
.section-title p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.field { display: block; }
.field span, .field-label { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  border-radius: 18px;
  padding: 13px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(103,232,249,0.12); }
.btn, .pill {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  padding: 11px 14px;
  cursor: pointer;
  transition: .18s ease;
  text-align: left;
}
.btn:hover, .pill:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.13); }
.btn.primary { background: var(--cyan); color: #082f49; border-color: var(--cyan); font-weight: 800; text-align: center; }
.btn.white { background: white; color: #0f172a; border-color: white; font-weight: 800; }
.btn.warn { border-color: rgba(252,211,77,.35); background: rgba(252,211,77,.1); color: #fef3c7; }
.btn.danger { border-color: rgba(253,164,175,.35); background: rgba(253,164,175,.1); color: #ffe4e6; }
.pill.active { border-color: var(--line-strong); background: rgba(103,232,249,0.20); color: #fff; box-shadow: 0 12px 35px rgba(34,211,238,.08); }
.pill.small { padding: 8px 10px; font-size: 12px; border-radius: 15px; }
.pill-grid { display: grid; gap: 9px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.pill-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.stat { border: 1px solid var(--line); border-radius: 20px; background: rgba(0,0,0,0.24); padding: 15px; }
.stat .label { color: var(--muted); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.stat .value { font-size: 25px; font-weight: 800; margin-top: 7px; }
.stat .sub { color: var(--muted); font-size: 12px; margin-top: 4px; }
.list { display: grid; gap: 9px; }
.list-item { border-radius: 18px; padding: 12px; background: rgba(255,255,255,0.07); color: #e5edf8; font-size: 14px; }
.list-item.warn { border: 1px solid rgba(252,211,77,.25); background: rgba(252,211,77,.10); color: #fff7ed; }
.list-item.danger { border: 1px solid rgba(253,164,175,.3); background: rgba(253,164,175,.11); color: #ffe4e6; }
.list-item.ok { border: 1px solid rgba(134,239,172,.25); background: rgba(134,239,172,.10); color: #ecfdf5; }
.bar-row { margin-bottom: 13px; }
.bar-head { display: flex; justify-content: space-between; gap: 12px; color: #f8fafc; font-size: 13px; margin-bottom: 6px; }
.bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,0.10); overflow: hidden; }
.bar > div { height: 100%; background: var(--cyan); border-radius: 99px; }
.table-list { display: grid; gap: 9px; }
.table-row { border: 1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,.22); padding: 12px; }
.table-row .top { display: flex; justify-content: space-between; gap: 10px; font-weight: 700; }
.table-row .meta { margin-top: 5px; color: var(--muted); font-size: 12px; }
.action-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.sample-card { border: 1px solid var(--line); border-radius: 24px; background: rgba(0,0,0,.2); padding: 16px; }
.sample-card h3 { margin: 0; }
.sample-card p { color: var(--muted); font-size: 14px; }
.hidden { display: none !important; }
.footer-note { color: var(--muted-2); font-size: 12px; margin-top: 14px; }
@media (max-width: 1050px) { .grid.two, .grid.equal, .grid.three, .grid.four, .grid.five { grid-template-columns: 1fr; } .steps { grid-template-columns: 1fr; } .topbar { align-items: flex-start; flex-direction: column; } .nav { justify-content: flex-start; } }
@media print { .topbar, .progress-shell, .no-print { display: none !important; } body { background: white; color: #111; } .app-shell { width: 100%; padding: 0; } .card { box-shadow: none; border: 1px solid #ddd; background: white; color: #111; } }
