/* ── Universal Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
::selection { background: rgba(255,95,0,0.35); color: #fff; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,95,0,0.3); }
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--orange); color: #fff; padding: 8px 16px;
    z-index: 1000; font-size: 0.85rem;
    text-decoration: none; font-family: var(--font-b);
}
.skip-link:focus { top: 0; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
