/* ========================================
   RESET & BOX-SIZING
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

ul, ol { list-style: none; }

/* ========================================
   БАЗОВАЯ ОТДЕЛКА (дизайн-проход 2026-07)
   ======================================== */

/* Видимый фокус ТОЛЬКО с клавиатуры — обязательный признак
   аккуратного продукта; мышиные клики кольцо не рисуют */
:focus-visible {
    outline: 2px solid var(--emerald, #059669);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Выделение текста в тон акценту темы */
::selection {
    background: color-mix(in srgb, var(--emerald, #059669) 22%, transparent);
}

/* Цвет скроллбара под тему (Firefox + новые Chromium) */
html {
    scrollbar-color: color-mix(in srgb, var(--dark-gray, #1f2937) 30%, transparent) transparent;
}

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