What problem does it solve? Responsive CSS written desktop-first with max-* variants is hard to reason about and inconsistent with a min-width design system. This Skill enforces a single mobile-first convention for Tailwind utilities so every breakpoint override only adds behavior going wider. ## Core Features & Use Cases - Mobile-first enforcement: Base unprefixed utilities describe the phone; sm:/md:/lg:/xl:/2xl: prefixes only add or override for wider screens. - max- ban*: Detects and converts max-md:hidden-style variants into mobile-first equivalents like hidden md:flex. - Visibility toggle rules: Provides a cheat sheet for showing/hiding elements per breakpoint while restoring the correct natural display (flex, block, inline, grid). - Use Case: While reviewing a diff that adds a responsive navbar, flag flex max-md:hidden and rewrite it as hidden md:flex so the phone layout stays the unprefixed default. ## Quick Start Review this component's Tailwind classes and convert any max-* responsive variants into mobile-first utilities.