.yepx-ft {
	--yepx-ft-bg: var(--yepx-color-bg-page, #fff);
	--yepx-ft-ink: var(--yepx-color-ink, #102c3b);
	--yepx-ft-muted: var(--yepx-color-muted, #81909a);
	--yepx-ft-text: var(--yepx-color-text, #4f6470);
	--yepx-ft-line: var(--yepx-color-border, #e5eaed);
	--yepx-ft-surface: var(--yepx-color-surface, #fff);
	--yepx-ft-soft: var(--yepx-color-primary-soft, #e8f7fb);
	--yepx-ft-accent: var(--yepx-color-primary, #06baf3);
	--yepx-ft-active-bg: var(--yepx-color-navy, #102c3b);
	--yepx-ft-active-ink: var(--yepx-color-white, #fff);
	--yepx-ft-icon: var(--yepx-color-primary, #06baf3);
	--yepx-ft-icon-bg: var(--yepx-color-primary-soft, #e8f7fb);
	--yepx-ft-panel-bg: var(--yepx-color-surface, #fff);
	--yepx-ft-gap: 12px;
	--yepx-ft-dcols: 7;
	--yepx-ft-tcols: 5;
	--yepx-ft-mcols: 3;
	--yepx-ft-cols: var(--yepx-ft-mcols);
	--yepx-ft-panel-pad: 40px;
	--yepx-ft-panel-r: var(--yepx-radius-panel, 28px);
	--yepx-ft-dur: 420ms;
	--yepx-ft-hover-dur: var(--yepx-duration, 240ms);
	--yepx-ft-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--yepx-ft-pad-d: 4.5rem;
	--yepx-ft-pad-t: 3.25rem;
	--yepx-ft-pad-m: 2rem;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding-block: var(--yepx-ft-pad-d);
	background: var(--yepx-ft-bg);
	color: var(--yepx-ft-ink);
	overflow-x: visible;
	contain: none;
}
.yepx-ft.yepx-ft--pd-none { --yepx-ft-pad-d: 0; }
.yepx-ft.yepx-ft--pd-tight { --yepx-ft-pad-d: 2rem; }
.yepx-ft.yepx-ft--pd-wide { --yepx-ft-pad-d: 6rem; }
.yepx-ft.yepx-ft--pt-none { --yepx-ft-pad-t: 0; }
.yepx-ft.yepx-ft--pt-tight { --yepx-ft-pad-t: 1.75rem; }
.yepx-ft.yepx-ft--pt-wide { --yepx-ft-pad-t: 4.5rem; }
.yepx-ft.yepx-ft--pm-none { --yepx-ft-pad-m: 0; }
.yepx-ft.yepx-ft--pm-normal { --yepx-ft-pad-m: 2.75rem; }
.yepx-ft.yepx-ft--pm-wide { --yepx-ft-pad-m: 3.5rem; }
.yepx-ft *,
.yepx-ft *::before,
.yepx-ft *::after {
	box-sizing: border-box;
}
/* container = same rail as .yepx-bt__inner. No 90vw / negative margin. */
.yepx-ft--w-container,
.yepx-home-v2 .yepx-ft--w-container,
.yepx-preview .yepx-ft--w-container,
.yepx-sec .yepx-ft--w-container {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	contain: none;
}
/* wide = controlled 90vw breakout (>1240, <100vw). */
.yepx-ft--w-wide,
.yepx-home-v2 .yepx-ft--w-wide,
.yepx-preview .yepx-ft--w-wide,
.yepx-sec .yepx-ft--w-wide {
	width: 90vw;
	max-width: 90vw;
	margin-left: calc(50% - 45vw);
	margin-right: calc(50% - 45vw);
	contain: none;
}
/* full = 100vw. Valid inside section. */
.yepx-ft--w-full,
.yepx-home-v2 .yepx-ft--w-full,
.yepx-preview .yepx-ft--w-full,
.yepx-sec .yepx-ft--w-full {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	contain: none;
}
/* Section bg must show. padding-block 0; inline spacing longhands still win. */
.yepx-sec .yepx-ft {
	padding-block: 0;
	--yepx-ft-bg: transparent;
	background: transparent;
}
.yepx-ft__inner {
	display: block;
	width: 100%;
	margin-inline: auto;
	min-width: 0;
	box-sizing: border-box;
}
.yepx-ft--w-container .yepx-ft__inner {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	padding-inline: 0;
}
.yepx-ft--w-wide .yepx-ft__inner,
.yepx-ft--w-full .yepx-ft__inner {
	max-width: none;
	padding-inline: 1rem;
}
.yepx-ft__tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	align-content: flex-start;
	justify-content: flex-start;
	gap: var(--yepx-ft-gap);
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	overflow-x: visible;
	padding: 0 0 1.25rem;
	margin: 0;
}
.yepx-ft.yepx-ft--align-left .yepx-ft__tabs,
.yepx-ft.yepx-ft--align-start .yepx-ft__tabs,
.yepx-ft.yepx-ft--align-center .yepx-ft__tabs,
.yepx-ft.yepx-ft--align-end .yepx-ft__tabs {
	justify-content: flex-start;
	align-content: flex-start;
}
.yepx-ft--dcols-2 { --yepx-ft-dcols: 2; }
.yepx-ft--dcols-3 { --yepx-ft-dcols: 3; }
.yepx-ft--dcols-4 { --yepx-ft-dcols: 4; }
.yepx-ft--dcols-5 { --yepx-ft-dcols: 5; }
.yepx-ft--dcols-6 { --yepx-ft-dcols: 6; }
.yepx-ft--dcols-7 { --yepx-ft-dcols: 7; }
.yepx-ft--dcols-8 { --yepx-ft-dcols: 8; }
.yepx-ft--tcols-2 { --yepx-ft-tcols: 2; }
.yepx-ft--tcols-3 { --yepx-ft-tcols: 3; }
.yepx-ft--tcols-4 { --yepx-ft-tcols: 4; }
.yepx-ft--tcols-5 { --yepx-ft-tcols: 5; }
.yepx-ft--tcols-6 { --yepx-ft-tcols: 6; }
.yepx-ft--tcols-7 { --yepx-ft-tcols: 7; }
.yepx-ft--tcols-8 { --yepx-ft-tcols: 8; }
.yepx-ft--mcols-2 { --yepx-ft-mcols: 2; }
.yepx-ft--mcols-3 { --yepx-ft-mcols: 3; }
.yepx-ft--mcols-4 { --yepx-ft-mcols: 4; }
.yepx-ft__tabs::-webkit-scrollbar {
	height: 6px;
}
.yepx-ft__tabs::-webkit-scrollbar-thumb {
	background: var(--yepx-ft-line);
	border-radius: 999px;
}
.yepx-ft__tab {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex: 1 1 0;
	min-width: min(8.75rem, 100%);
	min-height: 72px;
	justify-content: flex-start;
	padding: 0.7rem 1rem;
	border: 1px solid var(--yepx-ft-line);
	border-radius: var(--yepx-radius-lg, 24px);
	background: var(--yepx-ft-surface);
	color: var(--yepx-ft-ink);
	box-shadow: none;
	text-align: left;
	font: inherit;
	cursor: pointer;
	transition: background-color 280ms var(--yepx-ft-ease), color 280ms var(--yepx-ft-ease), border-color 280ms var(--yepx-ft-ease), box-shadow 280ms var(--yepx-ft-ease);
}
.yepx-ft__tab-icon {
	display: grid;
	place-items: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--yepx-ft-icon-bg);
	color: var(--yepx-ft-icon);
}
.yepx-ft__tab-icon .yepx-icon,
.yepx-ft__tab-icon .yepx-ft__svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
}
.yepx-ft__tab-copy {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}
.yepx-ft__tab-title {
	font-weight: 700;
	font-size: 0.8375rem;
	line-height: 1.25;
	overflow-wrap: anywhere;
}
.yepx-ft__tab-sub {
	color: var(--yepx-ft-muted);
	font-size: 0.75rem;
	line-height: 1.3;
	overflow-wrap: anywhere;
}
.yepx-ft__tab-pip {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: transparent;
	opacity: 0;
	transition: opacity 280ms var(--yepx-ft-ease);
}
.yepx-ft__tab[aria-selected="true"] {
	background: var(--yepx-ft-active-bg);
	color: var(--yepx-ft-active-ink);
	border-color: var(--yepx-ft-active-bg);
	box-shadow: var(--yepx-shadow-md, 0 14px 32px rgba(11, 44, 61, 0.1));
}
.yepx-ft__tab[aria-selected="true"] .yepx-ft__tab-icon {
	background: color-mix(in srgb, var(--yepx-ft-active-ink) 16%, transparent);
	color: var(--yepx-ft-active-ink);
}
.yepx-ft__tab[aria-selected="true"] .yepx-ft__tab-sub {
	color: color-mix(in srgb, var(--yepx-ft-active-ink) 78%, transparent);
}
.yepx-ft__tab[aria-selected="true"] .yepx-ft__tab-pip {
	background: var(--yepx-ft-accent);
	opacity: 1;
}
.yepx-ft__tab:focus-visible {
	outline: 2px solid var(--yepx-color-focus, #0a7ca8);
	outline-offset: 3px;
}
.yepx-ft__stage {
	position: relative;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}
.yepx-ft__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.25rem;
	align-items: center;
	width: 100%;
	min-height: 22rem;
	padding: var(--yepx-ft-panel-pad);
	border-radius: var(--yepx-ft-panel-r);
	background: var(--yepx-ft-panel-bg);
	box-shadow: var(--yepx-shadow-panel, 0 16px 36px rgba(16, 44, 59, 0.08));
	min-width: 0;
	box-sizing: border-box;
}
.yepx-ft__panel[hidden] {
	display: none !important;
}
.yepx-ft__panel--media-left {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.yepx-ft__panel--media-left .yepx-ft__media {
	order: -1;
}
.yepx-ft__copy {
	display: grid;
	align-content: center;
	gap: 1rem;
	min-width: 0;
}
.yepx-ft__panel--align-center .yepx-ft__copy {
	text-align: center;
	justify-items: center;
}
.yepx-ft__panel--align-right .yepx-ft__copy {
	text-align: right;
	justify-items: end;
}
.yepx-ft__eyebrow {
	margin: 0;
	color: var(--yepx-ft-accent);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.yepx-ft__heading {
	margin: 0;
	color: var(--yepx-ft-ink);
	font-size: clamp(1.65rem, 2.4vw, 2.15rem);
	line-height: 1.2;
	overflow-wrap: anywhere;
}
.yepx-ft__desc {
	color: var(--yepx-ft-text);
	max-width: 38rem;
}
.yepx-ft__desc p {
	margin: 0 0 0.6rem;
}
.yepx-ft__features {
	display: grid;
	gap: 0.85rem;
	margin: 0.25rem 0 0.35rem;
	padding: 0;
	list-style: none;
}
.yepx-ft__feature {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	min-width: 0;
}
.yepx-ft__feature-icon {
	display: grid;
	place-items: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: var(--yepx-ft-soft);
	color: var(--yepx-ft-accent);
}
.yepx-ft__feature-icon .yepx-icon {
	width: 15px;
	height: 15px;
}
.yepx-ft__feature-copy {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}
.yepx-ft__feature-title {
	font-weight: 650;
	color: var(--yepx-ft-ink);
	overflow-wrap: anywhere;
}
.yepx-ft__feature-sub {
	color: var(--yepx-ft-muted);
	font-size: 0.875rem;
}
.yepx-ft__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	margin-top: 0.4rem;
	padding: 0.7rem 1.35rem;
	border-radius: var(--yepx-btn-radius, 9999px);
	text-decoration: none;
}
.yepx-ft__media {
	min-width: 0;
	border-radius: calc(var(--yepx-ft-panel-r) - 8px);
	overflow: hidden;
	background: var(--yepx-color-bg-soft, #f7f9fa);
	aspect-ratio: 16 / 10;
}
.yepx-ft__img,
.yepx-ft__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--yepx-ft-focal, 50% 50%);
}
.yepx-ft__media--contain .yepx-ft__img,
.yepx-ft__media--contain img {
	object-fit: contain;
}
.yepx-ft__media--video {
	position: relative;
}
.yepx-ft__play {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}
.yepx-ft__play[hidden] {
	display: none;
}
.yepx-ft__player {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.yepx-ft__player iframe,
.yepx-ft__player video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}
.yepx-ft__player video {
	object-fit: cover;
}
.yepx-ft__play .yepx-ft__img {
	pointer-events: none;
}
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(6, 34, 44, 0);
	pointer-events: none;
	transition: background-color var(--yepx-ft-hover-dur) var(--yepx-ease, var(--yepx-ft-ease));
}
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play .yepx-ft__img {
	transform: scale(1);
	transition: transform var(--yepx-ft-hover-dur) var(--yepx-ease, var(--yepx-ft-ease));
}
.yepx-ft__play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	min-width: 44px;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(6, 34, 44, 0.72);
	color: #fff;
	transform: translate(-50%, -50%) scale(1);
	box-shadow: 0 0 0 transparent;
	pointer-events: none;
	transition: transform var(--yepx-ft-hover-dur) var(--yepx-ease, var(--yepx-ft-ease)),
		box-shadow var(--yepx-ft-hover-dur) var(--yepx-ease, var(--yepx-ft-ease)),
		background-color var(--yepx-ft-hover-dur) var(--yepx-ease, var(--yepx-ft-ease));
}
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play:hover::after,
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play:focus-visible::after {
	background: rgba(6, 34, 44, 0.28);
}
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play:hover .yepx-ft__img,
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play:focus-visible .yepx-ft__img {
	transform: scale(1.03);
}
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play:hover .yepx-ft__play-btn,
.yepx-ft__media--video:not(.is-playing) .yepx-ft__play:focus-visible .yepx-ft__play-btn {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 10px 24px rgba(6, 34, 44, 0.38);
	background: rgba(6, 34, 44, 0.88);
}
.yepx-ft__play-icon {
	display: block;
	width: 28px;
	height: 28px;
}
.yepx-ft__play:focus-visible .yepx-ft__play-btn {
	outline: 2px solid var(--yepx-color-cta, #06baf3);
	outline-offset: 3px;
}
.yepx-ft--anim .yepx-ft__copy.is-enter {
	animation: yepx-ft-copy var(--yepx-ft-dur) var(--yepx-ft-ease) both;
}
.yepx-ft--anim .yepx-ft__media.is-enter {
	animation: yepx-ft-media calc(var(--yepx-ft-dur) + 80ms) var(--yepx-ft-ease) 80ms both;
}
.yepx-ft--anim .yepx-ft__copy.is-leave,
.yepx-ft--anim .yepx-ft__media.is-leave {
	animation: yepx-ft-leave 150ms var(--yepx-ft-ease) both;
}
@keyframes yepx-ft-copy {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes yepx-ft-media {
	from {
		opacity: 0;
		transform: translateX(20px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}
@keyframes yepx-ft-leave {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@media (min-width: 768px) {
	.yepx-ft {
		--yepx-ft-cols: var(--yepx-ft-tcols);
	}
	.yepx-ft__tab {
		flex: 1 1 calc((100% - (var(--yepx-ft-cols) - 1) * var(--yepx-ft-gap)) / var(--yepx-ft-cols));
		min-width: 0;
		max-width: calc((100% - (var(--yepx-ft-cols) - 1) * var(--yepx-ft-gap)) / var(--yepx-ft-cols));
	}
}
@media (min-width: 1025px) {
	.yepx-ft {
		--yepx-ft-cols: var(--yepx-ft-dcols);
	}
}
@media (max-width: 1024px) {
	.yepx-ft {
		padding-block: var(--yepx-ft-pad-t);
	}
	.yepx-ft__panel {
		gap: 1.5rem;
		padding: 1.75rem;
	}
}
@media (max-width: 767px) {
	.yepx-ft {
		padding-block: var(--yepx-ft-pad-m);
		overflow-x: clip;
	}
	.yepx-ft:not(.yepx-ft--w-container) .yepx-ft__inner {
		width: calc(100% - 20px);
	}
	.yepx-ft__tabs {
		gap: 8px;
	}
	.yepx-ft__tab {
		flex: 1 1 calc((100% - (var(--yepx-ft-mcols) - 1) * 8px) / var(--yepx-ft-mcols));
		min-width: 0;
		max-width: calc((100% - (var(--yepx-ft-mcols) - 1) * 8px) / var(--yepx-ft-mcols));
		min-height: 52px;
		padding: 0.4rem 0.45rem;
		gap: 0.35rem;
	}
	.yepx-ft__tab-icon {
		flex: 0 0 28px;
		width: 28px;
		height: 28px;
	}
	.yepx-ft__tab-icon .yepx-icon,
	.yepx-ft__tab-icon .yepx-ft__svg {
		width: 14px;
		height: 14px;
	}
	.yepx-ft__tab-title {
		font-size: 0.75rem;
	}
	.yepx-ft__tab-sub {
		font-size: 0.625rem;
	}
	.yepx-ft__panel,
	.yepx-ft__panel--media-left {
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
		padding: 1.35rem;
	}
	.yepx-ft__panel--media-left .yepx-ft__media {
		order: 1;
	}
	.yepx-ft__heading {
		font-size: 1.5rem;
	}
}
@media (max-width: 390px) {
	.yepx-ft,
	.yepx-ft__inner,
	.yepx-ft__tabs,
	.yepx-ft__panel {
		max-width: 100%;
		min-width: 0;
		overflow-x: clip;
	}
	.yepx-ft__tabs {
		gap: 6px;
	}
	.yepx-ft__tab {
		flex: 1 1 calc((100% - (var(--yepx-ft-mcols) - 1) * 6px) / var(--yepx-ft-mcols));
		max-width: calc((100% - (var(--yepx-ft-mcols) - 1) * 6px) / var(--yepx-ft-mcols));
		min-height: 48px;
		padding: 0.3rem 0.35rem;
		gap: 0.25rem;
	}
	.yepx-ft__tab-icon {
		flex: 0 0 24px;
		width: 24px;
		height: 24px;
	}
	.yepx-ft__tab-icon .yepx-icon,
	.yepx-ft__tab-icon .yepx-ft__svg {
		width: 12px;
		height: 12px;
	}
	.yepx-ft__tab-title {
		font-size: 0.6875rem;
		line-height: 1.15;
	}
}
@media (prefers-reduced-motion: reduce) {
	.yepx-ft__tab,
	.yepx-ft--anim .yepx-ft__copy.is-enter,
	.yepx-ft--anim .yepx-ft__media.is-enter,
	.yepx-ft--anim .yepx-ft__copy.is-leave,
	.yepx-ft--anim .yepx-ft__media.is-leave,
	.yepx-ft__media--video .yepx-ft__play::after,
	.yepx-ft__media--video .yepx-ft__play .yepx-ft__img,
	.yepx-ft__play-btn {
		transition: none !important;
		animation: none !important;
	}
	.yepx-ft__media--video .yepx-ft__play:hover .yepx-ft__img,
	.yepx-ft__media--video .yepx-ft__play:focus-visible .yepx-ft__img {
		transform: none;
	}
	.yepx-ft__media--video .yepx-ft__play:hover .yepx-ft__play-btn,
	.yepx-ft__media--video .yepx-ft__play:focus-visible .yepx-ft__play-btn {
		transform: translate(-50%, -50%);
		box-shadow: none;
	}
}
html[data-yepx-motion="off"] .yepx-ft__media--video .yepx-ft__play::after,
html[data-yepx-motion="off"] .yepx-ft__media--video .yepx-ft__play .yepx-ft__img,
html[data-yepx-motion="off"] .yepx-ft__play-btn {
	transition: none !important;
}
