/* Hero video */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* высота блока */
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* масштабируем видео без полос */
  object-position: center; /* центрируем */
  display: block;
}

/* Canvas */
#scroll-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* при необходимости поверх других элементов */
  pointer-events: none;
}

/* ===== FIXED HEADER ZERO BLOCK ===== */
#rec1743558851 {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;

  will-change: transform;
  transform: translateZ(0);
}

/* возвращаем кликабельность */
#rec1743558851 a,
#rec1743558851 button,
#rec1743558851 .tn-atom {
  pointer-events: auto;
}

/* прозрачный фон */
#rec1743558851 .t396__artboard {
  background: transparent !important;
}

/* защита от внутренних слоев */
#rec1743558851 .t396__filter,
#rec1743558851 .t396__carrier {
  pointer-events: none;
}