What problem does it solve? Frontend pages in the SafeGuard project often end up with inconsistent styling: inline styles, hardcoded hex colors, and layouts that break on mobile. This Skill enforces a single canonical styling approach so every route and component follows the same antd-style conventions. ## Core Features & Use Cases - Colocated Style Files: Enforces a style.ts file next to every page.tsx route and a styles.ts next to non-page components. - Token-Based Design: Requires Ant Design tokens for colors, spacing, radius, and typography instead of hardcoded values. - Responsive-First Rules: Mandates mobile-first layouts verified at 360px, 768px, and desktop widths with no horizontal overflow. - Use Case: When building a new dashboard route, use this Skill to scaffold the page with a createStyles hook, token-based spacing, and media queries that stack action rows on mobile. ## Quick Start Style the new incidents page following the SafeGuard antd-style conventions with a colocated style.ts file and mobile-responsive layout.