.fab-premium-hero {
	--fab-premium-hero-duration: 900ms;
	--fab-premium-hero-heading: #ffffff;
	--fab-premium-hero-grad-angle: 90deg;
	--fab-premium-hero-grad-start: #7b2fe8;
	--fab-premium-hero-grad-mid: #d247a8;
	--fab-premium-hero-grad-end: #ff9e1b;
	--fab-premium-hero-line-1: #9c3bff;
	--fab-premium-hero-line-2: #ff9e1b;
	--fab-premium-hero-content-offset: 0px;
	--fab-hero-aspect-ratio: 1920 / 900;
	--fab-hero-aspect-ratio-tablet: var(--fab-hero-aspect-ratio);
	--fab-hero-aspect-ratio-mobile: var(--fab-hero-aspect-ratio-tablet);
	--fab-hero-content-min-height: 0px;
	--fab-hero-measured-content-height: 0px;
	--fab-hero-min-height: 0px;
	--fab-hero-custom-height: 720px;
	--fab-hero-top-padding: 142px;
	--fab-hero-bottom-padding: 72px;
	--fab-hero-image-fit: fill-width;
	--fab-hero-image-x: 50%;
	--fab-hero-image-y: 50%;
	position: relative;
	isolation: isolate;
	width: 100vw;
	max-width: none;
	height: auto;
	min-height: max(var(--fab-hero-content-min-height), var(--fab-hero-measured-content-height), var(--fab-hero-min-height));
	aspect-ratio: var(--fab-hero-aspect-ratio);
	margin-inline: calc(50% - 50vw);
	overflow: hidden;
	background: #030306;
	color: #ffffff;
	transition: min-height 450ms cubic-bezier(0.22, 1, 0.36, 1), aspect-ratio 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fab-premium-hero *,
.fab-premium-hero *::before,
.fab-premium-hero *::after {
	box-sizing: border-box;
}

.fab-premium-hero__slides,
.fab-premium-hero__slide,
.fab-premium-hero__picture,
.fab-premium-hero__bg,
.fab-premium-hero__overlay {
	position: absolute;
	inset: 0;
}

.fab-premium-hero__slides {
	z-index: 1;
}

.fab-premium-hero__slide {
	display: grid;
	align-items: center;
	min-height: 100%;
	padding: 142px 80px 72px 92px;
	padding-top: var(--fab-hero-top-padding, 142px);
	padding-bottom: var(--fab-hero-bottom-padding, 72px);
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity var(--fab-premium-hero-duration) cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms linear var(--fab-premium-hero-duration);
}

.fab-premium-hero__slide.is-active,
.fab-premium-hero__slide.is-outgoing {
	visibility: visible;
}

.fab-premium-hero__slide.is-active {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0ms;
}

.fab-premium-hero__slide.is-outgoing {
	z-index: 1;
	opacity: 0;
}

.fab-premium-hero__picture {
	z-index: 0;
	display: block;
	overflow: hidden;
	background: #030306;
	transform: scale(1.03);
	transition: transform calc(var(--fab-premium-hero-duration) + 120ms) cubic-bezier(0.22, 1, 0.36, 1);
}

.fab-premium-hero__slide.is-active .fab-premium-hero__picture {
	transform: scale(1);
}

.fab-premium-hero__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--fab-hero-image-x, 50%) var(--fab-hero-image-y, 50%);
}

.fab-premium-hero--height-auto .fab-premium-hero__picture,
.fab-premium-hero--height-auto .fab-premium-hero__bg {
	height: auto;
	min-height: 100%;
}

.fab-premium-hero--height-auto .fab-premium-hero__bg {
	object-fit: contain;
}

.fab-premium-hero[data-image-fit="cover"] .fab-premium-hero__bg {
	height: 100%;
	object-fit: cover;
}

.fab-premium-hero[data-image-fit="contain"] .fab-premium-hero__bg {
	height: 100%;
	object-fit: contain;
}

.fab-premium-hero[data-image-fit="fill-width"] .fab-premium-hero__bg {
	height: auto;
	object-fit: contain;
}

.fab-premium-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.56) 28%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.06) 100%),
		var(--fab-slide-overlay, #000000);
	opacity: var(--fab-slide-overlay-opacity, 0.32);
	pointer-events: none;
}

.fab-premium-hero__content {
	position: relative;
	z-index: 3;
	width: min(var(--fab-slide-content-width, 680px), 100%);
	margin-left: var(--fab-premium-hero-content-offset, 0px);
	color: var(--fab-slide-text, #fff);
	transform: translate3d(-32px, 24px, 0);
	opacity: 0;
	transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fab-premium-hero--height-full {
	min-height: max(calc(100svh - var(--fab-header-offset, 0px)), var(--fab-hero-content-min-height), var(--fab-hero-measured-content-height));
	aspect-ratio: auto;
}

.fab-premium-hero--height-minimum {
	min-height: max(var(--fab-hero-min-height), var(--fab-hero-content-min-height), var(--fab-hero-measured-content-height));
	aspect-ratio: auto;
}

.fab-premium-hero--height-custom {
	min-height: max(var(--fab-hero-custom-height), var(--fab-hero-content-min-height), var(--fab-hero-measured-content-height));
	aspect-ratio: auto;
}

.fab-premium-hero__slide.is-active .fab-premium-hero__content {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.fab-premium-hero__slide--align-center .fab-premium-hero__content {
	margin-inline: auto;
	text-align: center;
}

.fab-premium-hero__slide--align-right .fab-premium-hero__content {
	margin-left: auto;
	margin-right: var(--fab-premium-hero-content-offset, 0px);
	text-align: right;
}

.fab-premium-hero__slide--v-start {
	align-items: start;
}

.fab-premium-hero__slide--v-end {
	align-items: end;
}

.fab-premium-hero__eyebrow,
.fab-premium-hero__heading,
.fab-premium-hero__description,
.fab-premium-hero__actions {
	opacity: 0;
	transform: translate3d(-18px, 18px, 0);
	transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fab-premium-hero__slide.is-active .fab-premium-hero__eyebrow,
.fab-premium-hero__slide.is-active .fab-premium-hero__heading,
.fab-premium-hero__slide.is-active .fab-premium-hero__description,
.fab-premium-hero__slide.is-active .fab-premium-hero__actions {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.fab-premium-hero__slide.is-active .fab-premium-hero__eyebrow {
	transition-delay: 60ms;
}

.fab-premium-hero__slide.is-active .fab-premium-hero__heading {
	transition-delay: 130ms;
}

.fab-premium-hero__slide.is-active .fab-premium-hero__description {
	transition-delay: 205ms;
}

.fab-premium-hero__slide.is-active .fab-premium-hero__actions {
	transition-delay: 280ms;
}

.fab-premium-hero__eyebrow {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: clamp(18px, 1.55vw, 31px);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: 0;
}

.fab-premium-hero__heading {
	max-width: 780px;
	margin: 0;
	color: var(--fab-premium-hero-heading, #fff);
	font-family: Inter, "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(50px, 5.2vw, 96px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0;
	text-wrap: balance;
}

.fab-premium-hero__heading-highlight,
.fab-premium-hero__heading-line,
.fab-premium-hero__heading-base {
	display: block;
}

.fab-premium-hero__heading-highlight {
	color: var(--fab-slide-accent, #f58220);
}

.fab-premium-hero__heading--gradient .fab-premium-hero__heading-highlight,
.fab-premium-hero__heading--words .fab-premium-hero__heading-highlight {
	background: linear-gradient(var(--fab-premium-hero-grad-angle), var(--fab-premium-hero-grad-start) 0%, var(--fab-premium-hero-grad-mid) 48%, var(--fab-premium-hero-grad-end) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.fab-premium-hero__heading--split .fab-premium-hero__heading-line--1,
.fab-premium-hero__heading--per-line .fab-premium-hero__heading-line--1 {
	color: var(--fab-premium-hero-line-1);
}

.fab-premium-hero__heading--split .fab-premium-hero__heading-line--2,
.fab-premium-hero__heading--per-line .fab-premium-hero__heading-line--2 {
	color: var(--fab-premium-hero-line-2);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
	.fab-premium-hero__heading--gradient .fab-premium-hero__heading-highlight,
	.fab-premium-hero__heading--words .fab-premium-hero__heading-highlight {
		color: transparent;
	}
}

.fab-premium-hero__description {
	max-width: 640px;
	margin: 24px 0 0;
	color: #ececf4;
	font-size: clamp(16px, 1.2vw, 20px);
	font-weight: 500;
	line-height: 1.65;
}

.fab-premium-hero__slide--align-center .fab-premium-hero__description {
	margin-inline: auto;
}

.fab-premium-hero__slide--align-right .fab-premium-hero__description {
	margin-left: auto;
}

.fab-premium-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.fab-premium-hero__slide--align-center .fab-premium-hero__actions {
	justify-content: center;
}

.fab-premium-hero__slide--align-right .fab-premium-hero__actions {
	justify-content: flex-end;
}

.fab-premium-hero__button,
.fab-premium-hero__arrow,
.fab-premium-hero__dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1), background-color 160ms cubic-bezier(0.22, 1, 0.36, 1), border-color 160ms cubic-bezier(0.22, 1, 0.36, 1), color 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fab-premium-hero__button {
	padding: 15px 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	font-weight: 800;
	line-height: 1.1;
}

.fab-premium-hero__button--primary {
	background: var(--fab-slide-accent, #f58220);
	color: #fff;
}

.fab-premium-hero__button--secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.fab-premium-hero__button:hover,
.fab-premium-hero__button:focus-visible,
.fab-premium-hero__arrow:hover,
.fab-premium-hero__arrow:focus-visible,
.fab-premium-hero__dot:hover,
.fab-premium-hero__dot:focus-visible {
	transform: translateY(-1px);
}

.fab-premium-hero__button:active,
.fab-premium-hero__arrow:active,
.fab-premium-hero__dot:active {
	transform: scale(0.98);
}

.fab-premium-hero__foreground {
	position: absolute;
	right: clamp(24px, 5vw, 96px);
	bottom: 0;
	z-index: 2;
	width: min(48vw, 900px);
	height: auto;
	max-height: 82%;
	object-fit: contain;
	opacity: 0;
	transform: translate3d(42px, 20px, 0) scale(1.025);
	transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.fab-premium-hero__slide.is-active .fab-premium-hero__foreground {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.fab-premium-hero__controls {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
}

.fab-premium-hero__arrow {
	position: absolute;
	top: 52%;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(5, 5, 10, 0.38);
	color: #fff;
	pointer-events: auto;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.fab-premium-hero__arrow--prev {
	left: clamp(18px, 2.4vw, 42px);
}

.fab-premium-hero__arrow--next {
	right: clamp(18px, 2.4vw, 42px);
}

.fab-premium-hero__pagination {
	position: absolute;
	right: 0;
	bottom: clamp(24px, 4vw, 48px);
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	pointer-events: none;
}

.fab-premium-hero__dot {
	width: 34px;
	height: 4px;
	min-height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	pointer-events: auto;
}

.fab-premium-hero__dot::before {
	content: "";
	width: 34px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.38);
	transition: background-color 160ms cubic-bezier(0.22, 1, 0.36, 1), width 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fab-premium-hero__dot.is-active::before {
	width: 46px;
	background: var(--fab-premium-hero-grad-end, #ff9e1b);
}

.fab-premium-hero__progress {
	position: absolute;
	right: clamp(22px, 4vw, 72px);
	bottom: clamp(24px, 4vw, 48px);
	left: clamp(22px, 4vw, 72px);
	height: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.16);
	pointer-events: none;
}

.fab-premium-hero__progress::before {
	content: "";
	display: block;
	width: var(--fab-premium-progress, 0%);
	height: 100%;
	background: linear-gradient(90deg, var(--fab-premium-hero-grad-start), var(--fab-premium-hero-grad-end));
}

.fab-premium-hero a:focus-visible,
.fab-premium-hero button:focus-visible {
	outline: 3px solid #ff9e1b;
	outline-offset: 4px;
}

@media (max-width: 1024px) {
	.fab-premium-hero {
		aspect-ratio: var(--fab-hero-aspect-ratio-tablet);
	}

	.fab-premium-hero__slide {
		padding: 126px 42px 56px;
	}

	.fab-premium-hero__heading {
		font-size: clamp(44px, 8vw, 76px);
	}

	.fab-premium-hero__foreground {
		width: min(54vw, 620px);
		opacity: 0.62;
	}
}

@media (max-width: 767px) {
	.fab-premium-hero {
		aspect-ratio: var(--fab-hero-aspect-ratio-mobile);
	}

	.fab-premium-hero__slide {
		align-items: end;
		padding: 112px 22px 72px;
	}

	.fab-premium-hero__content {
		width: min(100%, 560px);
		margin-inline: 0;
	}

	.fab-premium-hero__heading {
		font-size: clamp(38px, 12vw, 58px);
		line-height: 0.98;
	}

	.fab-premium-hero__eyebrow {
		margin-bottom: 12px;
		font-size: clamp(16px, 5vw, 22px);
	}

	.fab-premium-hero__description {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.55;
	}

	.fab-premium-hero__actions {
		align-items: stretch;
		margin-top: 24px;
	}

	.fab-premium-hero__button {
		width: 100%;
	}

	.fab-premium-hero__foreground {
		right: -14%;
		width: min(76vw, 460px);
		opacity: 0.38;
	}

	.fab-premium-hero__arrow {
		top: auto;
		bottom: 22px;
		width: 44px;
		height: 44px;
	}

	.fab-premium-hero__pagination {
		bottom: 22px;
		padding-inline: 68px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fab-premium-hero__slide,
	.fab-premium-hero__picture,
	.fab-premium-hero__content,
	.fab-premium-hero__eyebrow,
	.fab-premium-hero__heading,
	.fab-premium-hero__description,
	.fab-premium-hero__actions,
	.fab-premium-hero__foreground {
		transform: none !important;
		transition-duration: 180ms !important;
	}
}
