/* ═══════════════════════════════════════
   HELLENGINEERS — RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--trans), color var(--trans);
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: pointer; }
input, textarea, select { font-family: var(--font-b); }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }
::selection { background: var(--accent-dim); color: var(--accent2); }
