.section-quick-path-selector {
	height: 100svh;
	min-height: 100svh;
	background: #050c18;
	position: relative;
}

.section-quick-path-selector__stage {
	position: relative;
	height: calc(100svh - 8rem);
	min-height: calc(100svh - 8rem);
	padding: 6.5rem 0 3.5rem;
	z-index: 1;
}

.section-quick-path-selector.is-fixed .section-quick-path-selector__stage {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	transform: translate3d(0, var(--quick-path-push, 0), 0);
}

.section-quick-path-selector__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	height: 100%;
	min-height: 100%;
	width: 100%;
	padding: 0 0.75rem;
	position: relative;
	z-index: 1;
}

.quick-path-panel {
	position: relative;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
	border-radius: 0.35rem;
	cursor: pointer;
	transform: translate3d(0, 112%, 0);
	opacity: 0;
	will-change: transform, opacity;
	transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 760ms ease;
}

.quick-path-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.24) 36%, rgba(0, 0, 0, 0) 72%);
	pointer-events: none;
}

.quick-path-panel__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-path-panel__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.9rem;
	padding: 1.25rem 1.15rem 1rem;
	z-index: 1;
}

.quick-path-panel__title {
	margin: 0;
	font-family: var(--ldg-font-display);
	max-width: 11ch;
	font-size: clamp(1.15rem, 1.7vw, 1.85rem);
	line-height: 1.02;
	letter-spacing: 0.03em;
	color: var(--ldg-brand-white);
}

.quick-path-panel__cta {
	align-self: flex-end;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--ldg-brand-white);
	transition: transform 240ms ease, opacity 240ms ease;
}

.quick-path-panel__cta-label,
.quick-path-panel__cta-icon {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ldg-brand-white);
	transition: transform 240ms ease, opacity 240ms ease;
}

.quick-path-panel__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.95rem;
	height: 0.95rem;
	background-color: currentColor;
	-webkit-mask-image: url("../../../icons/explore.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("../../../icons/explore.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.quick-path-panel:hover .quick-path-panel__cta,
.quick-path-panel:focus-within .quick-path-panel__cta {
	transform: translateX(0.3rem);
}

.quick-path-panel:hover .quick-path-panel__image,
.quick-path-panel:focus-within .quick-path-panel__image {
	transform: scale(1.06);
}

.quick-path-panel:hover .quick-path-panel__cta-label,
.quick-path-panel:focus-within .quick-path-panel__cta-label {
	opacity: 0.86;
}

.quick-path-panel:hover .quick-path-panel__cta-icon,
.quick-path-panel:focus-within .quick-path-panel__cta-icon {
	transform: translateX(0.12rem) scale(1.06);
}

.section-quick-path-selector.is-visible .quick-path-panel {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.quick-path-panel--delay-1 {
	transition-delay: 0.06s;
}

.quick-path-panel--delay-2 {
	transition-delay: 0.18s;
}

.quick-path-panel--delay-3 {
	transition-delay: 0.3s;
}

.quick-path-panel--delay-4 {
	transition-delay: 0.42s;
}

.section-quick-path-selector.is-returning .quick-path-panel {
	transition-duration: 1200ms, 980ms;
}

.section-quick-path-selector.is-returning .quick-path-panel--delay-1 {
	transition-delay: 0.12s;
}

.section-quick-path-selector.is-returning .quick-path-panel--delay-2 {
	transition-delay: 0.28s;
}

.section-quick-path-selector.is-returning .quick-path-panel--delay-3 {
	transition-delay: 0.44s;
}

.section-quick-path-selector.is-returning .quick-path-panel--delay-4 {
	transition-delay: 0.6s;
}

.quick-path-scroll-indicator {
	position: fixed;
	left: 50%;
	bottom: -3.2rem;
	transform: translate(-50%, 0);
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	z-index: 5;
	opacity: 0;
	padding: 0.75rem 1rem;
	background: rgba(5, 12, 24, 0.34);
	border-radius: 999px;
	backdrop-filter: blur(10px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease;
	pointer-events: none;
}

.section-quick-path-selector.is-visible.is-fixed:not(.is-pushed) .quick-path-scroll-indicator {
	opacity: 1;
	transform: translate(-50%, 0);
}

.section-quick-path-selector.is-pushed .quick-path-scroll-indicator {
	opacity: 0;
	transform: translate(-50%, -0.55rem);
}

.section-quick-path-selector:not(.is-visible) .quick-path-scroll-indicator,
.section-quick-path-selector:not(.is-fixed) .quick-path-scroll-indicator {
	opacity: 0;
	transform: translate(-50%, -0.55rem);
}

.quick-path-scroll-indicator__label {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(241, 242, 244, 0.86);
	white-space: nowrap;
}

.quick-path-scroll-indicator__line {
	display: block;
	width: 2.8rem;
	height: 1px;
	background: linear-gradient(90deg, rgba(241, 242, 244, 0.16) 0%, rgba(241, 242, 244, 0.9) 100%);
}

.quick-path-scroll-indicator__line--leading {
	background: linear-gradient(90deg, rgba(241, 242, 244, 0.9) 0%, rgba(241, 242, 244, 0.16) 100%);
}
