/* Базовый цвет фона для всего сайта */
body {
  margin: 0;
  background-color: #F4F5F7;
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

/* Декоративная сетка с мягким затуханием */
body::after {
  content: "";
  position: fixed; /* Фиксирует сетку при прокрутке экрана */
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 20, 25, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 20, 25, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, #000 40%, transparent 85%);
  opacity: 0.9;
  pointer-events: none;
  transform: translateZ(0);
}

/* Сброс стандартных белых фонов у всех блоков Tilda и Zero Block */
.t-rec,
.t396,
.t396__artboard,
.t396__carrier,
.t-cover__carrier,
.t-cover__filter {
  background-color: transparent !important;
  background-image: none !important;
}