/* design-tokens.css - Бюро Майорских */
/* Генерируется из DESIGN.md. Только дефисы в комментариях, без длинных тире. */

:root {
  /* Background */
  --bg-base: #0a0a0f;
  --bg-raised: #14141a;
  --bg-elevated: #1c1c24;

  /* Text */
  --text-primary: #f0f0f5;
  --text-secondary: #d6dbe6;
  --text-muted: #9aa0ad;
  --text-inverse: #0a0a0f;

  /* Accent */
  --accent: #3dd8e8;
  --accent-dim: #2aa3b2;

  /* Border */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Typography scale */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hero: 'Manrope', sans-serif;

  --text-xs: 14px;
  --text-sm: 16px;
  --text-base: 20px;
  --text-lg: 25px;
  --text-xl: 31px;
  --text-2xl: 39px;

  --leading-text: 1.5;
  --leading-heading: 1.15;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Component tokens */
  --radius-sm: 10px;
  --radius-md: 14px;

  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 250ms ease;
}
