.main-video-container {
	position: fixed;
	height: 100vh;
	aspect-ratio: 1/1;
	overflow: hidden;
	top: 50vh;
	left: 50vw;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

.main-video-container > .video-main, .main-video-container > .video-pause, .main-video-container > .video-pause-overlay {
	position: absolute;
	inset: 0;
	margin: auto;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-pause, .video-main {
	will-change: opacity;
	transition: opacity .35s ease;
}

.video-pause {
	z-index: 1;
	opacity: 1;
}

.video-main {
	z-index: 2;
	opacity: 0;
}

.main-video-container > .video-main video, .main-video-container > .video-pause video, .main-video-container > .video-pause-overlay {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-pause-overlay {
	background: transparent !important;
	pointer-events: none;
	border-radius: 50%;
}

.play-toggle {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 84px;
	height: 84px;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2147483647;
	background: none;
	border: none;
	cursor: pointer;
	transition: opacity .2s ease, transform .15s ease;
	border-radius: 50%;
}

.play-toggle:hover {
	transform: translate(-50%, -50%) scale(1.06);
}

.play-toggle:active {
	transform: translate(-50%, -50%) scale(.96);
}

.play-toggle .icon {
	position: absolute;
	opacity: 0;
	transition: opacity .15s ease;
	pointer-events: none;
}

.play-toggle .icon-play {
	opacity: 1;
}

.play-toggle.is-playing .icon-play {
	opacity: 0;
}

.play-toggle.is-playing .icon-pause {
	opacity: 1;
}

.play-toggle svg path {
	opacity: .6;
}

.video-logo {
	position: fixed;
	top: 60px;
	left: 60px;
	z-index: 1000;
	opacity: 0;
	width: 120px;
	height: 120px;
	overflow: hidden;
	border-radius: 50%;
}

.video-logo > video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 120px;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
}

.navigation-container {
	position: fixed;
	top: 50%;
	left: 100vw;
	transform: translateY(-50%);
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	align-items: center;
	justify-content: flex-start;
	z-index: 100;
	opacity: 0;
}

@media (max-width: 768px) {
	.navigation-container {
		flex-direction: column;
		gap: 32px;
	}
}

.navigation-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	cursor: pointer;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}

.navigation-item:not(:first-child) {
	border-left: 1px solid rgba(0, 0, 0, .12);
	padding-left: 48px;
	margin-left: 0;
}

.nav-icon {
	font-size: 42px;
	line-height: 1;
	color: #000;
	display: inline-block;
	transform: translateY(-2px);
}

.nav-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.nav-caption {
	font-weight: 300;
	letter-spacing: -.04em;
	font-size: 18px;
	color: #000;
}

.navigation-item a {
	font-family: Inter, "Helvetica Neue", sans-serif;
	font-weight: 600;
	letter-spacing: -.04em;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px dashed #000;
	font-size: 28px;
}

.navigation-item a:hover {
	border-bottom: 2px solid #000;
}

.scroll-indicator {
	position: fixed;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	z-index: 2147483646;
	pointer-events: none;
	user-select: none;
	color: rgba(255, 255, 255, .3);
	transform: translateY(200px);
}

.mouse {
	width: 35px;
	height: 60px;
	border: 2px solid currentColor;
	border-radius: 25px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: start;
	padding-top: 8px;
}

.wheel {
	width: 6px;
	height: 6px;
	background: currentColor;
	border-radius: 50%;
	animation: scroll 1.6s ease-in-out infinite;
}

@keyframes scroll {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	
	50% {
		transform: translateY(14px);
		opacity: .3;
	}
	
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.scroll-caption {
	font-family: "Fira Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 100;
	font-size: 18px;
	letter-spacing: .02em;
	color: currentColor;
}

@media (max-width: 768px) {
	.scroll-caption {
		font-size: 16px;
	}
}

video {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform, opacity;
}

.panel {
	height: 100vh;
}

.video-main {
	pointer-events: none;
}

.loader {
	position: fixed;
	inset: 0;
	margin: auto;
	width: 12px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #000;
	clip-path: inset(-220%);
	animation: l28 2s infinite linear;
	z-index: 99999;
}

@keyframes l28 {
	0% {
		box-shadow: 0 0 0 0, 40px 0, -40px 0, 0 40px, 0 -40px;
	}
	
	10% {
		box-shadow: 0 0 0 0, 12px 0, -40px 0, 0 40px, 0 -40px;
	}
	
	20% {
		box-shadow: 0 0 0 4px, 0px 0, -40px 0, 0 40px, 0 -40px;
	}
	
	30% {
		box-shadow: 0 0 0 4px, 0px 0, -12px 0, 0 40px, 0 -40px;
	}
	
	40% {
		box-shadow: 0 0 0 8px, 0px 0, 0px 0, 0 40px, 0 -40px;
	}
	
	50% {
		box-shadow: 0 0 0 8px, 0px 0, 0px 0, 0 12px, 0 -40px;
	}
	
	60% {
		box-shadow: 0 0 0 12px, 0px 0, 0px 0, 0 0px, 0 -40px;
	}
	
	70% {
		box-shadow: 0 0 0 12px, 0px 0, 0px 0, 0 0px, 0 -12px;
	}
	
	80% {
		box-shadow: 0 0 0 16px, 0px 0, 0px 0, 0 0px, 0 0px;
	}
	
	90%, 100% {
		box-shadow: 0 0 0 0, 40px 0, -40px 0, 0 40px, 0 -40px;
	}
}

body.loaded .loader {
	opacity: 0;
	transition: opacity .4s ease;
	pointer-events: none;
}

.hero-left, .hero-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	color: rgba(0, 0, 0, .55);
	pointer-events: auto;
	will-change: transform, opacity;
}

.hero-left {
	left: 14%;
}

.brand-name {
	font-family: "Fira Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 100;
	font-size: 32px;
	letter-spacing: .02em;
	user-select: none;
}

.hero-right {
	right: 14%;
	display: flex;
	gap: 10px;
	align-items: center;
}

.hero-right a {
	font-size: 18px;
	line-height: 1;
	color: rgba(0, 0, 0, .65);
	text-decoration: none;
	transition: transform .15s ease, color .15s ease, opacity .15s ease;
}

.hero-right a:hover {
	transform: scale(1.12);
	color: rgba(0, 0, 0, .85);
}

.navigation-container .nav-subitem {
	display: none;
}

.navigation-container.is-submenu .nav-primary {
	display: none;
}

.navigation-container.is-submenu .nav-subitem {
	display: flex;
}

.navigation-container.is-submenu .nav-subitem:not(:first-child) {
	border-left: 1px solid rgba(0, 0, 0, .12);
	padding-left: 48px;
}

.navigation-container .nav-primary:not(:first-child) {
	border-left: 1px solid rgba(0, 0, 0, .12);
	padding-left: 48px;
}

.navigation-container.is-submenu .navigation-item a {
	text-transform: uppercase;
}

.main-video-container {
	z-index: 2000;
}

.main-video-container .video-main, .main-video-container .video-pause, .main-video-container .video-pause-overlay, .main-video-container video {
	pointer-events: none;
}

/* === SOCIAL ICONS: визуально "в круге", логически вне его === */

.hero-right{
  position: fixed;

  /* центр экрана = центр круга */
  top: 50%;
  left: 50%;

  /* СМЕЩЕНИЕ вправо от центра круга */
  transform: translate(
    calc(240px),   /* радиус круга + отступ */
    -50%
  );

  display: flex;
  gap: 12px;

  z-index: 3000;
  pointer-events: auto;
}

.hero-right a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  font-size: 18px;
  line-height: 1;

  cursor: pointer;
  pointer-events: auto;
}


/* SOC: вынесено из круга, но стоит как раньше и кликабельно */
.hero-right{
  position: fixed;
  top: 50vh;
  left: calc(50vw + 25vh); /* 50vw + (0.5 - 0.14)*100vh  => как "right:14%" внутри круга 100vh */
  transform: translateY(-50%);
  z-index: 2147483647;     /* выше круга и всего остального */
  display: flex;
  gap: 10px;
  align-items: center;
  pointer-events: auto;
}

.hero-right a{
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
}
