/* ============================================================
   MEETBUYERS v2 — Design Tokens
   Colores de marca: Primary #00A6FF · Secondary #A20097
   ============================================================ */

:root {
  /* Brand palette */
  --color-primary:        #00A6FF;
  --color-primary-dark:   #0088D4;
  --color-primary-light:  #33BBFF;
  --color-secondary:      #A20097;
  --color-secondary-dark: #7A0073;
  --color-secondary-light:#C800C0;
  --color-accent:         #7B2FF2;

  /* Gradient */
  --gradient-brand:    linear-gradient(135deg, #00A6FF 0%, #A20097 100%);
  --gradient-brand-r:  linear-gradient(135deg, #A20097 0%, #00A6FF 100%);
  --gradient-soft:     linear-gradient(135deg, rgba(0,166,255,.08) 0%, rgba(162,0,151,.08) 100%);
  --gradient-hero:     linear-gradient(135deg, #0a1628 0%, #1a1040 50%, #0d0022 100%);

  /* Neutral */
  --color-dark:       #262B47;
  --color-dark-mid:   #3D4466;
  --color-mid:        #6B7280;
  --color-muted:      #9CA3AF;
  --color-border:     #E5E7EB;
  --color-border-light:#F3F4F6;
  --color-surface:    #FFFFFF;
  --color-surface-2:  #F8FAFC;
  --color-surface-3:  #F0F6FF;

  /* Semantic */
  --color-success:    #10B981;
  --color-warning:    #F59E0B;
  --color-error:      #EF4444;
  --color-info:       #3B82F6;

  /* Typography */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', sans-serif;

  --text-xs:   .75rem;
  --text-sm:   .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:  3rem;
  --text-6xl:  3.75rem;

  --weight-normal:   400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extrabold:800;

  --leading-tight:  1.2;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;

  /* Spacing */
  --space-1:  .25rem;
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border */
  --radius-sm:   .375rem;
  --radius-md:   .5rem;
  --radius-lg:   .75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.16);
  --shadow-brand: 0 8px 32px rgba(0,166,255,.25);
  --shadow-brand-lg: 0 16px 48px rgba(0,166,255,.3);

  /* Transition */
  --transition-fast:   150ms cubic-bezier(.4,0,.2,1);
  --transition-base:   250ms cubic-bezier(.4,0,.2,1);
  --transition-slow:   400ms cubic-bezier(.4,0,.2,1);

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky:   1020;
  --z-fixed:    1030;
  --z-modal-backdrop: 1040;
  --z-modal:    1050;
  --z-toast:    1060;
}
