/**
 * ═══════════════════════════════════════════════════════════════════════════
 * NUBIA DESIGN TOKENS v1.0
 * Sistema de diseño centralizado - Fuente única de verdad
 * ═══════════════════════════════════════════════════════════════════════════
 */

:root {
  /* ─────────────────────────────────────────────────────────────────────────
     ESPACIADO (Sistema 4px base)
     ───────────────────────────────────────────────────────────────────────── */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  
  /* Aliases semánticos (compatibilidad) */
  --space-xs: var(--space-1);
  --space-sm: var(--space-2);
  --space-md: var(--space-4);
  --space-lg: var(--space-6);
  --space-xl: var(--space-8);
  --space-2xl: var(--space-12);
  --space-3xl: var(--space-16);

  /* ─────────────────────────────────────────────────────────────────────────
     RADIOS (Bordes redondeados)
     ───────────────────────────────────────────────────────────────────────── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* ─────────────────────────────────────────────────────────────────────────
     SOMBRAS (3 niveles)
     ───────────────────────────────────────────────────────────────────────── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Sombras con glow sutil (solo para acentos) */
  --shadow-glow-primary: 0 0 20px rgba(0, 212, 255, 0.2);
  --shadow-glow-mode: 0 0 24px rgba(168, 85, 247, 0.15);

  /* ─────────────────────────────────────────────────────────────────────────
     TIPOGRAFÍA
     ───────────────────────────────────────────────────────────────────────── */
  /* Familias */
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Orbitron', 'DM Sans', sans-serif;
  
  /* Tamaños (escala modular) */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  
  /* Pesos */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Interlineados */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* ─────────────────────────────────────────────────────────────────────────
     COLORES BASE
     ───────────────────────────────────────────────────────────────────────── */
  /* Fondos */
  --bg-deep: #030712;
  --bg-primary: #0a0f1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f2e;
  --bg-elevated: #242938;
  
  /* Superficies (aliases) */
  --surface-0: var(--bg-deep);
  --surface-1: var(--bg-primary);
  --surface-2: var(--bg-secondary);
  --surface-3: var(--bg-card);
  --surface-4: var(--bg-elevated);
  
  /* Texto */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Acentos */
  --accent-primary: #00d4ff;
  --accent-secondary: #0ea5e9;
  
  /* Bordes */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);

  /* ─────────────────────────────────────────────────────────────────────────
     COLORES POR MODO (mantener compatibilidad)
     ───────────────────────────────────────────────────────────────────────── */
  --mode-shock: #a855f7;
  --mode-shock-soft: rgba(168, 85, 247, 0.1);
  
  --mode-friendly: #fbbf24;
  --mode-friendly-soft: rgba(251, 191, 36, 0.1);
  
  --mode-analytic: #e2e8f0;
  --mode-analytic-soft: rgba(226, 232, 240, 0.08);
  
  --mode-pro: #ef4444;
  --mode-pro-soft: rgba(239, 68, 68, 0.1);
  
  --mode-tree: #39ff14;
  --mode-tree-soft: rgba(57, 255, 20, 0.1);
  
  --mode-secure: #3b82f6;
  --mode-secure-soft: rgba(59, 130, 246, 0.1);

  /* ─────────────────────────────────────────────────────────────────────────
     LAYOUT
     ───────────────────────────────────────────────────────────────────────── */
  --header-height: 80px;
  --container-max: 1400px;
  
  /* ─────────────────────────────────────────────────────────────────────────
     TRANSICIONES (micro-interacciones discretas)
     ───────────────────────────────────────────────────────────────────────── */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Aliases (compatibilidad) */
  --transition-smooth: var(--transition-base);
}

