/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

/* ── Reveal-on-scroll (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Selection ── */
::selection { background: rgba(212,168,67,0.25); color: #f1f5f9; }

/* ── Focus visible ── */
:focus-visible { outline: 2px solid rgba(212,168,67,0.6); outline-offset: 2px; border-radius: 4px; }

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0f1a; }
::-webkit-scrollbar-thumb { background: #1e2d3d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2d4a5e; }
