:root {

  /* === Colors === */
  --color-primary: #e8ecf8;
  --color-secondary: #8b93ad;
  --color-accent: #22d3ee;
  --color-bg: #0f1120;
  --color-background: #0f1120;
  --color-surface: #1d1f2d;
  --color-text: #F9FAFB;
  --color-text-secondary: #8b93ad;
  --color-text-muted: #8b93ad;
  --color-link: #e8ecf8;

  /* === Typography === */
  --font-primary: Public Sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 1.0625rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 2.875rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-tight: 1.25;
  --line-height-normal: 1.65;
  --line-height-relaxed: 1.85;

  /* Text scale and density */
  --text-scale: 1.063; /* 0.875 | 1 | 1.125 | 1.25 */
  --text-density: 1.65; /* влияет на line-height */

  /* === Layout === */
  --content-width: 56rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.625rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 3.5rem;
  --spacing-2xl: 5rem;
  --spacing-3xl: 7rem;
  --content-width-readable: 56rem;
  --content-width-wide: 76rem;
  --space-scale: 1.625; /* 0.75 | 1 | 1.25 */;

  /* === Geometry === */
  --radius: 0.1875rem;
  --radius-sm: 0.125rem;
  --radius-md: 0.1875rem;
  --radius-lg: 0.25rem;
  --radius-xl: 0.375rem;
  --radius-full: 9999px;
  --border-width: 1px;
  --border-thin: 1px;
  --border-thick: 2px;

  /* === Depth === */
  --shadow-none: none;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;

  /* === Motion === */
  --transition-fast: 200ms;
  --transition-normal: 200ms;
  --transition-slow: 200ms;
}

/* === Motion System (disabled) === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}