What problem does it solve? It prevents inconsistent styling in the cocoly-frontend by replacing hardcoded colors, spacing, and fonts with the canonical Banorte design tokens and shared component classes defined in src/index.css. ## Core Features & Use Cases - Design Token Reference: Provides the complete catalog of CSS custom properties for colors, typography, spacing, radius, shadows, and z-index layers. - Component Class Catalog: Documents shared classes like .btn-primary, .card, .input-field, and the .tx-* editorial module so components are never re-implemented inline. - Anti-Pattern Enforcement: Lists forbidden patterns (hex literals, Tailwind arbitrary values, magic z-index numbers) with their correct token-based replacements. - Use Case: When asked to build a new settings panel, the Skill ensures the developer uses .card containers, .btn-primary for the save action, var(--color-banorte-red) focus rings, and --spacing-* tokens instead of inventing ad-hoc styles. ## Quick Start Review this React component and fix any styles that violate the Banorte design system tokens and component classes.