:root {
    /* INDIGO - Color principal de marca */
    --nexio-primary: #6366f1;
    --nexio-primary-dark: #4f46e5;
    --nexio-primary-darker: #4338ca;
    --nexio-primary-light: #a5b4fc;
    --nexio-primary-lightest: #e0e7ff;

    /* SLATE - Color secundario */
    --nexio-slate-900: #0f172a;
    --nexio-slate-800: #1e293b;
    --nexio-slate-700: #334155;
    --nexio-slate-600: #475569;
    --nexio-slate-500: #64748b;
    --nexio-slate-400: #94a3b8;
    --nexio-slate-300: #cbd5e1;
    --nexio-slate-200: #e2e8f0;
    --nexio-slate-100: #f1f5f9;
    --nexio-slate-50: #f8fafc;

    /* EMERALD - Color de acento */
    --nexio-emerald: #10b981;
    --nexio-emerald-dark: #059669;
    --nexio-emerald-light: #ecfdf5;

    /* Colores de Estado */
    --success: #10b981;
    --success-bg: #ecfdf5;
    --success-border: #bbf7d0;
    --success-text: #065f46;

    --warning: #f59e0b;
    --warning-bg: #fffbeb;
    --warning-border: #fde68a;
    --warning-text: #92400e;

    --error: #ef4444;
    --error-bg: #fef2f2;
    --error-border: #fecdd3;
    --error-text: #881337;

    --info: #3b82f6;
    --info-bg: #dbeafe;
    --info-border: #bfdbfe;
    --info-text: #1e40af;

    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #4f46e5 100%);
    --gradient-card: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);

    /* Tipografía Scaling */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3.5rem;

    /* Pesos */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;

    /* Espaciado */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;

    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 25px rgba(99, 102, 241, 0.3);
    --shadow-emerald: 0 10px 25px rgba(16, 185, 129, 0.2);
}