What cubic-bezier does Material Design use?
MD3 uses three main easings: Standard `cubic-bezier(0.2,0,0,1)`, Emphasized `cubic-bezier(0.2,0,0,1)` (with different durations), and Decelerated `cubic-bezier(0,0,0,1)` for entries. Linear is used for progress waves.
Do spring animations need cubic-bezier?
Not necessarily. Real springs require JavaScript (framer-motion, react-spring) because physical overshoot is difficult to represent in pure cubic-bezier. But a convincing approximation is possible with Y values beyond 1.