* { box-sizing: border-box; }
html { min-width: 320px; background: var(--color-bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -20%, rgba(76, 29, 149, 0.14), transparent 34%),
    linear-gradient(180deg, #040711, var(--color-bg) 45%, #050a16);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
button, input, select { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
:focus-visible { outline: 2px solid #a78bfa; outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.icon { width: 18px; height: 18px; flex: 0 0 auto; }
.muted { color: var(--color-text-muted); }
.button {
  min-height: 40px; padding: 0 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); background: rgba(11, 17, 31, 0.76);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.button:hover { border-color: rgba(139, 92, 246, 0.52); background: rgba(124, 58, 237, 0.12); }
.button--primary { border-color: transparent; background: linear-gradient(135deg, #7c3aed, #5b21d1); box-shadow: 0 10px 28px rgba(91, 33, 209, .28); }
.button--primary:hover { background: linear-gradient(135deg, #8b5cf6, #6d28d9); transform: translateY(-1px); }
.panel { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(13, 21, 38, .94), rgba(7, 13, 26, .96)); box-shadow: var(--shadow-panel); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }
