:root {
  color-scheme: light;
  --ink: #12211d;
  --ink-2: #20302b;
  --ink-3: #43534d;
  --muted: #71807a;
  --line: #dedfd9;
  --line-strong: #c9cbc3;
  --porcelain: #f6f4ee;
  --paper: #fffefa;
  --paper-2: #f0eee7;
  --violet: #6558e8;
  --violet-dark: #5145cf;
  --violet-soft: #ebe9ff;
  --coral: #ff6b55;
  --coral-soft: #fff0ec;
  --mint: #7dd7b8;
  --mint-soft: #e4f7f0;
  --amber: #f5b94c;
  --amber-soft: #fff6df;
  --blue: #4f8df7;
  --blue-soft: #eaf2ff;
  --danger: #d5443d;
  --success: #16845b;
  --shadow-sm: 0 1px 2px rgba(18, 33, 29, .04), 0 8px 24px rgba(18, 33, 29, .04);
  --shadow-md: 0 18px 60px rgba(18, 33, 29, .12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --sidebar: 258px;
  --topbar: 92px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-ui: "DM Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--porcelain); color: var(--ink); font-family: var(--font-ui); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

::selection { background: var(--violet-soft); color: var(--ink); }
:focus-visible { outline: 3px solid rgba(101, 88, 232, .32); outline-offset: 3px; }

.eyebrow { margin: 0 0 5px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .105em; text-transform: uppercase; }
.button { min-height: 44px; border: 1px solid transparent; border-radius: 12px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 700; cursor: pointer; transition: .2s var(--ease); }
.button.primary { background: var(--violet); color: white; box-shadow: 0 8px 20px rgba(101, 88, 232, .22); }
.button.primary:hover { background: var(--violet-dark); transform: translateY(-1px); }
.button.secondary { background: var(--paper); border-color: var(--line); }
.button.secondary:hover { border-color: var(--line-strong); background: white; }
.button.ghost { background: transparent; color: var(--ink-3); }
.button svg { width: 18px; height: 18px; }

.status-pill { display: inline-flex; align-items: center; gap: 7px; min-height: 28px; padding: 0 10px; border-radius: 999px; font-size: .74rem; font-weight: 700; white-space: nowrap; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pill.success { color: var(--success); background: var(--mint-soft); }
.status-pill.warning { color: #9a6410; background: var(--amber-soft); }
.status-pill.info { color: #315fc0; background: var(--blue-soft); }
.status-pill.danger { color: var(--danger); background: var(--coral-soft); }
.status-pill.neutral { color: var(--ink-3); background: var(--paper-2); }

.surface-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.section-heading h2 { margin: 0; font: 600 1.12rem/1.25 var(--font-display); letter-spacing: -.025em; }
.section-heading p { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
