@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glow-loop {
  0% {
    box-shadow: 0 0 0 0 rgba(148, 163, 184, 0.35);
  }
  60% {
    box-shadow: 0 0 0 18px rgba(148, 163, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(148, 163, 184, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade {
  animation: fade-in 0.7s ease-out both;
}

.animate-rise {
  animation: rise 0.9s ease-out both;
}

.animate-glow {
  animation: glow-loop 2.6s ease-out infinite;
}

.animate-shimmer {
  background: linear-gradient(120deg, rgba(148, 163, 184, 0.05), rgba(255, 255, 255, 0.16), rgba(148, 163, 184, 0.05));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}


