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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-animate {
  opacity: 0;
  animation: fadeUpSoft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-d1 { animation-delay: 0.1s; }
.hero-animate-d2 { animation-delay: 0.2s; }
.hero-animate-d3 { animation-delay: 0.3s; }
.hero-animate-d4 { animation-delay: 0.4s; }
.hero-animate-d5 { animation-delay: 0.5s; }
.hero-animate-d6 { animation-delay: 0.6s; }
.hero-animate-d7 { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .hero-animate {
    opacity: 1;
    animation: none;
  }
}

.hero-proof-card,
.usecase-card-premium,
.testimonial-card {
  animation: fadeUpSoft 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-proof-card:nth-child(2),
.usecase-card-premium:nth-child(2),
.testimonial-card:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-proof-card:nth-child(3),
.usecase-card-premium:nth-child(3),
.testimonial-card:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-proof-card:nth-child(4),
.usecase-card-premium:nth-child(4),
.testimonial-card:nth-child(4) {
  animation-delay: 0.24s;
}

.premium-pillar-card {
  animation: fadeUpSoft 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-pillar-card:nth-child(2) { animation-delay: 0.06s; }
.premium-pillar-card:nth-child(3) { animation-delay: 0.12s; }
.premium-pillar-card:nth-child(4) { animation-delay: 0.18s; }

.step-premium {
  animation: fadeUpSoft 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.step-premium:nth-child(2) { animation-delay: 0.1s; }
.step-premium:nth-child(3) { animation-delay: 0.2s; }

.seller-stat-card {
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.seller-stat-card:nth-child(2) { animation-delay: 0.06s; }
.seller-stat-card:nth-child(3) { animation-delay: 0.12s; }
.seller-stat-card:nth-child(4) { animation-delay: 0.18s; }

/* Impact stat cards — staggered slide-up with slight scale */
.impact-stat-card {
  animation: fadeUpSoft 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.impact-stat-card:nth-child(2) { animation-delay: 0.08s; }
.impact-stat-card:nth-child(3) { animation-delay: 0.16s; }
.impact-stat-card:nth-child(4) { animation-delay: 0.24s; }

.proof-card-home {
  animation: fadeUpSoft 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.proof-card-home:nth-child(2) { animation-delay: 0.1s; }
.proof-card-home:nth-child(3) { animation-delay: 0.2s; }

.faq-item {
  animation: fadeUpSoft 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.faq-item:nth-child(2) { animation-delay: 0.04s; }
.faq-item:nth-child(3) { animation-delay: 0.08s; }
.faq-item:nth-child(4) { animation-delay: 0.12s; }
.faq-item:nth-child(5) { animation-delay: 0.16s; }
.faq-item:nth-child(6) { animation-delay: 0.20s; }
.faq-item:nth-child(7) { animation-delay: 0.24s; }

.podium-card {
  animation: fadeUpSoft 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.podium-second { animation-delay: 0.1s; }
.podium-first { animation-delay: 0.2s; }
.podium-third { animation-delay: 0.3s; }
