/* ============================================
   BISCAT DESIGN TOKENS
   ============================================ */

:root {
  /* ---- Backgrounds ---- */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7F8F7;
  --bg-surface: #F0F2F0;
  --bg-surface-hover: #E8EBE8;
  --bg-surface-elevated: #EAEDEA;

  /* ---- Text ---- */
  --text-primary: #1A1D1A;
  --text-secondary: #5A635E;
  --text-muted: #8A928D;
  --text-on-accent: #FFFFFF;

  /* ---- Brand Accent ---- */
  --accent-green: #4A7C50;
  --accent-green-hover: #3D6B43;
  --accent-green-dim: #7AA37E;
  --accent-green-deep: #2D5A32;
  --accent-green-glow: rgba(74, 124, 80, 0.12);
  --accent-green-glow-strong: rgba(74, 124, 80, 0.20);

  /* ---- Borders ---- */
  --border: rgba(74, 124, 80, 0.12);
  --border-hover: rgba(74, 124, 80, 0.28);
  --border-subtle: rgba(0, 0, 0, 0.05);

  /* ---- Typography ---- */
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.8125rem;  /* 13px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-md: 1.125rem;   /* 18px */
  --font-size-lg: 1.25rem;    /* 20px */
  --font-size-xl: 1.5rem;     /* 24px */
  --font-size-2xl: 2rem;      /* 32px */
  --font-size-3xl: 2.625rem;  /* 42px */
  --font-size-4xl: 3.5rem;    /* 56px */
  --font-size-hero: 4rem;     /* 64px */

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.1;
  --line-height-snug: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.75;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.06em;
  --letter-spacing-wider: 0.12em;

  /* ---- Spacing ---- */
  --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 */

  --section-padding: 7.5rem;      /* 120px */
  --section-padding-mobile: 4rem;  /* 64px */
  --container-max: 1200px;
  --container-narrow: 800px;

  /* ---- Radii ---- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 0 30px var(--accent-green-glow);
  --shadow-glow-strong: 0 0 60px var(--accent-green-glow-strong);

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

  /* ---- Z-index layers ---- */
  --z-base: 1;
  --z-above: 10;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
}
