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

html { scroll-behavior: smooth; }

body { background: #0a1628; color: #faf6f0; font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a1628; }
::-webkit-scrollbar-thumb { background: #d97706; border-radius: 3px; }

/* Selection */
::selection { background: rgba(245,158,11,0.25); color: #faf6f0; }

/* Focus */
:focus-visible { outline: 2px solid #f59e0b; outline-offset: 3px; }

/* Smooth section transitions handled by scroll */
