.higor-hero-v2,
.higor-hero-v2 *,
.higor-hero-v2 *::before,
.higor-hero-v2 *::after {
	box-sizing: border-box;
}

.higor-hero-v2 {
	--hhv2-bg-1: #050505;
	--hhv2-bg-2: #2b2225;
	--hhv2-accent: #d6aaa0;
	--hhv2-content-x: 0px;
	--hhv2-content-y: 0px;
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	background: var(--hhv2-bg-1);
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
}

.higor-hero-v2 a {
	text-decoration: none;
}

.higor-hero-v2__canvas,
.higor-hero-v2__fallback,
.higor-hero-v2__overlay,
.higor-hero-v2__microgrid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.higor-hero-v2__canvas {
	z-index: -3;
	display: block;
	pointer-events: none;
}

.higor-hero-v2__fallback {
	z-index: -4;
	background:
		radial-gradient(circle at 32% 18%, color-mix(in srgb, var(--hhv2-bg-2) 62%, transparent), transparent 42%),
		radial-gradient(circle at 78% 62%, color-mix(in srgb, var(--hhv2-accent) 13%, transparent), transparent 36%),
		linear-gradient(145deg, var(--hhv2-bg-1), var(--hhv2-bg-2) 52%, var(--hhv2-bg-1));
}

.higor-hero-v2__overlay {
	z-index: -2;
	opacity: 0.24;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.62)),
		radial-gradient(circle at 50% 45%, transparent 15%, rgba(0, 0, 0, 0.55) 100%);
}

.higor-hero-v2__microgrid {
	--hhv2-grid-color: #fff;
	--hhv2-grid-cell: 3.2px;
	--hhv2-grid-dot: 0.55px;
	z-index: 0;
	opacity: 0.18;
	pointer-events: none;
	background-image: radial-gradient(
		circle at center,
		var(--hhv2-grid-color) 0,
		var(--hhv2-grid-color) var(--hhv2-grid-dot),
		transparent calc(var(--hhv2-grid-dot) + 0.24px)
	);
	background-position: center;
	background-size: var(--hhv2-grid-cell) var(--hhv2-grid-cell);
	mix-blend-mode: screen;
}

.higor-hero-v2.hhv2-no-webgl .higor-hero-v2__canvas {
	display: none;
}

.higor-hero-v2__topbar {
	position: absolute;
	z-index: 6;
	top: 32px;
	left: 32px;
	right: 32px;
	display: grid;
	grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
	align-items: center;
	gap: 24px;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(29, 25, 26, 0.68);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 50px rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.higor-hero-v2__brand {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-width: 0;
}

.higor-hero-v2__brand-mark,
.higor-hero-v2__bottom-logo {
	display: block;
	background-color: #fff;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.higor-hero-v2__brand-mark {
	width: 128px;
	aspect-ratio: 468.53 / 94.11;
}

.higor-hero-v2__nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 2.8vw, 54px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.higor-hero-v2__nav-link {
	position: relative;
	display: inline-flex;
	padding: 8px 0;
	color: #e7dedc;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.higor-hero-v2__nav-link::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 1px;
	content: "";
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 250ms ease;
}

.higor-hero-v2__nav-link:hover::after,
.higor-hero-v2__nav-link:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.higor-hero-v2__top-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	min-width: 0;
}

.higor-hero-v2__language,
.higor-hero-v2__top-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 17px;
	border-radius: 999px;
	background: #f5f3f2;
	color: #111;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.035em;
	white-space: nowrap;
	transition: transform 220ms ease, background-color 220ms ease;
}

.higor-hero-v2__top-cta {
	padding-inline: 22px;
}

.higor-hero-v2__language:hover,
.higor-hero-v2__language:focus-visible,
.higor-hero-v2__top-cta:hover,
.higor-hero-v2__top-cta:focus-visible {
	transform: translateY(-2px);
}

.higor-hero-v2__main {
	position: absolute;
	z-index: 3;
	inset: 0;
	display: flex;
	justify-content: center;
	padding: 210px 80px 260px;
	pointer-events: none;
}

.higor-hero-v2__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 1280px;
	transform: translate(var(--hhv2-content-x), var(--hhv2-content-y));
	pointer-events: auto;
}

.higor-hero-v2__eyebrow {
	margin: 0 0 56px;
	color: #d6aaa0;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.higor-hero-v2__title {
	max-width: 1050px;
	margin: 0 0 54px;
	color: #fff;
	font-size: clamp(52px, 5.1vw, 104px);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: -0.052em;
	text-wrap: balance;
}

.higor-hero-v2__title--rotating {
	--hhv2-word-blur: 12px;
}

.higor-hero-v2__rotating-prefix,
.higor-hero-v2__rotating-suffix {
	display: inline;
}

.higor-hero-v2__rotating-slot {
	display: inline-grid;
	grid-template-areas: "word";
	margin-inline-start: 0;
	color: inherit;
	line-height: inherit;
	vertical-align: baseline;
	white-space: nowrap;
}

.higor-hero-v2__rotating-word {
	display: inline-flex;
	grid-area: word;
	align-items: baseline;
	visibility: hidden;
	pointer-events: none;
}

.higor-hero-v2__rotating-word.is-active,
.higor-hero-v2__rotating-word.is-transitioning {
	visibility: visible;
}

.higor-hero-v2__rotating-char {
	display: inline-block;
	opacity: 0;
	filter: blur(var(--hhv2-word-blur));
	transform: translateZ(0);
	will-change: opacity, filter;
}

.higor-hero-v2__rotating-word.is-active .higor-hero-v2__rotating-char {
	opacity: 1;
	filter: blur(0);
}

.higor-hero-v2__rotating-suffix {
	margin-inline-start: 0.08em;
}

.higor-hero-v2__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 17px 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.035em;
	white-space: nowrap;
	transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.higor-hero-v2__cta:hover,
.higor-hero-v2__cta:focus-visible {
	background: #f5f3f2;
	color: #111;
	transform: translateY(-2px);
}

.higor-hero-v2__cta-arrow {
	font-size: 1.35em;
	line-height: 0;
	transition: transform 250ms ease;
}

.higor-hero-v2__cta:hover .higor-hero-v2__cta-arrow,
.higor-hero-v2__cta:focus-visible .higor-hero-v2__cta-arrow {
	transform: translateX(4px);
}

.higor-hero-v2__bottom-logo {
	position: absolute;
	z-index: 1;
	bottom: -8px;
	left: 0;
	width: 100vw;
	max-width: none;
	aspect-ratio: 468.53 / 94.11;
	pointer-events: none;
	transform-origin: center bottom;
}

.higor-hero-v2 :focus-visible {
	outline: 2px solid var(--hhv2-accent);
	outline-offset: 4px;
}

.higor-hero-v2.hhv2-enhanced .higor-hero-v2__topbar,
.higor-hero-v2.hhv2-enhanced .higor-hero-v2__eyebrow,
.higor-hero-v2.hhv2-enhanced .higor-hero-v2__title,
.higor-hero-v2.hhv2-enhanced .higor-hero-v2__cta,
.higor-hero-v2.hhv2-enhanced .higor-hero-v2__bottom-logo {
	opacity: 0;
}

.higor-hero-v2.hhv2-ready .higor-hero-v2__topbar,
.higor-hero-v2.hhv2-ready .higor-hero-v2__eyebrow,
.higor-hero-v2.hhv2-ready .higor-hero-v2__title,
.higor-hero-v2.hhv2-ready .higor-hero-v2__cta,
.higor-hero-v2.hhv2-ready .higor-hero-v2__bottom-logo {
	opacity: 1;
	transition:
		opacity 750ms ease,
		transform 750ms cubic-bezier(0.22, 1, 0.36, 1),
		color 250ms ease,
		background-color 250ms ease;
}

.higor-hero-v2.hhv2-enhanced .higor-hero-v2__topbar {
	transform: translateY(-14px);
}

.higor-hero-v2.hhv2-ready .higor-hero-v2__topbar {
	transform: translateY(0);
}

.higor-hero-v2.hhv2-enhanced .higor-hero-v2__eyebrow,
.higor-hero-v2.hhv2-enhanced .higor-hero-v2__title,
.higor-hero-v2.hhv2-enhanced .higor-hero-v2__cta {
	transform: translateY(22px);
}

.higor-hero-v2.hhv2-ready .higor-hero-v2__eyebrow,
.higor-hero-v2.hhv2-ready .higor-hero-v2__title,
.higor-hero-v2.hhv2-ready .higor-hero-v2__cta {
	transform: translateY(0);
}

.higor-hero-v2.hhv2-ready .higor-hero-v2__eyebrow {
	transition-delay: 100ms;
}

.higor-hero-v2.hhv2-ready .higor-hero-v2__title {
	transition-delay: 180ms;
}

.higor-hero-v2.hhv2-ready .higor-hero-v2__cta {
	transition-delay: 260ms;
}

.higor-hero-v2.hhv2-ready .higor-hero-v2__bottom-logo {
	transition-delay: 120ms;
}

@media (max-width: 1024px) {
	.higor-hero-v2__topbar {
		grid-template-columns: 1fr auto;
	}

	.higor-hero-v2__nav {
		display: none;
	}

	.higor-hero-v2__main {
		padding: 170px 48px 210px;
	}

	.higor-hero-v2__title {
		font-size: clamp(48px, 7.5vw, 78px);
	}

	.higor-hero-v2__bottom-logo {
		width: 125vw;
	}
}

@media (max-width: 767px) {
	.higor-hero-v2 {
		min-height: max(700px, 100svh);
	}

	.higor-hero-v2__topbar {
		top: 18px;
		right: 16px;
		left: 16px;
		gap: 12px;
		padding: 12px 14px;
	}

	.higor-hero-v2__brand-mark {
		width: 100px;
	}

	.higor-hero-v2__top-cta {
		display: none;
	}

	.higor-hero-v2__language {
		min-height: 38px;
		padding-inline: 13px;
	}

	.higor-hero-v2__main {
		padding: 140px 24px 170px;
	}

	.higor-hero-v2__eyebrow {
		margin-bottom: 32px;
		font-size: 10px;
	}

	.higor-hero-v2__title {
		margin-bottom: 36px;
		font-size: clamp(42px, 12.7vw, 62px);
		line-height: 0.98;
		letter-spacing: -0.055em;
	}

	.higor-hero-v2__cta {
		gap: 18px;
		max-width: 100%;
		padding: 16px 22px;
		font-size: 11px;
	}

	.higor-hero-v2__bottom-logo {
		bottom: -4px;
		left: -22vw;
		width: 185vw;
	}

	.higor-hero-v2__microgrid {
		--hhv2-grid-cell: 3px;
		--hhv2-grid-dot: 0.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.higor-hero-v2 *,
	.higor-hero-v2 *::before,
	.higor-hero-v2 *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
