No Linear Easing for Motion
Linear easing should only be used for progress indicators, not motion.
Incorrect (linear for motion):
.card { transition: transform 200ms linear; }Correct (linear for progress only):
.progress-bar { transition: width 100ms linear; }