body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth; }

/*
 * Custom Scrollbar
 */
::-webkit-scrollbar {
  width: 8px; }

::-webkit-scrollbar-track {
  background: transparent; }

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px; }

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; }

.dark ::-webkit-scrollbar-thumb {
  background: #334155; }

.dark ::-webkit-scrollbar-thumb:hover {
  background: #475569; }

/*
 * Animation Utilities
 */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out; }

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0); }

