html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

@keyframes pulseSlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 146, 30, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(245, 146, 30, 0); }
}
.animate-pulse-slow { animation: pulseSlow 2s infinite; }

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

::selection { background: #f5921e; color: #fff; }

/* Nicer scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #2a2a5a; border-radius: 8px; }
