/* ═══════════════════════════════════════════════════════════════════════════
   variables.css — Meerkat Brand Token System
   ─────────────────────────────────────────────────────────────────────────
   THIS IS THE SINGLE SOURCE OF TRUTH FOR ALL VISUAL VALUES.
   To rebrand: edit only this file. No changes needed anywhere else.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand Colors ────────────────────────────────────────────────────────
     Primary: Red — CTAs, active nav links, focus rings, hover accents
     Secondary: Cyan — used very sparingly (1–2 accents max per page)
     Tertiary: Yellow — used very sparingly (1 accent max per page)       */
  --color-primary:         #DF2E43;
  --color-primary-dark:    #b8202f;   /* hover / pressed state             */
  --color-primary-light:   #f5e6e8;   /* tint for backgrounds / badges     */
  --color-secondary:       #00DDFF;
  --color-secondary-dark:  #00aacc;
  --color-tertiary:        #F3EF0B;
  --color-tertiary-dark:   #c4c009;

  /* ── Surface / Background Colors ─────────────────────────────────────── */
  --color-bg-white:        #FFFFFF;
  --color-bg-light:        #F4F5F7;   /* alternate section backgrounds      */
  --color-bg-dark:         #0A0E19;   /* hero, footer, dark CTA banners     */

  /* ── Text Colors ──────────────────────────────────────────────────────── */
  --color-text-primary:    #0D0D0D;
  --color-text-inverse:    #FFFFFF;

  /* ── Border Colors ────────────────────────────────────────────────────── */
  --color-border:          #E5E7EB;
  --color-border-dark:     rgba(255, 255, 255, 0.12);

  /* ── Typography ───────────────────────────────────────────────────────── */
  --font-sans:   'Inter', system-ui, -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', 'Cascadia Code',
                 'Source Code Pro', Consolas, monospace;

  --font-size-xs:   0.875rem;   /* 14px */
  --font-size-sm:   1rem;       /* 16px */
  --font-size-base: 1.125rem;   /* 18px */
  --font-size-lg:   1.25rem;    /* 20px */
  --font-size-xl:   1.375rem;   /* 22px */
  --font-size-2xl:  1.5rem;     /* 24px */
  --font-size-3xl:  1.875rem;   /* 30px */
  --font-size-4xl:  2.25rem;    /* 36px */
  --font-size-5xl:  3rem;       /* 48px */
  --font-size-6xl:  3.75rem;    /* 60px */

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

  --line-height-tight:    1.2;
  --line-height-snug:     1.375;
  --line-height-normal:   1.5;
  --line-height-relaxed:  1.625;

  /* ── Spacing Scale (base-4, rem) ──────────────────────────────────────── */
  --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 */

  /* ── Layout ───────────────────────────────────────────────────────────── */
  --container-max:   1200px;
  --container-wide:  1400px;
  --container-pad:   var(--space-6);  /* horizontal padding on container   */

  /* ── Border Radius ────────────────────────────────────────────────────── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  /* ── Shadows ──────────────────────────────────────────────────────────── */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl:  0 20px 60px rgba(0, 0, 0, 0.18);

  /* ── Transitions ──────────────────────────────────────────────────────── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* ── Z-index Scale ────────────────────────────────────────────────────── */
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
}