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

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes hero-glow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.hero-reveal {
  animation: hero-reveal 0.7s ease-out both;
}

.hero-reveal-1 {
  animation-delay: 0.12s;
}

.hero-reveal-2 {
  animation-delay: 0.24s;
}

.hero-reveal-3 {
  animation-delay: 0.36s;
}

.hero-float {
  animation: hero-float 8s ease-in-out infinite;
}

.hero-glow {
  animation: hero-glow 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal,
  .hero-float,
  .hero-glow {
    animation: none;
  }
}

/* Custom scrollbar for dark mode tech feel */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
  background: #334155;
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: #475569;
}
