/**
 * PraetorX Design Tokens
 * Brand-compliant design system
 */

:root {
  /* Colors */
  --color-primary: #C1121F;
  --color-primary-dark: #8F0D13;
  --color-background: #0A0A0C;
  --color-surface: #1F1F23;
  --color-text: #F5F5F7;
  --color-text-secondary: #D9D9D9;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  --font-size-h1: 4rem;        /* 64px */
  --font-size-h2: 3rem;        /* 48px */
  --font-size-h3: 2rem;        /* 32px */
  --font-size-h4: 1.5rem;      /* 24px */
  --font-size-body: 1rem;      /* 16px */
  --font-size-small: 0.875rem; /* 14px */

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

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 96px;

  /* Layout */
  --container-max: 1200px;
  --grid-columns: 12;
  --grid-gutter: 96px;

  /* Borders */
  --border-width: 2px;
  --border-angle: 45deg;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
}

/* Responsive typography */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 2.5rem;  /* 40px */
    --font-size-h2: 2rem;    /* 32px */
    --font-size-h3: 1.5rem;  /* 24px */
    --grid-gutter: 24px;
  }
}
