@keyframes hello { from { transform: translateY(7px); opacity: .7; } to { transform: none; opacity: 1; } }
.profile-header { animation: hello .55s cubic-bezier(.16,1,.3,1) both; }
.profile-image { transition: transform .35s cubic-bezier(.16,1,.3,1); }
.profile-image:hover { transform: rotate(-5deg); }
.cards .product { transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.cards .product:hover { transform: translateY(-3px); box-shadow: 0 9px 22px #37233f0c; }
.cards .product-foldout { background: #e4eeff; }
.cards .product-moving { background: #e6f2dc; }
.stage-foldout { background: #ccdfff !important; color: #294d7d !important; }
.stage-moving { background: #d5efcb !important; color: #26522d !important; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .profile-image:hover, .cards .product:hover { transform: none; }
}
