[data-animate] {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

.magnetic { transition: transform 0.2s ease; }
@media (prefers-reduced-motion: reduce) {
  .magnetic { transition: none; }
}

/* Staggered reveal: grid children float up one after another instead of all at once */
[data-animate] .bento-grid > *,
[data-animate] .stats > * {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible .bento-grid > *,
[data-animate].is-visible .stats > * { opacity: 1; transform: none; }

[data-animate] .offer-list > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].is-visible .offer-list > * { opacity: 1; transform: none; }

.bento-grid > :nth-child(1), .stats > :nth-child(1) { transition-delay: 0s; }
.bento-grid > :nth-child(2), .stats > :nth-child(2) { transition-delay: 0.16s; }
.bento-grid > :nth-child(3), .stats > :nth-child(3) { transition-delay: 0.32s; }
.bento-grid > :nth-child(4) { transition-delay: 0.48s; }
.bento-grid > :nth-child(5) { transition-delay: 0.64s; }
.bento-grid > :nth-child(6) { transition-delay: 0.8s; }
.offer-list > :nth-child(1) { transition-delay: 0s; }
.offer-list > :nth-child(2) { transition-delay: 0.08s; }
.offer-list > :nth-child(3) { transition-delay: 0.16s; }
.offer-list > :nth-child(4) { transition-delay: 0.24s; }
.offer-list > :nth-child(5) { transition-delay: 0.32s; }
.offer-list > :nth-child(6) { transition-delay: 0.4s; }
.offer-list > :nth-child(7) { transition-delay: 0.48s; }
.offer-list > :nth-child(8) { transition-delay: 0.56s; }
.offer-list > :nth-child(9) { transition-delay: 0.64s; }
.offer-list > :nth-child(10) { transition-delay: 0.72s; }
.offer-list > :nth-child(11) { transition-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] .bento-grid > *,
  [data-animate] .stats > *,
  [data-animate] .offer-list > * {
    opacity: 1; transform: none; transition: none; transition-delay: 0s;
  }
}
