/* Design System Variables - NATO-Inspired Palette */

:root {
  /* Color Palette - Military Command Center Aesthetic */
  --color-bg-primary: #0a0e14;
  --color-bg-secondary: #1a1f28;
  --color-bg-tertiary: #252b36;

  --color-primary: #2c3e50;
  --color-accent: #34a853;
  --color-alert: #c9302c;

  --color-text: #e8eaed;
  --color-text-muted: #9aa0a6;
  --color-text-dim: #6b7280;

  --color-border: #2d3748;
  --color-border-accent: #34a853;

  /* Typography */
  --font-heading: 'Rajdhani', 'Franklin Gothic Medium', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Roboto Mono', 'Courier New', monospace;

  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --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: 1.875rem;    /* 30px */
  --font-size-3xl: 2.25rem;     /* 36px */
  --font-size-4xl: 3rem;        /* 48px */
  --font-size-5xl: 3.75rem;     /* 60px */

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

  --line-height-tight: 1.2;
  --line-height-snug: 1.375;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.75;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* Spacing - 8px base unit */
  --spacing-unit: 8px;
  --spacing-xs: calc(var(--spacing-unit) * 1);    /* 8px */
  --spacing-sm: calc(var(--spacing-unit) * 2);    /* 16px */
  --spacing-md: calc(var(--spacing-unit) * 3);    /* 24px */
  --spacing-lg: calc(var(--spacing-unit) * 4);    /* 32px */
  --spacing-xl: calc(var(--spacing-unit) * 6);    /* 48px */
  --spacing-2xl: calc(var(--spacing-unit) * 8);   /* 64px */
  --spacing-3xl: calc(var(--spacing-unit) * 12);  /* 96px */
  --spacing-4xl: calc(var(--spacing-unit) * 16);  /* 128px */

  /* Layout */
  --max-width: 1200px;
  --max-width-text: 65ch;
  --border-radius: 2px;
  --border-width: 1px;
  --border-width-thick: 2px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Z-index layers */
  --z-base: 1;
  --z-elevated: 10;
  --z-nav: 100;
  --z-overlay: 1000;

  /* Tactical Grid */
  --grid-color: rgba(52, 168, 83, 0.08);
  --grid-size: 40px;
}

/* Media Query Breakpoints (for reference in CSS) */
/* Mobile: 320px - 767px */
/* Tablet: 768px - 1023px */
/* Desktop: 1024px+ */
