/* Reveal, card and urgency animations. */

.reveal {
  animation: revealUp 0.22s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.04s;
}

.reveal:nth-child(3) {
  animation-delay: 0.08s;
}

.reveal:nth-child(4) {
  animation-delay: 0.12s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes urgencyPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}
