/* ===================================================================
   РОСКУЗОВ.Кадры — дизайн-токены
   Палитра логотипа РОСКУЗОВ: белый фон + синий + красный акцент
   =================================================================== */

:root {
  /* Surfaces — белый как основа */
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-2: #f5f7fa;
  --color-surface-3: #eef2f7;
  --color-surface-offset: #e6ecf3;
  --color-surface-dark: #03326c;
  --color-surface-darker: #011f4a;
  --color-border: #dbe2eb;
  --color-divider: #eaeef3;

  /* Text — глубокий синий-графит */
  --color-text: #0f1a2c;
  --color-text-muted: #4a5666;
  --color-text-faint: #8a95a4;
  --color-text-inverse: #ffffff;

  /* Primary — синий логотипа */
  --color-primary: #0069b4;
  --color-primary-hover: #005495;
  --color-primary-active: #03326c;
  --color-primary-highlight: #d9ecf9;

  /* Accent — красный акцент логотипа */
  --color-accent: #d81117;
  --color-accent-hover: #b70d13;
  --color-accent-highlight: #fde5e6;

  /* Semantic */
  --color-success: #2f7a2f;
  --color-warning: #b08000;
  --color-error: #d81117;

  /* Radius — минимальные, промышленный вид */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — мягкие */
  --shadow-sm: 0 1px 2px rgba(3, 50, 108, 0.06);
  --shadow-md: 0 4px 16px rgba(3, 50, 108, 0.08);
  --shadow-lg: 0 16px 40px rgba(3, 50, 108, 0.12);

  /* Content widths */
  --content-narrow: 720px;
  --content-default: 1100px;
  --content-wide: 1360px;

  /* Fonts */
  --font-display: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.813rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.2vw, 0.938rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 1rem + 6vw, 6rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}
