What problem does it solve? Interfaces often feel off due to small compounding details like mismatched border radii, jarring animations, or inconsistent icon weights. This Skill provides concrete principles and code patterns for reviewing and fixing UI polish issues in frontend code. ## Core Features & Use Cases - Surface Refinement: Enforces concentric border radius, optical alignment, shadow-based elevation, and pure black/white image outlines. - Animation Guidance: Prescribes interruptible CSS transitions, staggered enter animations, subtle exits, exact icon cross-fade values, and motion restraint for high-frequency interactions. - Icon Consistency: Matches icon stroke weight to text weight, uses one currentColor SVG recolored per state, and handles RTL flipping rules. - Use Case: When a button press feels dead or a card looks visually off, apply the scale-on-press pattern (scale(0.96)) and concentric radius formula to fix the interaction and spacing. ## Quick Start Review my Button and Card components for UI polish issues and suggest fixes for animations, shadows, and border radius.