/* ============================================================
   ENERGO RUTONICA — Глобальный CSS для всех страниц
   Куда: Tilda → Настройки сайта → Вставка кода → Пользовательские CSS-стили
   (без тега  — Tilda добавит сама)
   ============================================================ */

/* ── Глобальные CSS-переменные (на :root) ─────────────────── */
:root {
  /* Цвета */
  --er-ink: #1a1a1a;
  --er-body: #2a2a2a;
  --er-muted: #5a5a5a;
  --er-label: #8a8a8a;
  --er-hairline: #e8e8e3;
  --er-divider: #d8d8d3;
  --er-bg: #fafaf7;
  --er-bg-alt: #f5f5f1;
  --er-card: #ffffff;
  --er-accent: #21c3f1;
  --er-accent-h: #1a78b0;
  --er-accent-soft: rgba(33,195,241,0.08);
  --er-footer-bg: #0e0e0e;
  --er-footer-bg-alt: #1a1a1a;
  
  /* Шрифты */
  --er-sans: 'Onest', system-ui, -apple-system, sans-serif;
  --er-mono: 'JetBrains Mono', Consolas, monospace;
  
  /* Анимация */
  --er-ease: cubic-bezier(0.65, 0, 0.35, 1);
  --er-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Базовая типографика и сброс ──────────────────────────── */
body {
  font-family: var(--er-sans) !important;
  color: var(--er-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Скрытие T123-обводки в превью-режиме Tilda */
.t123__wrapper { padding: 0 !important; }

/* Чистый стиль  без подчёркиваний по умолчанию (T123 блоки уже сами стилизуют) */
a { text-decoration: none; }

/* Селекция текста — наш cyan */
::selection {
  background: var(--er-accent);
  color: #fff;
}
::-moz-selection {
  background: var(--er-accent);
  color: #fff;
}

/* ── Скроллбар (минималистичный, наш стиль) ──────────────── */
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  ::-webkit-scrollbar-track {
    background: var(--er-bg-alt);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--er-divider);
    border-radius: 5px;
    transition: background 0.25s var(--er-ease);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--er-accent);
  }
}

/* ── Focus-visible для accessibility ──────────────────────── */
*:focus-visible {
  outline: 2px solid var(--er-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Изображения — корректное масштабирование ─────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── reduced-motion: уважение к настройкам пользователя ──── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Утилитарные классы (можно использовать в T123) ───────── */
.er-noselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.er-srOnly {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Скрытие фирменного «Сделано в Tilda» (если есть в подписке) */
/* .t-feed__post-popup__close-text, #tildacоpy { display: none !important; } */