What problem does it solve? Interfaces often feel sluggish or unpolished because of subtle animation mistakes: wrong easing curves, excessive durations, scale-from-zero entrances, and non-interruptible keyframes. This Skill encodes Emil Kowalski's design engineering philosophy to help you diagnose and fix those details in UI code. ## Core Features & Use Cases - Animation Decision Framework: Decide whether an element should animate at all based on usage frequency, then choose the right easing curve, duration, and technique (CSS transitions, springs, WAAPI). - Structured UI Reviews: Get Before/After/Why markdown tables identifying issues like transition: all, ease-in on UI elements, missing :active press states, and incorrect transform-origin on popovers. - Component Craft Guidance: Apply patterns for buttons, tooltips, drawers, toasts, drag gestures, stagger animations, and accessibility (prefers-reduced-motion, touch hover gating). - Use Case: Paste a React dropdown component and receive a table of concrete fixes, such as replacing a 400ms ease-in transition with a 200ms custom ease-out curve and origin-aware scaling. ## Quick Start Review my dropdown component's animation code and suggest improvements to make it feel more responsive.