/* ==========================================================================
   Arena of Stars — variables.css
   Дизайн-токены: цвета, типографика, сетка, движение.
   Источники: ТЗ §5.3, §5.4, §17.
   ========================================================================== */

:root {
  /* ── Цветовая система ─────────────────────────────────────────── */
  --color-bg: #0a0a0a;
  --color-bg-soft: #151515;
  --color-bg-deep: #050505;
  --color-surface: #f4f1eb;
  --color-surface-soft: #ebe5dc;
  --color-text: #f5f3ef;
  --color-text-dark: #111111;
  --color-muted: #a8a8a8;
  --color-muted-dark: #6f6f6f;
  --color-line: rgba(255, 255, 255, 0.18);
  --color-line-dark: rgba(17, 17, 17, 0.14);
  --color-accent: #c7a25f;
  --color-accent-dark: #72501d;
  --color-accent-dim: rgba(199, 162, 95, 0.18);

  /* Тематические семейства — переключаются модификатором секции */
  --theme-bg: var(--color-bg);
  --theme-text: var(--color-text);
  --theme-muted: var(--color-muted);
  --theme-line: var(--color-line);
  --theme-heading: var(--color-text);

  /* ── Типографика ──────────────────────────────────────────────── */
  --font-display: "Unbounded", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;

  --font-display-xl: clamp(3.4rem, 7.4vw, 8.5rem);
  --font-display-lg: clamp(2.8rem, 7vw, 7.5rem);
  --font-display-md: clamp(2.4rem, 5.5vw, 6rem);
  --font-heading: clamp(2.15rem, 3.35vw, 4.5rem);
  --font-subheading: clamp(1.4rem, 2.2vw, 2.4rem);
  --font-body-lg: clamp(1.1rem, 1.3vw, 1.5rem);
  --font-body-size: clamp(1rem, 1.02vw, 1.18rem);
  --font-small: clamp(0.82rem, 0.9vw, 0.95rem);
  --font-caption: 0.75rem;

  --leading-tight: 0.9;
  --leading-display: 0.98;
  --tracking-tight: -0.02em;
  --tracking-display: -0.03em;
  --tracking-wide: 0.12em;
  --tracking-wider: 0.22em;

  /* ── Сетка и отступы ──────────────────────────────────────────── */
  --container-width: 1840px;
  --page-padding: clamp(20px, 4vw, 64px);
  --section-space: clamp(96px, 14vw, 240px);
  --section-space-tight: clamp(64px, 9vw, 150px);
  --gutter: clamp(20px, 3vw, 56px);
  --radius-media: 0;
  --radius-pill: 999px;

  /* ── Движение ─────────────────────────────────────────────────── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.35s;
  --dur-base: 0.6s;
  --dur-slow: 1s;

  /* ── Слои ─────────────────────────────────────────────────────── */
  --z-base: 1;
  --z-content: 10;
  --z-header: 100;
  --z-menu: 200;
  --z-preloader: 1000;
  --z-cursor: 9999;

  /* ── Кастомный курсор ─────────────────────────────────────────── */
  --cursor-size: 10px;
  --cursor-size-hover: 56px;
}

/* ── Светлая тема секции ─────────────────────────────────────────── */
.aos-section--light,
.aos-theme-light {
  --theme-bg: var(--color-surface);
  --theme-text: var(--color-text-dark);
  --theme-muted: var(--color-muted-dark);
  --theme-line: var(--color-line-dark);
  --theme-heading: var(--color-text-dark);
}

/* ── Тёмная тема секции (по умолчанию) ───────────────────────────── */
.aos-section--dark,
.aos-theme-dark {
  --theme-bg: var(--color-bg);
  --theme-text: var(--color-text);
  --theme-muted: var(--color-muted);
  --theme-line: var(--color-line);
  --theme-heading: var(--color-text);
}
