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

.hero,
.section-head,
.review-card,
.service-plan,
.official-match-card,
.admin-panel,
.member-card,
.legal-section {
    animation: tanFadeUp 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* Phase 13 — subtle and fast */
@keyframes tanFadeSoft {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.section-head,
.review-card,
.service-plan,
.official-match-card,
.admin-panel,
.member-card,
.legal-section {
    animation: tanFadeSoft 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
