:root {
    /* Color Palette - Modern SaaS Look */
    --primary-color: #3b82f6;      /* Blue - Primary brand color */
    --primary-light: #93c5fd;      /* Light blue for highlights */
    --primary-dark: #1e40af;       /* Dark blue for hover states */
    
    --secondary-color: #10b981;    /* Green - Accent color */
    --secondary-light: #a7f3d0;    /* Light green */
    --secondary-dark: #047857;     /* Dark green */
    
    --accent-color: #f59e0b;       /* Yellow/Gold - Additional accent */
    --accent-light: #fcd34d;       /* Light yellow/gold */
    --accent-dark: #b45309;        /* Dark yellow/gold */
    
    --success-color: #10b981;      /* Success messages */
    --error-color: #ef4444;        /* Error messages */
    --warning-color: #f59e0b;      /* Warning messages */
    --info-color: #3b82f6;         /* Info messages */
    
    /* Neutral Colors */
    --white: #ffffff;
    --grey-50: #f9fafb;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --grey-800: #1f2937;
    --grey-900: #111827;
    --black: #000000;
    
    /* Text Colors */
    --text-primary: var(--grey-900);
    --text-secondary: var(--grey-700);
    --text-tertiary: var(--grey-500);
    --text-inverse: var(--white);
    
    /* Background Colors */
    --bg-primary: var(--white);
    --bg-secondary: var(--grey-50);
    --bg-tertiary: var(--grey-100);
    
    /* Border Colors */
    --border-light: var(--grey-200);
    --border-medium: var(--grey-300);
    --border-dark: var(--grey-400);
    
    /* Spacing - Based on 4px grid system */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */
    --space-40: 10rem;    /* 160px */
    --space-48: 12rem;    /* 192px */
    --space-56: 14rem;    /* 224px */
    --space-64: 16rem;    /* 256px */
    
    /* Font Families */
    --font-body: 'Open Sans', sans-serif;  /* Google Font for body text */
    --font-display: 'Playfair Display', serif;  /* Google Font for headings */
    
    /* Font Sizes - Fluid typographic scale */
    --text-xs: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);         /* 12px */
    --text-sm: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);      /* 14px */
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);      /* 16-18px */
    --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);    /* 18-20px */
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);        /* 20-24px */
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);         /* 24-30px */
    --text-3xl: clamp(1.875rem, 1.55rem + 1.625vw, 2.25rem);   /* 30-36px */
    --text-4xl: clamp(2.25rem, 1.85rem + 2vw, 3rem);           /* 36-48px */
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);             /* 48-64px */
    
    /* Font Weights */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Border Radius */
    --radius-sm: 0.125rem;   /* 2px */
    --radius: 0.25rem;       /* 4px */
    --radius-md: 0.375rem;   /* 6px */
    --radius-lg: 0.5rem;     /* 8px */
    --radius-xl: 0.75rem;    /* 12px */
    --radius-2xl: 1rem;      /* 16px */
    --radius-3xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;   /* Fully rounded */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition-fast: 150ms;
    --transition-normal: 300ms;
    --transition-slow: 500ms;
    --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-ease-in: cubic-bezier(0.4, 0, 1, 1);
    --transition-ease-out: cubic-bezier(0, 0, 0.2, 1);
    --transition-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index values */
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-40: 40;
    --z-50: 50;
    --z-auto: auto;
    
    /* Container widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    
    /* Grid */
    --grid-cols-1: 1;
    --grid-cols-2: 2;
    --grid-cols-3: 3;
    --grid-cols-4: 4;
    --grid-cols-5: 5;
    --grid-cols-6: 6;
    --grid-cols-12: 12;
} 