/**
 * Main Stylesheet
 *
 * This file imports all CSS modules in the correct order.
 * Import order matters for CSS cascade and specificity.
 *
 * Order:
 * 1. Variables - Design tokens used throughout
 * 2. Reset - Normalize browser defaults
 * 3. Typography - Base text styles
 * 4. Layout - Grid system and page structure
 * 5. Components - UI components and modules
 */

/* Design System Variables */
@import url('variables.css');

/* Reset & Normalization */
@import url('reset.css');

/* Base Typography */
@import url('typography.css');

/* Layout & Grid */
@import url('layout.css');

/* UI Components */
@import url('components.css');
