.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

.quote {
  transition: opacity 0.4s ease;
}

.quote.updating {
  opacity: 0.3;
}

.card-value {
  transition: opacity 0.3s ease;
}
