/* ═══════════════════════════════════════════════
 * MySA Design Tokens
 * Single source of truth for all design values
 * ═══════════════════════════════════════════════ */

:root {
  /* ── Brand Colors ── */
  --mysa-green: #43C05F;
  --mysa-teal: #0090A8;
  --mysa-green-light: #52cd6c;
  --mysa-green-dark: #3ab85f;
  --mysa-whatsapp: #57d163;
  --mysa-gradient: linear-gradient(90deg, #43C05F 0%, #0090A8 100%);
  --mysa-gradient-89: linear-gradient(89.97deg, #3ab85f 0.02%, #007884 103.12%);

  /* ── Neutral Colors ── */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark-900: #0F172A;
  --color-dark-800: #1a1a1a;
  --color-dark-700: #262626;
  --color-dark-600: #2a2a2a;
  --color-dark-500: #333333;
  --color-gray-700: #64748B;
  --color-gray-600: #6b6b6b;
  --color-gray-500: #888888;
  --color-gray-400: #94a3b8;
  --color-gray-300: #e2e8f0;
  --color-gray-200: #e5e5e5;
  --color-gray-100: #f1f5f9;
  --color-gray-50: #f8fafc;

  /* ── Accent Colors ── */
  --color-blue: #0e9cdc;
  --color-blue-light: #00a2ff;
  --color-cyan: #22d3ee;
  --color-purple: #8b5cf6;

  /* ── Text Colors ── */
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --text-white-80: rgba(255, 255, 255, 0.8);
  --text-white-60: rgba(255, 255, 255, 0.6);

  /* ── Typography ──
     Single project font is defined by --site-font in css/sections/nav.css
     (loaded on every page). These alias it so everything stays in sync. */
  --font-primary: var(--site-font);
  --font-display: var(--site-font);
  --font-jakarta: var(--site-font);

  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 40px;

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

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 100px;

  /* ── Border Radius ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-3xl: 48px;
  --radius-pill: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.06);
  --shadow-green: 0 8px 24px rgba(67, 192, 95, 0.3);
  --shadow-teal: 0 4px 15px rgba(0, 144, 168, 0.3);

  /* ── Transitions ── */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Z-index Layers ── */
  --z-base: 1;
  --z-content: 2;
  --z-overlay: 10;
  --z-nav: 100;
  --z-sticky: 500;
  --z-modal-backdrop: 9998;
  --z-modal: 9999;
  --z-toast: 10000;

  /* ── Layout ── */
  --max-width: 1400px;
  --max-width-content: 1200px;
  --nav-height: 72px;
}
