:root {
    /* Primary colors - matching app */
    --primary: #1e3a8a;
    --primary-dark: #1e2d5e;
    --primary-light: #dbeafe;
    --primary-lightest: #f0f9ff;

    /* Accent colors - app green and purple */
    --accent-green: #16a34a;
    --accent-green-dark: #15803d;
    --accent-green-light: #dcfce7;
    --accent-green-lightest: #f0fdf4;
    --accent-purple: #9333ea;
    --accent-purple-dark: #7e22ce;
    --accent-purple-light: #f3e8ff;

    /* Status colors */
    --success: #16a34a;
    --success-dark: #047857;
    --warning: #f59e0b;
    --warning-dark: #d97706;
    --danger: #dc2626;
    --danger-light: #fef2f2;

    /* Grays */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Layout */
    --max-width: 1100px;
    --section-gap: 4rem;
    --content-padding: 1.5rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);

    /* Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}
