/* ============================================================
   VibeSecurity - Reset & Base
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-sans);
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ── UTILITY CLASSES ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.mono {
  font-family: var(--font-mono);
}

.text-primary   { color: var(--ink); }
.text-secondary { color: var(--ink-2); }
.text-muted     { color: var(--ink-3); }
.text-purple    { color: var(--p-light); }
.text-green     { color: var(--green); }
.text-red       { color: var(--red); }
.text-amber     { color: var(--amber); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--void-3); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-3); }

/* ── SELECTION ── */
::selection {
  background: rgba(124, 93, 249, 0.25);
  color: var(--ink);
}
