/* ============================================================================
   M3 Expressive Codex: Section -1 - Fundamental Reset
   Нейтрализация стилей браузера для полного контроля.
   ============================================================================ */

/* -1.1. Глобальная модель бокса */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* -1.2. Сброс отступов */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

/* -1.3. Сброс стилей интерактивных элементов (КРИТИЧЕСКИ ВАЖНО) */
button,
a {
  border: none;
  outline: none;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: 100%;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
  -webkit-tap-highlight-color: transparent; /* Убираем подсветку на мобильных */
}

/* Дополнительные сбросы для чистоты */
html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}