/* ─── Scroll Reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].is-visible   { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="100"] { transition-delay: 100ms; }
[data-reveal][data-delay="200"] { transition-delay: 200ms; }
[data-reveal][data-delay="300"] { transition-delay: 300ms; }
[data-reveal][data-delay="400"] { transition-delay: 400ms; }
[data-reveal][data-delay="500"] { transition-delay: 500ms; }

/* ─── Page load ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Hero entrance ──────────────────────────────────────── */
.nav           { animation: fadeIn  0.5s ease-out 0.05s both; }
.hero-orb      { animation: fadeIn  0.7s ease-out 0.10s both; }
/* .hero__title and .hero__sub are handled by GSAP text-reveal */
.hero__actions { animation: fadeUp  0.6s ease-out 0.45s both; }

.hero__stats .stat-card { animation: fadeUp 0.6s ease-out both; }
.hero__stats .stat-card:nth-child(1) { animation-delay: 0.55s; }
.hero__stats .stat-card:nth-child(2) { animation-delay: 0.65s; }
.hero__stats .stat-card:nth-child(3) { animation-delay: 0.75s; }
.hero__stats .stat-card:nth-child(4) { animation-delay: 0.85s; }
