What problem does it solve? GSAP animations can cause jank, dropped frames, and poor scroll performance when they animate layout-heavy properties or create excessive tweens. This Skill provides the rules and patterns to keep animations on the compositor thread at a smooth 60fps. ## Core Features & Use Cases - Compositor-Friendly Properties: Enforces animating transform and opacity (x, y, scale, rotation) instead of layout-triggering properties like width, height, top, and left. - Efficient Update Patterns: Covers gsap.quickTo() for frequently updated values like mouse followers, stagger for lists, and correct will-change usage. - ScrollTrigger Tuning: Guidance on pin promotion, scrub values, debounced ScrollTrigger.refresh() calls, and cleaning up off-screen animations. - Use Case: A page with scroll-driven animations stutters on mobile. Apply this Skill to replace left/top animations with x/y transforms, add will-change only to animating elements, and debounce ScrollTrigger.refresh() to restore smooth scrolling. ## Quick Start Review my GSAP animation code and optimize it for smooth 60fps performance on mobile devices.