/* ==========================================================================
   CSS Custom Properties (Variables) - Matched to Figma
   ========================================================================== */

:root {
    /* Colors from Figma */
    --color-primary: #0d6efd;
    --color-primary-light: #72abff;
    --color-primary-lighter: #88b8ff;
    --color-primary-bg: rgba(13, 110, 253, 0.1);
    --color-primary-border: rgba(13, 110, 253, 0.2);

    --color-black: #020100;
    --color-text: #3d3d3d;
    --color-text-muted: #58556c;
    --color-text-light: #717171;
    --color-white: #ffffff;

    --color-bg: #ffffff;
    --color-bg-light: #f5fbff;
    --color-bg-blue: #f0f6ff;
    --color-bg-blue-medium: #cce0ff;
    --color-bg-blue-border: #dceaff;
    --color-bg-gray: #f3f3f3;
    --color-bg-gray-light: #f5f5f5;

    --color-border: #d9d9d9;
    --color-border-light: #c3c0c0;

    /* Typography - Inter font */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font weights */
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;

    /* Border radius from Figma */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-2xl: 65px;
    --radius-full: 1000px;

    /* Shadows from Figma */
    --shadow-sm: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    --shadow-md: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    --shadow-card: -8px 4px 20px 0px rgba(0, 0, 0, 0.1);

    /* Container */
    --container-max: 1228px;
    --container-padding: 1.5rem;
}
