/* ─── Animations ─────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.animate-in--delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}
.animate-in--delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}
.animate-in--delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}
.animate-in--delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}
