What problem does it solve? GSAP animations can cause jank, dropped frames, and layout thrashing when developers animate layout-heavy properties or create excessive tweens. This Skill provides concrete guidance to keep animations on the compositor thread and maintain smooth 60fps rendering. ## Core Features & Use Cases - Transform-First Animation: Guides you to animate x, y, scale, rotation, and opacity instead of layout-triggering properties like width, height, top, and left. - Efficient Update Patterns: Recommends gsap.quickTo() for frequently updated properties such as mouse followers, and stagger instead of many separate tweens. - ScrollTrigger Optimization: Covers pin promotion, scrub tuning, and debounced ScrollTrigger.refresh() calls to reduce scroll-related work. - Use Case: When a user reports a laggy scroll-driven animation or a janky mouse-follower effect, apply these rules to replace layout-heavy tweens with compositor-friendly transforms and reusable quickTo instances. ## Quick Start Review my GSAP animation code and optimize it for smooth 60fps performance using transforms and quickTo.