/**
 * AI V2 Template Styles
 *
 * Breakpoints (use consistently):
 *   Mobile:  max-width: 767px
 *   Tablet:  768px – 1024px  (min-width: 768px and max-width: 1024px, or max-width: 1024px for tablet+mobile)
 *   Desktop: min-width: 1025px
 */

/* Page background */
.ai-v2 {
	background: #191919;
}

/* Site header: common-new.css (new templates) + app-v2. */

/* AI template: extra logo mark slides out from behind the main lockup */
.template-ai-v2.body-redesign-v2 .header .header__logo,
.template-ai-v2.body-redesign-v2 .header .header__main {
	overflow: visible;
}

.template-ai-v2.body-redesign-v2 .header .header-logo {
	isolation: isolate;
}

.template-ai-v2.body-redesign-v2 .header .header-logo > img.header-logo__img {
	z-index: 2;
}

/* Line + mark: anchored just past the 82px lockup (no negative X — that pulled the mark under “AI”) */
.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out-group {
	position: absolute;
	left: 100%;
	top: 50%;
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	transform: translate3d(10px, -50%, 0);
	pointer-events: none;
	line-height: 0;
}

.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out-line {
	flex-shrink: 0;
	width: 1px;
	height: 20px;
	margin-right: 0;
	background: rgba(189, 173, 253, 0.95);
	box-shadow: 0 0 6px rgba(115, 88, 236, 0.45);
	transform: scaleY(0);
	transform-origin: 50% 50%;
	opacity: 0;
	transition:
		transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.28s ease;
		margin-left:2px;
}

.template-ai-v2.body-redesign-v2 .header .header-logo.is-slide-out-ready .header-logo__slide-out-line {
	transform: scaleY(1);
	opacity: 1;
}

/* Mark reveals by widening from the line (no translate — avoids “from under logo” read) */
.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out {
	position: relative;
	left: auto;
	top: auto;
	display: block;
	flex: 0 1 auto;
	min-width: 0;
	max-width: 0;
	margin-left: 8px;
	overflow: hidden;
	line-height: 0;
	/* Ease-in-out (not strong ease-out) so a long duration reads as slow throughout */
	transition: max-width 2.05s cubic-bezier(0.45, 0, 0.55, 1) 0.55s;
}

.template-ai-v2.body-redesign-v2 .header .header-logo.is-slide-out-ready .header-logo__slide-out {
	max-width: min(140px, 28vw);
}

.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out img {
	display: block;
	height: 17px;
	width: auto;
	max-width: min(140px, 28vw);
	object-fit: contain;
}

@media (max-width: 767px) {
	.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out img {
		max-width: min(110px, 40vw);
		height: 18px;
	}

	.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out-group {
		transform: translate3d(8px, -50%, 0);
	}

	.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out {
		margin-left: 6px;
	}

	.template-ai-v2.body-redesign-v2 .header .header-logo.is-slide-out-ready .header-logo__slide-out {
		max-width: min(110px, 40vw);
	}
}

@media (prefers-reduced-motion: reduce) {
	.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out-line {
		transition: none;
		transform: scaleY(1);
		opacity: 1;
	}

	.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out {
		transition: none;
		max-width: min(140px, 28vw);
	}

	@media (max-width: 767px) {
		.template-ai-v2.body-redesign-v2 .header .header-logo__slide-out {
			max-width: min(110px, 40vw);
		}
	}
}

/* Glowing text – animated purplish tracer glow (GIF-style) */
.ai-v2 .glowingtext {
	color: #BDADFD;
	text-shadow:
		0 0 8px rgba(115, 88, 236, 0.7),
		0 0 18px rgba(115, 88, 236, 0.5),
		0 0 28px rgba(115, 88, 236, 0.3),
		0 0 38px rgba(115, 88, 236, 0.2);
	animation: glowingtext-pulse 2.5s ease-in-out infinite;
	display: contents
}
@keyframes glowingtext-pulse {
	0%, 100% {
		text-shadow:
			0 0 8px rgba(115, 88, 236, 0.7),
			0 0 18px rgba(115, 88, 236, 0.5),
			0 0 28px rgba(115, 88, 236, 0.3),
			0 0 38px rgba(115, 88, 236, 0.2);
	}
	25% {
		text-shadow:
			1px 0 12px rgba(115, 88, 236, 0.8),
			2px 0 22px rgba(115, 88, 236, 0.6),
			0 1px 32px rgba(115, 88, 236, 0.35),
			0 0 45px rgba(115, 88, 236, 0.28);
	}
	50% {
		text-shadow:
			0 0 10px rgba(115, 88, 236, 0.75),
			0 0 24px rgba(115, 88, 236, 0.55),
			-1px 0 30px rgba(115, 88, 236, 0.32),
			0 0 42px rgba(115, 88, 236, 0.25);
	}
	75% {
		text-shadow:
			-1px 0 11px rgba(115, 88, 236, 0.78),
			-2px 0 20px rgba(115, 88, 236, 0.58),
			0 -1px 29px rgba(115, 88, 236, 0.33),
			0 0 44px rgba(115, 88, 236, 0.26);
	}
}
.ai-v2 .glowingtext:hover {
	animation-duration: 1.8s;
	text-shadow:
		0 0 12px rgba(196, 184, 255, 1),
		0 0 24px rgba(124, 92, 252, 0.85),
		0 0 36px rgba(124, 92, 252, 0.6),
		0 0 50px rgba(73, 23, 93, 0.45);
}

/* Wrapper for hero + client logos – video bg is contained to this area only */
.ai-v2 .ai-v2-hero-and-logos-wrap {
	position: relative;
}

/* Background video – covers only hero-section-ai and section-client-logo-tab-wrap */
.ai-v2 .ai-v2-video-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}
/* Grain overlay on video */
.ai-v2 .ai-v2-video-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image: url(https://www.vts.com/wp-content/uploads/2026/01/grain-1.png);
	background-repeat: repeat;
	background-size: auto;
	background-position: 0 0;
}
/*
 * Hero background: Wistia full width, anchored to bottom of the inner (height from Wistia / foam).
 */
.ai-v2 .ai-v2-video-bg__wistia-inner {
	/* Must stay block-level — display:flex on this layer breaks the absolute Wistia embed */
	display: block !important;
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}
.ai-v2 .ai-v2-video-bg__wistia-inner .wistia_embed {
	position: absolute !important;
	width: 100% !important;
	bottom: 0 !important;
	transform: none !important;
	left: 0 !important;
	top: auto !important;
	height: auto !important;
	right: auto !important;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.ai-v2 .ai-v2-video-bg__wistia-inner .wistia_embed {
		top: 0 !important;
	}
}

.ai-v2 .ai-v2-video-bg__wistia-inner .wistia_embed iframe,
.ai-v2 .ai-v2-video-bg__wistia-inner .wistia_responsive_padding,
.ai-v2 .ai-v2-video-bg__wistia-inner .wistia_responsive_wrapper {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
}

/* Main content stacks above the fixed video */
.ai-v2 .hero-section-ai,
.ai-v2 .section-client-logo-tab-wrap,
.ai-v2 .section {
	position: relative;
	z-index: 0;
}

/* Section containers: box format, max width 125rem, centered */
.ai-v2 .container {
	max-width: 125rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* .ai-v2 .container.headingcontainer {
	padding: 0 0 45px 0;
} */

/* Hero Section (intro only – no video inside; video is on main wrapper) */
.ai-v2 .hero-section-ai {
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 230px 20px 120px 20px;
}
.ai-v2 .hero-section-ai > .container {
	width: 100%;
}

.ai-v2 .hero-content-ai {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

/* Tagline Pill – single box (background stays); only inner content cycles */
.ai-v2 .hero-tagline-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 46px;
	box-sizing: border-box;
	background: linear-gradient(90deg, rgb(177 174 177 / 30%) 0%, rgb(201 199 202 / 0%) 100%);
	backdrop-filter: blur(2px);
	border-radius: 100px;
	padding: 12px 24px;
	color: #d0d0d0;
	margin-bottom: 10px;
}
/* Border fades to right – pseudo draws stroke, mask fades it */
.ai-v2 .hero-tagline-pill::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	pointer-events: none;
	-webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
}

.ai-v2 .hero-tagline-pill-inner {
	position: relative;
	height: 100%;
	min-height: 0;
	min-width: 120px;
	width: max-content;
	max-width: min(100%, 95vw);
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

/* Bullet is static; only text cycles inside the track. Track clips so bullet can bounce without being cropped. */
.ai-v2 .hero-tagline-pill-track {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	overflow: hidden;
}

/* Content items stack inside the track; only active one visible and in flow for content-based width */
.ai-v2 .hero-tagline-pill-track .hero-tagline-pill-item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
	pointer-events: none;
}

/* Active item in flow so pill width fits content (no fixed width / cropping) */
.ai-v2 .hero-tagline-pill-track .hero-tagline-pill-item.active {
	position: relative;
	width: max-content;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0s;
	pointer-events: auto;
}

/* Exit: current content fades down */
.ai-v2 .hero-tagline-pill-track .hero-tagline-pill-item.fade-down {
	visibility: visible;
	pointer-events: none;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Enter: next content fades up */
.ai-v2 .hero-tagline-pill-track .hero-tagline-pill-item.fade-up {
	visibility: visible;
	opacity: 0;
	transform: translateY(-12px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.ai-v2 .hero-tagline-pill-track .hero-tagline-pill-item.fade-up.active {
	opacity: 1;
	transform: translateY(0);
}

@keyframes tagline-bullet-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.ai-v2 .tagline-bullet {
	display: inline-block;
	width: 13px;
	height: 13px;
	background-color: #00f0f0;
	border-radius: 100%;
	margin-right: 8px;
	flex-shrink: 0;
	font-size: 0;
	color: transparent;
	overflow: hidden;
	/* smooth curve that never overshoots below rest position */
	animation: tagline-bullet-bounce 1.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ai-v2 .tagline-text {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}
.ai-v2 .tagline-arrow {
	display: inline-flex;
	align-items: center;
	margin-left: 0.4em;
	flex-shrink: 0;
	color: inherit;
	opacity: 0.95;
}
.ai-v2 .tagline-arrow img,
.ai-v2 .tagline-arrow svg {
	display: block;
	height: auto;
}
.ai-v2 .tagline-arrow__img {
	max-height: 14px;
	width: auto;
}
.ai-v2 .tagline-text__link {
	color: #fff;
	text-decoration: none;
}


/* Hero Title */
.ai-v2 .hero-title-ai {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 90px;
	line-height: 0.98em;
	/* letter-spacing: -1.4px; */
	text-align: center;
	margin-bottom: 24px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin: 18px auto;
}

.ai-v2 .hero-title-line1 {
	display: block;
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 76.73px;
	line-height: 77.04px;
	/* letter-spacing: -0.12px; */
	color: #fff;
}

.ai-v2 .hero-title-line2 {
	display: block;
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 76.73px;
	line-height: 77.04px;
	/* letter-spacing: -0.12px; */
}

.ai-v2 .title-part-intelligent {
	color: #d0d0d0; /* Light gray for "Intelligent" */
}

.ai-v2 .title-part-rest {
	color: #fff; /* White for "Real Estate" */
}

/* Description */
.ai-v2 .hero-description-ai {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 300;
	font-size: 21px;
	line-height: 1.2em;
	/* letter-spacing: -0.6px; */
	text-align: center;
	color: #fff;
	margin-bottom: 35px;
}

/* Video Wrapper */
.ai-v2 .hero-video-wrapper-ai {
	position: relative;
	z-index: 2;
	margin-top: 40px;
}

.ai-v2 .video-wrap-ai {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.ai-v2 .video-wrap-ai:hover {
	transform: scale(1.02);
}

.ai-v2 .video-cover-ai {
	width: 100%;
	height: auto;
	display: block;
}

/* Section: Video section (from existing AI page) */


.ai-v2 .section.section-video-section {
	padding-top: 80px;
	padding-bottom: 85px;
}

.ai-v2 .section.section-video-section .container {
	max-width: 1800px;
	width: 95%;
	margin: 0 auto;
	padding: 0;
}

.ai-v2 .section.section-video-section .hero-img {
	margin: 0 auto;
	max-width: 100%;
}

/* Kill nested .section defaults + inline-block baseline gap under the player */
.ai-v2 .section-ai-video .vid-wrapper.section {
	padding: 0;
	margin: 0;
	background: transparent;
}

.ai-v2 .section.section-video-section .vid-wrapper-inner {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: block;
	/* border-radius: 20px; */
	height: 100%;
	/* box-shadow: 0 0 26px rgba(0, 0, 0, 0.07); */
}

.ai-v2 .section.section-video-section .vid-wrapper-inner .wistia-video-div {
	cursor: pointer;
}

/* Poster thumbnails: fill the 16:9 wrap (width:100% + height:auto leaves empty bands) */
.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div .desktop-view,
.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div .mobile-view {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
	pointer-events: none;
}

/* No transform on this wrapper: Safari/WebKit often downscales video/iframe on composited
   layers when an ancestor has transform, so playback and poster look permanently soft. */
.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.6s ease-out;
}

.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div.is-in-view {
	opacity: 1;
}

/* Instant reset when leaving viewport so fade-in can run again on next visit (section-ai-video) */
.ai-v2 .section-ai-video .hero-video-div .video-wrap.wistia-video-div.ai-video-fade-skip-transition {
	transition: none;
}

.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div .wistia_embed {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100% !important;
	height: 100% !important;
}

.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div .wistia-click-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	border: 0;
	padding: 0;
	background: transparent !important;
	outline: none;
	box-shadow: none;
	cursor: pointer;
	pointer-events: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .hero-section-ai {
		padding: 160px 20px 90px 20px;
	}

	.ai-v2 .btn-showcase-style {
		font-size: 15px;
	}

	.ai-v2 .tagline-text__link {
		font-size: 14px;
	}

	.ai-v2 .section.section-video-section {
		padding-top: 80px;
		padding-bottom: 70px;
	}
}

@media (max-width: 767px) {
	.ai-v2 .section.section-video-section {
		padding-top: 10px;
		padding-bottom: 50px;
	}
	.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div {
		aspect-ratio: 4 / 3;
	}
	.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div .desktop-view {
		display: none !important;
	}
	.ai-v2 .section.section-video-section .hero-video-div .video-wrap.wistia-video-div .mobile-view {
		display: block !important;
	}
	/* .ai-v2 .section.section-video-section .container {
		padding-top: 60px;
		padding-bottom: 60px;
	} */
}

.ai-v2 .wistia_embed {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* Ensure Wistia iframe fills container (avoids black letterboxing in section-video-section) */
.ai-v2 .section.section-video-section .video-wrap.wistia-video-div .wistia_embed iframe,
.ai-v2 .section.section-video-section .video-wrap.wistia-video-div .wistia_embed .wistia_responsive_padding,
.ai-v2 .section.section-video-section .video-wrap.wistia-video-div .wistia_embed .wistia_responsive_wrapper {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
}

/* Lower Section */
.ai-v2 .lower-section-ai {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 80px 0;
}

.ai-v2 .lower-bg-ai {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.ai-v2 .lower-video-ai {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ai-v2 .lower-bg-ai::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.ai-v2 .lower-content-ai {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 40px 20px;
}

.ai-v2 .lower-title-ai {
	margin-bottom: 30px;
}

/* Countdown Styles */
.ai-v2 .countdown-ai {
	margin: 30px 0;
}

.ai-v2 .countdown-heading-ai {
	font-size: 1.25rem;
	margin-bottom: 20px;
	font-weight: 400;
}

.ai-v2 .countdown-row-ai {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.ai-v2 .countdown-item-ai {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 100px;
}

.ai-v2 .countdown-item-ai span {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}

.ai-v2 .countdown-item-ai small {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
}

/* CTA Form */
.ai-v2 .cta-form-ai {
	margin-top: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.ai-v2 .cta-form-heading-ai {
	font-size: 1.25rem;
	margin-bottom: 20px;
	font-weight: 400;
}

/* ==========================================================================
   Scroll banner section (reveals when scrolled into view)
   ========================================================================== */
.ai-v2 .scroll-banner-section-ai {
	background: #25282c;
	padding: 60px 0;
	position: relative;
	z-index: 1;
}

.ai-v2 .scroll-banner-container-ai {
	max-width: 125rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
	box-sizing: border-box;
}

.ai-v2 .scroll-banner-inner-ai {
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ai-v2 .scroll-banner-section-ai.is-visible .scroll-banner-inner-ai {
	opacity: 1;
	transform: translateY(0);
}

.ai-v2 .scroll-banner-title-ai {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 700;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	line-height: 1.2;
	color: #fff;
	margin: 0 0 12px;
	/* letter-spacing: -0.02em; */
}

.ai-v2 .scroll-banner-desc-ai {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #b0b0b0;
	margin: 0 0 24px;
}

.ai-v2 .scroll-banner-cta-ai {
	display: inline-block;
	padding: 14px 28px;
	background: #7f6ff0;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 15px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.ai-v2 .scroll-banner-cta-ai:hover {
	background: #9182f2;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.ai-v2 .scroll-banner-section-ai {
		padding: 40px 0;
	}
}


/* Responsive Styles */
@media (max-width: 1024px) {
	.ai-v2 .hero-title-ai {
		font-size: 60px;
		line-height: 61px;
		margin: 0;
	}
	
	.ai-v2 .hero-title-line1 {
		font-size: 60px;
		line-height: 61px;
	}
	
	.ai-v2 .hero-title-line2 {
		font-size: 60px;
		line-height: 61px;
	}
	
	.ai-v2 .hero-description-ai {
		font-size: 18px;
		margin: 20px auto;
	}
	
	.ai-v2 .hero-tagline-pill {
		margin-bottom: 15px;
	}
	
	.ai-v2 .countdown-item-ai span {
		font-size: 2.5rem;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .hero-tagline-pill {
		height: 36px;
		padding: 0 24px;
	}

	.ai-v2 .tagline-bullet {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 767px) {
	.ai-v2 .hero-section-ai {
		min-height: 500px;
		padding: 150px 0 55px 0;
	}
	
	.ai-v2 .hero-title-ai {
		font-size: 56px;
		/* line-height: 41px; */
	}
	
	.ai-v2 .hero-title-line1 {
		font-size: 40px;
		line-height: 41px;
	}
	
	.ai-v2 .hero-title-line2 {
		font-size: 40px;
		line-height: 41px;
	}
	
	.ai-v2 .hero-description-ai {
		font-size: 18px;
	}
	
	.ai-v2 .hero-tagline-pill {
		font-size: 0.75rem;
		padding: 0 12px;
		margin-bottom: 20px;
		margin-right: 8px;
		height: 33px;
	}

	.ai-v2 .tagline-text {
		font-size: 12px;
	}

	.ai-v2 .tagline-bullet {
		width: 11px;
		height: 11px;
		margin-right: 6px;
	}
	
	.ai-v2 .countdown-row-ai {
		gap: 20px;
	}
	
	.ai-v2 .countdown-item-ai {
		min-width: 80px;
	}
	
	.ai-v2 .countdown-item-ai span {
		font-size: 2rem;
	}
	
}

/* ==========================================================================
   Customer Quotes (testimonials) section
   ========================================================================== */
.ai-v2 .testimonials {
	--tm-bg: transparent;
	--tm-text: #ffffff;
	--tm-text-muted: rgba(255, 255, 255, 0.7);
	--tm-radius: 18px;
	--tm-height: 502px;
	--tm-hero-media-pct: 35%;
	--tm-nav-size: 47px;
	--tm-speed: 0.55s;
	--tm-hero-w: 852px;
	--tm-card-w: 229px;
	--tm-gap: 18px;
	--container-max: 1280px;
	--container-padding: 30px;
	position: relative;
	background: var(--tm-bg);
	color: var(--tm-text);
	font-family: "Proxima Nova", "Inter", system-ui, -apple-system, sans-serif;
	padding: 50px 0;
	overflow: hidden;
	min-height: 100vh;
}

.ai-v2 .testimonials .container {
	padding-top: 0;
	padding-bottom: 0;
}

.ai-v2 .testimonials__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}
.ai-v2 .testimonials__bg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.45;
}
.ai-v2 .testimonials__bg-blob--1 {
	width: 1080px;
	height: 280px;
	background: radial-gradient(ellipse, rgba(124, 92, 252, 0.5), transparent 70%);
	bottom: 10%;
	left: -5%;
	transform: rotate(-2deg);
}
.ai-v2 .testimonials__bg-blob--2 {
	width: 400px;
	height: 260px;
	background: radial-gradient(ellipse, rgba(160, 80, 220, 0.4), transparent 70%);
	bottom: 5%;
	right: 10%;
	transform: rotate(3deg);
}
.ai-v2 .testimonials__bg-blob--3 {
	width: 750px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(100, 60, 200, 0.35), transparent 70%);
	top: 10%;
	right: -10%;
	transform: rotate(-12deg);
}
.ai-v2 .testimonials__heading {
	max-width: 782px;
	margin-bottom: 46px;
	color: white;
}
.ai-v2 .testimonials__track {
	position: relative;
	height: var(--tm-height);
	margin-left: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
}
.ai-v2 .testimonials__card {
	position: absolute;
	top: 0;
	height: var(--tm-height);
	border-radius: var(--tm-radius);
	overflow: hidden;
	background: #1a1a2e;
	border: none;
	cursor: pointer;
	transition: left var(--tm-speed) cubic-bezier(0.4, 0, 0.2, 1), width var(--tm-speed) cubic-bezier(0.4, 0, 0.2, 1);
}
.ai-v2 .testimonials__card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(130deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 5;
}
.ai-v2 .testimonials__card.no-transition {
	transition: none !important;
}
.ai-v2 .testimonials__card-media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.ai-v2 .testimonials__card-hover-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}
.ai-v2 .testimonials__card.is-hover-video:not(.is-hero) .testimonials__card-hover-video {
	opacity: 1;
}
.ai-v2 .testimonials__card-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}
.ai-v2 .testimonials__card.is-playing .testimonials__card-video {
	opacity: 1;
}
.ai-v2 .testimonials__card-body {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: var(--tm-hero-media-pct);
	padding: 40px;
	display: flex;
	flex-direction: column;
	z-index: 2;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease 0.45s;
}
.ai-v2 .testimonials__card.is-hero .testimonials__card-media {
	right: auto;
	width: var(--tm-hero-media-pct);
}
.ai-v2 .testimonials__card.is-hero .testimonials__card-body {
	opacity: 1;
	pointer-events: auto;
}
.ai-v2 .testimonials__card.is-hero {
	cursor: default;
}
.ai-v2 .testimonials__card-logo {
	flex-shrink: 0;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.15;
	text-align: center;
}
.ai-v2 .testimonials__card-logo-img {
	display: block;
	height: 48px;
	width: auto;
	/* margin: 0 auto; */
}
.ai-v2 .testimonials__card-bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.ai-v2 .testimonials__card-quote {
	font-size: 24px;
	font-weight: 300;
	line-height: 1.21;
	max-width: 404px;
	margin: 0;
}
.ai-v2 .testimonials__card-author {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ai-v2 .testimonials__card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.ai-v2 .testimonials__card-name {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}
.ai-v2 .testimonials__card-role {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
}
/* Hide play button when main_video is empty (data-main-video set by JS from ACF; class set by JS as backup) */
.ai-v2 .testimonials__card[data-main-video=""] .testimonials__play-btn,
.ai-v2 .testimonials__card.testimonials__card--no-main-video .testimonials__play-btn {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}
.ai-v2 .testimonials__play-btn {
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: var(--tm-text);
	transition: transform 0.2s ease;
}
.ai-v2 .testimonials__play-btn img {
	display: block;
	width: 39px;
	height: 39px;
}
.ai-v2 .testimonials__play-btn:hover {
	transform: scale(1.1);
}
.ai-v2 .testimonials__card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 179px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(35, 35, 35, 0));
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 24px 32px;
	z-index: 3;
	border-radius: 0 0 var(--tm-radius) var(--tm-radius);
	transition: opacity 0.25s ease;
}
.ai-v2 .testimonials__card.is-hero .testimonials__card-overlay {
	opacity: 0;
	pointer-events: none;
}
.ai-v2 .testimonials__card-overlay-logo {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	width: 100%;
}
.ai-v2 .testimonials__card-overlay-logo-img {
	display: block;
	height: 28px;
	width: auto;
	margin: 0 auto;
}

/* Testimonial Wistia video modal (main_video) */
.ai-v2 .testimonials__video-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}
.ai-v2 .testimonials__video-modal.is-open {
	opacity: 1;
	visibility: visible;
}
.ai-v2 .testimonials__video-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	cursor: pointer;
}
.ai-v2 .testimonials__video-modal-box {
	position: relative;
	width: 90vw;
	max-width: 960px;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--tm-radius, 12px);
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}
.ai-v2 .testimonials__video-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: none;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.2s ease;
}
.ai-v2 .testimonials__video-modal-close:hover {
	background: rgba(0, 0, 0, 0.85);
}
.ai-v2 .testimonials__video-modal-close-icon {
	width: 24px;
	height: 24px;
	display: block;
}
.ai-v2 .testimonials__video-modal-embed {
	position: absolute;
	inset: 0;
}
.ai-v2 .testimonials__video-modal-embed .wistia_embed,
.ai-v2 .testimonials__video-modal-embed .wistia_embed iframe,
.ai-v2 .testimonials__video-modal-embed .wistia_responsive_padding,
.ai-v2 .testimonials__video-modal-embed .wistia_responsive_wrapper {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	border: 0;
	outline: none;
	box-sizing: border-box;
}
.ai-v2 .testimonials__video-modal-embed .wistia_embed iframe {
	display: block;
}

/* AI page promo overlay: poster + play on top of 16:9 box until user plays Wistia */
.ai-v2 .ai-page-wistia-popup__box .testimonials__video-modal-close {
	z-index: 5;
}
.ai-v2 .ai-page-wistia-popup__stage {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: #000;
}
/* Promo popup only: bleed Wistia shell past the stage by a few px to hide GPU/subpixel hairlines at video matte */
.ai-v2 .ai-page-wistia-popup__embed .wistia_embed,
.ai-v2 .ai-page-wistia-popup__embed .wistia_embed iframe,
.ai-v2 .ai-page-wistia-popup__embed .wistia_responsive_padding,
.ai-v2 .ai-page-wistia-popup__embed .wistia_responsive_wrapper {
	inset: unset !important;
	top: -3px !important;
	left: -3px !important;
	right: auto !important;
	bottom: auto !important;
	width: calc(100% + 6px) !important;
	height: calc(100% + 6px) !important;
}
.ai-v2 .ai-page-wistia-popup__embed.testimonials__video-modal-embed {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.ai-v2 .ai-page-wistia-popup__poster {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}
.ai-v2 .ai-page-wistia-popup__poster.is-dismissed {
	display: none;
}
.ai-v2 .ai-page-wistia-popup__poster-btn {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
	background: #111;
	overflow: hidden;
	border-radius: inherit;
}
.ai-v2 .ai-page-wistia-popup__poster-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: -2px;
}
.ai-v2 .ai-page-wistia-popup__poster-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ai-v2 .ai-page-wistia-popup__poster-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
}
.ai-v2 .ai-page-wistia-popup__poster-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: rgba(0, 0, 0, 0.35); */
	transition: background 0.2s ease;
	pointer-events: none;
}
.ai-v2 .ai-page-wistia-popup__poster-btn:hover .ai-page-wistia-popup__poster-play {
	/* background: rgba(0, 0, 0, 0.45); */
}
.ai-v2 .ai-page-wistia-popup__poster-play-icon {
	width: 64px;
	height: 64px;
	padding: 16px;
	box-sizing: content-box;
	color: #fff;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 50%;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
@media (max-width: 767px) {
	.ai-v2 .ai-page-wistia-popup__poster-play-icon {
		width: 52px;
		height: 52px;
		padding: 14px;
	}
}

.ai-v2 .testimonials__nav {
	display: flex;
	gap: 20px;
	/* justify-content: space-between; */
	align-items: center;
	margin-top: 40px;
	max-width: calc(var(--tm-hero-w) + var(--tm-gap) + var(--tm-card-w) * 2 + var(--tm-gap) * 2);
}
.ai-v2 .testimonials__nav-btn {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1px solid rgba(48, 48, 48, 0.8);
	background: linear-gradient(139.69deg, rgba(93, 89, 95, 0.3) 8.8%, rgba(73, 23, 93, 0.3) 98.63%);
	color: var(--tm-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.ai-v2 .testimonials__nav-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.35);
}
.ai-v2 .testimonials__nav-btn:active {
	transform: scale(0.95);
}
.ai-v2 .testimonials__nav-btn svg {
	width: 30px;
	height: 30px;
}
@media (max-width: 767px) {
	.ai-v2 .testimonials {
		--tm-hero-media-pct: 42%;
		--tm-height: 400px;
	}
	.ai-v2 .testimonials__track {
		margin-left: var(--container-padding);
	}
	.ai-v2 .testimonials__card-body {
		padding: 20px;
	}
	.ai-v2 .testimonials__card-logo-img {
		height: 32px;
	}
	.ai-v2 .testimonials__card-quote {
		font-size: 16px;
		min-width: 0;
		max-width: 100%;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	.ai-v2 .testimonials__card-name {
		font-size: 14px;
	}
	.ai-v2 .testimonials__card-role {
		font-size: 13px;
	}
}

/* ==========================================================================
   Product Showcase (from combined.html + styles.css)
   ========================================================================== */

/* Mobile stack: all products shown one after other (hidden on desktop/tablet) */
.ai-v2 .product-showcase__mobile-stack {
	display: none;
}

.ai-v2 .product-showcase__mobile-stack-item {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-bottom: 70px;
}

.ai-v2 .product-showcase__mobile-stack-item:last-child {
	margin-bottom: 0;
}

.ai-v2 .product-showcase__mobile-stack .product-showcase__panel-icon {
	margin-bottom: 0;
}

.ai-v2 .product-showcase__mobile-stack .product-showcase__panel-title {
	margin: 0;
	margin-top: -12px !important;
}

.ai-v2 .product-showcase__mobile-stack .product-showcase__panel-text {
	margin: 0;
}

.ai-v2 .product-showcase__mobile-stack .product-showcase__stats-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 10px;
}

.ai-v2 .product-showcase__mobile-stack .product-showcase__stats-row .product-showcase__stat-block {
	flex: 1;
	padding-left: 14px;
}

.ai-v2 .product-showcase__media--mobile {
	position: relative;
	width: 100%;
	aspect-ratio: 5 / 4;
	border-radius: var(--ps-card-radius);
	overflow: hidden;
	background: var(--ps-card-bg, #2a2b2f);
	margin-top: 0;
}

.ai-v2 .product-showcase__media--mobile .product-showcase__video-slot {
	position: absolute;
	inset: 0;
	opacity: 1;
	pointer-events: auto;
}

.ai-v2 .product-showcase__media--mobile .product-showcase__wistia-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Wistia in product showcase: embed options remove chrome; disallow taps/clicks on any leftover UI */
.ai-v2 .product-showcase__media--mobile .product-showcase__wistia-wrap .wistia_embed {
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
}

/* Classic product-showcase section: hidden for now — remove this rule to show again */
.ai-v2 .product-showcase {
	display: none !important;
}

.ai-v2 .product-showcase {
	/* --ps-bg: #0e0e14;
	--ps-card-bg: #2a2b2f; */
	--ps-card-radius: 12px;
	--ps-text: #ededed;
	--ps-text-muted: rgba(255, 255, 255, 0.7);
	--ps-tab-bg: transparent;
	--ps-tab-border: #3e3f43;
	--ps-tab-active-bg: #ededed;
	--ps-tab-active-text: #1c1d20;
	--ps-accent: #7c5cfc;
	position: relative;
	z-index: 1;
	isolation: isolate;
	background: var(--ps-bg);
	color: var(--ps-text);
	font-family: "Proxima Nova", "Inter", system-ui, -apple-system, sans-serif;
	padding: 0 30px;
}

/* Section art: --product-showcase-bg on section (ACF tab_section.bg_img); fixed attachment = no scroll with page */
.ai-v2 .product-showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: var(--product-showcase-bg, none);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-attachment: fixed;
	pointer-events: none;
	display: none;
}

.ai-v2 .product-showcase > .container,
.ai-v2 .product-showcase__scene {
	position: relative;
	z-index: 1;
}

/* .ai-v2 .product-showcase__header {
	padding: 80px 0 32px;
	max-width: 960px;
} */

.container.headingcontainer {
	padding: 0;
}

/* h2 typography (size/weight/line-height): common-new.css — keep only section-specific tweaks here */
.ai-v2 .product-showcase__heading {
	/* letter-spacing: -0.01em; */
	color: var(--ps-text);
	padding-bottom: 40px;
}

.ai-v2 .product-showcase__tabs-wrapper {
	z-index: 20;
	background: transparent;
	padding: 0 0 50px 0;
	flex-shrink: 0;
}

.ai-v2 .product-showcase__tabs {
	display: flex;
	gap: 20px;
	padding: 5px 6px;
	flex-wrap: nowrap;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	/* background: linear-gradient(90deg, rgba(93, 89, 95, 0.3), rgba(93, 12, 124, 0.3)); */
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.ai-v2 .product-showcase__tabs::-webkit-scrollbar {
	display: none;
}

.ai-v2 .product-showcase__tabs-active-slider {
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 6px;
	width: 0;
	background: var(--ps-tab-active-bg);
	border-radius: 9999px;
	pointer-events: none;
	transition: left 0.35s ease, width 0.35s ease;
	z-index: 0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.ai-v2 .product-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 2px 20px;
	border-radius: 9999px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 21px;
	font-weight: 500;
	cursor: pointer;
	transition: color 0.25s ease, opacity 0.25s ease, background 0.25s ease;
	white-space: nowrap;
	line-height: 1.2em;
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.ai-v2 .product-tab:hover {
	color: #fff;
	background: #ffffff40;
}

.ai-v2 .product-tab.active {
	color: var(--ps-tab-active-text);
}

.ai-v2 .product-tab__icon {
	width: auto;
	height: 35px;
	flex-shrink: 0;
	border-radius: 4px;
}

/* Scene + steps: same scroll model as combined.html (each .product-showcase__step = 100vh) */
.ai-v2 .product-showcase__scene {
	position: relative;
}

.ai-v2 .product-showcase__steps {
	position: relative;
	z-index: 0;
}

.ai-v2 .product-showcase__step {
	height: 100vh;
	box-sizing: border-box;
	pointer-events: none;
}

.ai-v2 .product-showcase__sticky {
	position: sticky;
	top: 100px;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
	padding-bottom:130px;
	z-index: 2;
}

.ai-v2 .product-showcase__layout {
	display: grid;
	grid-template-columns: 6fr 4fr; /* 60% media, 40% content */
	gap: 58px;
	align-items: center;
	width: 100%;
	flex: 1;
	min-height: 0;
	padding: 0px;
}

.ai-v2 .product-showcase__media {
	position: relative;
	aspect-ratio: 5 / 4;
	/* max-height: 70vh; */
	border-radius: var(--ps-card-radius);
	overflow: hidden;
	background: var(--ps-card-bg);
}

.ai-v2 .product-showcase__video-slot {
	position: absolute;
	inset: 0;
	background: var(--ps-card-bg);
	border-radius: var(--ps-card-radius);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.ai-v2 .product-showcase__video-slot.active {
	opacity: 1;
	pointer-events: auto;
}

.ai-v2 .product-showcase__video-slot video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--ps-card-radius);
}

.ai-v2 .product-showcase__video-slot .product-showcase__wistia-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--ps-card-radius);
	overflow: hidden;
	z-index: 0;
}

.ai-v2 .product-showcase__video-slot .product-showcase__wistia-wrap .wistia_embed {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
}

.ai-v2 .product-showcase__video-slot .product-showcase__wistia-wrap .wistia_click_to_play_layer,
.ai-v2 .product-showcase__media--mobile .product-showcase__wistia-wrap .wistia_click_to_play_layer {
	display: none !important;
	pointer-events: none !important;
}

.ai-v2 .product-showcase__content {
	position: relative;
	min-height: 380px;
	overflow: hidden;
}

.ai-v2 .product-showcase__panel {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	opacity: 0;
	/* enter from slightly below vertical center */
	transform: translateY(calc(-50% + 50px));
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	padding-left: 5px;
}

.ai-v2 .product-showcase__panel.active {
	opacity: 1;
	transform: translateY(-50%);
	pointer-events: auto;
}

.ai-v2 .product-showcase__panel.exit-up {
	opacity: 0;
	transform: translateY(calc(-50% - 50px));
	pointer-events: none;
}

.ai-v2 .product-showcase__panel-icon {
	width: 55px;
	height: 55px;
	margin-bottom: 0px;
	border-radius: 8px;
	margin-left: -10px;
}

.ai-v2 .product-showcase__panel-title {
	font-family: "Proxima Nova", system-ui, -apple-system, sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 118%;
	/* letter-spacing: -0.11px; */
	margin: 2px 0 10px 0;
}

.ai-v2 .product-showcase__panel-text {
	font-family: "Proxima Nova", system-ui, -apple-system, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 118%;
	/* letter-spacing: -0.11px; */
	color: var(--ps-text);
	margin-bottom: 25px;
}

/* Panel body copy: desktop/mobile in column; tablet duplicates below media+content */
.ai-v2 .product-showcase__panel-text-tab-wrap {
	display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .product-showcase__panel-text--inline {
		display: none !important;
	}
	.ai-v2 .product-showcase__cta--inline {
		display: none !important;
	}
	.ai-v2 .product-showcase__panel-text-tab-wrap {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding-top: 44px;
		clear: both;
	}
	.ai-v2 .product-showcase__panel-text-tab-item {
		display: none;
	}
	.ai-v2 .product-showcase__panel-text-tab-item.active {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.ai-v2 .product-showcase__panel-text-tab-flex {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 70px;
		width: 100%;
	}
	.ai-v2 .product-showcase__panel-text-tab-flex .product-showcase__panel-text {
		flex: 1 1 260px;
		margin: 0;
		max-width: 60%;
	}
	.ai-v2 .product-showcase__cta--tab.btn-showcase-style {
		flex-shrink: 0;
		align-self: center;
	}
}

.ai-v2 .product-showcase__stats-row {
	display: flex;
	gap: 30px;
	margin-bottom: 35px;
}

/* Left accent: same as .homepage-new .asset-stat-line::before (gradient + glow) */
.ai-v2 .product-showcase__stat-block {
	position: relative;
	padding-left: 22px;
	border-left: none;
}

.ai-v2 .product-showcase__stat-block::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	border-radius: 4px;
	background: linear-gradient(
		180deg,
		#8c82ff 0%,
		rgba(103, 63, 255, 0.35) 100%
	);
	box-shadow: 0 0 15px #673fffbd, 0 0 20px rgba(103, 63, 255, 0.2),
		0 0 25px rgba(140, 130, 255, 0.15);
}

.ai-v2 .product-showcase__stat-number {
	display: block;
	font-size: 32px;
	font-weight: 600;
	line-height: 35.15px;
	/* letter-spacing: -0.11px; */
	margin-bottom: 5px;
}

.ai-v2 .product-showcase__stat-label {
	display: block;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.13;
	color: var(--ps-text-muted);
	max-width: 182px;
}

/* .product-showcase__cta uses .btn-showcase-style (common-new.css); mobile overrides below */

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .product-showcase {
		padding-left: 30px;
		padding-right: 30px;
	}
	.ai-v2 .product-showcase__heading {
		padding-bottom: 0;
	}
	.ai-v2 .product-showcase__sticky {
		top: 55px;
		min-height: 55vh;
		padding-bottom: 120px;
	}
	.ai-v2 .product-showcase__tabs-wrapper {
		padding: 30px 0 35px 0;
	}
	.ai-v2 .product-tab__icon {
		height: 22px;
	}
	.ai-v2 .product-showcase__panel-title {
		margin: 0 0 25px 0;
		font-size: 26px;
	}
	.ai-v2 .product-showcase__layout {
		grid-template-columns: 65fr 35fr;
	}
	.ai-v2 .product-showcase__media {
		width: 100%;
		min-width: 0;
	}
	.ai-v2 .product-showcase__content {
		width: 100%;
		min-width: 0;
	}
	.ai-v2 .product-showcase__stats-row {
		flex-direction: column;
		margin: 0px;
		gap: 20px
	}
	.ai-v2 .product-showcase__stat-label {
		max-width: none;
	}
}

@media (max-width: 1024px) {
	.ai-v2 .product-showcase__tabs {
		gap: 20px;
	}
	.ai-v2 .product-tab {
		padding: 8px 16px;
		font-size: 13px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .product-tab {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.ai-v2 .product-showcase {
		padding-left: 20px;
		padding-right: 20px;
	}
	.ai-v2 .product-showcase__header {
		padding: 48px 0 0 0;
	}
	.ai-v2 .product-showcase__tabs-wrapper {
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.ai-v2 .product-showcase__tabs {
		gap: 20px;
		padding: 5px 6px;
	}
	.ai-v2 .product-tab {
		padding: 8px 16px;
		font-size: 13px;
		flex: 0 0 auto;
	}
	.ai-v2 .product-showcase__steps {
		display: none;
	}
	.ai-v2 .product-showcase__sticky {
		position: static;
		height: auto;
		overflow: visible;
		padding-bottom: 110px;
	}
	.ai-v2 .product-showcase__tabs-wrapper {
		display: none !important;
	}

	.ai-v2 .product-showcase__mobile-stack {
		display: block;
		order: -1;
	}

	.ai-v2 .product-showcase__panel-icon {
		height: 45px;
		width: 45px;
margin-left: -10px;
margin-bottom: -5px !important;
	}

	.ai-v2 .product-showcase__panel-title {
		font-size: 23px;
	}

	.ai-v2 .product-showcase__layout > .product-showcase__media,
	.ai-v2 .product-showcase__layout > .product-showcase__content,
	.ai-v2 .product-showcase__panel-text-tab-wrap {
		display: none !important;
	}

	.ai-v2 .product-showcase__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.ai-v2 .product-showcase__media {
		aspect-ratio: 5 / 4;
		max-height: none;
	}
	.ai-v2 .product-showcase__content {
		min-height: 0;
	}
	.ai-v2 .product-showcase__panel {
		position: static;
		opacity: 0;
		transform: none;
		display: none;
		pointer-events: auto;
		transition: none;
	}
	.ai-v2 .product-showcase__panel.mobile-visible {
		display: block;
		opacity: 1;
	}
	.ai-v2 .product-showcase__video-slot {
		transition: none;
	}
	.ai-v2 .product-showcase__stats-row {
		flex-direction: column;
		gap: 20px;
	}
	.ai-v2 .product-showcase__stat-label {
		font-size: 15px;
		max-width: none;
	}
	.ai-v2 .product-showcase__cta.btn-showcase-style {
		/* display: block;
		text-align: center; */
		/* padding: 15px 30px; */
	}
}

/* AI Compare section styles: see assets/css-new/ai-compare.css (from combined.html + styles.css) */

/* ==========================================================================
   Stats visual section – title, subtitle, image left + three callout boxes right
   (From homepage; graph replaced by image)
   ========================================================================== */
.ai-v2 .section-stats-visual {
	/* background: #fff; */
	padding: 120px 0 90px;
}

.ai-v2 .section-stats-visual .container-stats-visual {
	max-width: 125rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.ai-v2 .stats-visual-header {
	margin: 0;
}

.ai-v2 .stats-visual-title {
	/* letter-spacing: -0.02em; */
	color: #fff;
	margin: 0;
	max-width: 65%;
}

.ai-v2 .stats-visual-subtitle {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	margin: 40px 0;
}

.ai-v2 .stats-visual-content {
	display: flex;
	align-items: stretch;
	gap: 48px;
	flex-wrap: nowrap;
}

.ai-v2 .stats-visual-image-wrap {
	flex: 0 1 80%;
	min-width: 0;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
}
.ai-v2 .stats-visual-image-wrap:has(.wistia_embed) {
	pointer-events: none;
}
.ai-v2 .stats-visual-image-wrap .wistia_embed {
	min-height: 280px;
	display: block;
}

/* image_id (desk + tablet ≥768) vs mob_img_id (mobile ≤767) */
@media (min-width: 768px) {
	.ai-v2 .stats-visual-image-wrap--dual-wistia .stats-visual-wistia--desk {
		display: block !important;
	}
	.ai-v2 .stats-visual-image-wrap--dual-wistia .stats-visual-wistia--mob {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.ai-v2 .stats-visual-image-wrap--dual-wistia .stats-visual-wistia--desk {
		display: none !important;
	}
	.ai-v2 .stats-visual-image-wrap--dual-wistia .stats-visual-wistia--mob {
		display: block !important;
	}
}

.ai-v2 .stats-visual-image-wrap .wistia_embed iframe {
	pointer-events: none;
}
/* Match section-video Wistia sizing: foam + absolute embeds need a positioned box and full-bleed iframe
   or wide layouts get fractional scales and adaptive low tiers look permanently soft. */
.ai-v2 .stats-visual-image-wrap .wistia_embed iframe,
.ai-v2 .stats-visual-image-wrap .wistia_embed .wistia_responsive_padding,
.ai-v2 .stats-visual-image-wrap .wistia_embed .wistia_responsive_wrapper {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
}
.ai-v2 .stats-visual-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.ai-v2 .stats-visual-callouts {
	flex: 0 1 20%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;
	min-width: 0;
}

.ai-v2 .stats-visual-callout {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ai-v2 .stats-visual-callout-value {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 500;
	font-size: 77px;
	line-height: 1;
	/* letter-spacing: -0.02em; */
	background: linear-gradient(265.81deg, #8C82FF 1.18%, #8330EE 96.05%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ai-v2 .stats-visual-callout-desc {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	margin: 0;
}

@media (max-width: 1024px) {
	.ai-v2 .stats-visual-title {
		max-width: 100%;
	}

	.ai-v2 .stats-visual-content {
		flex-wrap: wrap;
		gap: 40px;
	}

	.ai-v2 .stats-visual-image-wrap {
		flex: 1 1 100%;
	}

	.ai-v2 .stats-visual-callouts {
		flex: 1 1 100%;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
	}

	.ai-v2 .stats-visual-callout {
		flex: 1 1 calc(50% - 12px);
		min-width: 200px;
	}
}

@media (max-width: 767px) {
	.ai-v2 .section-stats-visual {
		padding: 50px 0 70px;
	}

	.ai-v2 .stats-visual-header {
		margin: 0;
	}

	.ai-v2 .stats-visual-callouts {
		flex-direction: column;
	}

	.ai-v2 .stats-visual-callout {
		flex: 1 1 100%;
	}

	.ai-v2 .stats-visual-callout-value {
		font-size: 42px;
	}
}

/* ==========================================================================
   Video Carousel
   ========================================================================== */
.ai-v2 .video-carousel {
	padding: 100px 30px 110px 30px;
	position: relative;
	/* Match homepage .tabs-related-cards-prev/next chevron size */
	--video-carousel-arrow-icon-size: 16px;
}

.ai-v2 .video-carousel__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.ai-v2 .video-carousel .container {
	position: relative;
	z-index: 1;
	/* padding: 0; */
}
.ai-v2 .video-carousel__player {
	position: relative;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	background: #1a1a1e;
	margin-bottom: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	cursor: pointer;
}
.ai-v2 .video-carousel__player-inner {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #0f0f12;
	cursor: pointer;
}
.ai-v2 .video-carousel__player-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	z-index: 1;
}
.ai-v2 .video-carousel__player-inner.is-playing::before {
	opacity: 0;
}
.ai-v2 .video-carousel__wistia-container {
	position: absolute;
	inset: 0;
	cursor: pointer;
}
.ai-v2 .video-carousel__wistia-container .wistia_embed {
	height: 100% !important;
	width: 100% !important;
}
.ai-v2 .video-carousel__play-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: opacity 0.25s ease;
}
.ai-v2 .video-carousel__play-overlay .video-carousel__play-icon {
	display: none;
}
.ai-v2 .video-carousel__player-inner.is-playing .video-carousel__play-overlay {
	opacity: 0;
	pointer-events: none;
}
/* Player info overlay: time, title, play btn from active card (bottom-left) */
.ai-v2 .video-carousel__player-info {
	position: absolute;
	bottom: 0;
	left: 0;
	/* right: 0; */
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
	padding: 24px 28px;
	pointer-events: none;
	width: 100%;
}
.ai-v2 .video-carousel__player-info .video-carousel__player-info-play {
	pointer-events: auto;
}
.ai-v2 .video-carousel__player-info-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
	flex: 1;
}
.ai-v2 .video-carousel__player-info-duration:empty,
.ai-v2 .video-carousel__player-info-title:empty {
	display: none;
}
.ai-v2 .video-carousel__player-info-duration {
	font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}
.ai-v2 .video-carousel__player-info-title {
	font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 28px;
	line-height: 1.2;
	/* letter-spacing: -0.02em; */
	color: #fff;
	margin: 0;
}
.ai-v2 .video-carousel__player-info-play {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	border: 0;
	background: rgb(255 255 255 / 70%);
	color: #181818;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s ease, transform 0.15s ease;
}
.ai-v2 .video-carousel__player-info-play:hover {
	/* background: rgba(80, 80, 90, 0.9); */
}
.ai-v2 .video-carousel__player-info-play:active {
	transform: scale(0.95);
}
.ai-v2 .video-carousel__player-info-play svg {
	width: 50px;
	height: 50px;
	margin-left: 2px;
}
.ai-v2 .video-carousel__player-inner.is-playing .video-carousel__player-info {
	opacity: 0;
	pointer-events: none;
}
.ai-v2 .video-carousel__play-icon {
	width: 72px;
	height: 72px;
	color: rgba(255, 255, 255, 0.95);
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.ai-v2 .video-carousel__carousel-wrap {
	position: relative;
	width: 100%;
}
.ai-v2 .video-carousel__track {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	min-width: 0;
	padding: 15px 0;
	overflow-y: visible;
}
/* Nav below track (like testimonials) */
.ai-v2 .video-carousel__nav {
	display: flex;
	gap: 20px;
	align-items: center;
	/* justify-content: center; */
	margin-top: 35px;
}
/* Match testimonials nav button design; chevron via ::before like homepage tabs-related-cards arrows */
.ai-v2 .video-carousel__arrow {
	position: relative;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	/* border: 1px solid rgba(48, 48, 48, 0.8); */
	border: 1px solid rgb(112 112 112 / 80%);
	background: linear-gradient(139.69deg, rgba(93, 89, 95, 0.3) 8.8%, rgba(73, 23, 93, 0.3) 98.63%);
	color: var(--tm-text, rgba(255, 255, 255, 0.95));
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 0;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.ai-v2 .video-carousel__arrow:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.35);
}
.ai-v2 .video-carousel__arrow:active {
	transform: scale(0.95);
}
.ai-v2 .video-carousel__arrow svg {
	display: none;
}
.ai-v2 .video-carousel__arrow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: var(--video-carousel-arrow-icon-size);
	height: var(--video-carousel-arrow-icon-size);
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	box-sizing: border-box;
}
.ai-v2 .video-carousel__arrow--prev::before {
	transform: translate(-30%, -50%) rotate(45deg);
}
.ai-v2 .video-carousel__arrow--next::before {
	transform: translate(-70%, -50%) rotate(-135deg);
}
.ai-v2 .video-carousel__track::-webkit-scrollbar {
	display: none;
}
.ai-v2 .video-carousel__card {
	position: relative;
	scroll-snap-align: start;
	flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
	display: flex;
	align-items: stretch;
	gap: 20px;
	text-align: left;
	padding: 10px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #18181885;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	font-family: inherit;
	align-items: center;
}
.ai-v2 .video-carousel__card:hover {
	border-color: transparent;
	box-shadow: 0 0 20px rgba(103, 63, 255, 0.35), 0 4px 15px rgba(0, 0, 0, 0.25);
}
.ai-v2 .video-carousel__card:hover::before {
	display: block;
	content: "";
	position: absolute;
	height: calc(100% + 4px);
	top: -2px;
	left: -2px;
	right: -2px;
	--trace-length: 90deg;
	background: conic-gradient(
		from var(--ai-learn-trace-angle),
		rgba(140, 130, 255, 0) 0deg,
		rgba(140, 130, 255, 0.15) calc(var(--trace-length) * 0.125),
		rgba(140, 130, 255, 0.35) calc(var(--trace-length) * 0.25),
		rgba(140, 130, 255, 0.55) calc(var(--trace-length) * 0.375),
		rgba(140, 130, 255, 0.85) calc(var(--trace-length) * 0.5),
		rgba(103, 63, 255, 0.7) calc(var(--trace-length) * 0.625),
		rgba(103, 63, 255, 0.4) calc(var(--trace-length) * 0.75),
		rgba(140, 130, 255, 0.2) calc(var(--trace-length) * 0.875),
		rgba(140, 130, 255, 0) var(--trace-length),
		transparent 360deg
	);
	animation: ai-learn-big-product-trace 4s linear infinite;
	border-radius: 14px;
	z-index: 0;
	pointer-events: none;
	--_border: 1.5px;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) padding-box;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) padding-box;
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	padding: var(--_border);
	box-sizing: border-box;
}
.ai-v2 .video-carousel__card.active {
	border-color: transparent;
	/* background: #ffffff1f; */
	/* box-shadow: 0 0 28px rgba(103, 63, 255, 0.35), 0 4px 20px rgba(0, 0, 0, 0.25); */
}
/* Border fades to right – same style as .hero-tagline-pill */
.ai-v2 .video-carousel__card.active::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 12px;
	border: 0.75px solid #8C82FF;
	pointer-events: none;
	/* -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, transparent 100%); */
}
.ai-v2 .video-carousel__card-thumb,
.ai-v2 .video-carousel__card-body {
	position: relative;
	z-index: 1;
	cursor: pointer;
}
.ai-v2 .video-carousel__card-thumb {
	flex-shrink: 0;
	width: 150px;
	min-height: 68px;
	border-radius: 8px;
	overflow: hidden;
	background: #2a2a30;
}
.ai-v2 .video-carousel__card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: pointer;
}
.ai-v2 .video-carousel__card-thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 68px;
	background: linear-gradient(135deg, #2a2a30, #1e1e24);
}
.ai-v2 .video-carousel__card-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* gap: 0.25rem; */
	padding-right: 10px;
}
.ai-v2 .video-carousel__card-duration {
	font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
	opacity: .75;
}
.ai-v2 .video-carousel__card-title {
	font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 116%;
	/* letter-spacing: -0.11px; */
	color: #fff;
	margin: 10px 0 0 0;
}
.ai-v2 .video-carousel__card-desc {
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .video-carousel {
		padding: 40px 30px;
		--video-carousel-arrow-icon-size: 12px;
	}
	.ai-v2 .video-carousel__nav {
		margin-top: 25px;
	}
	.ai-v2 .video-carousel__card {
		flex: 0 0 calc((100% - 2 * 1.25rem) / 2.2);
	}
	.ai-v2 .video-carousel__card-thumb {
		width: 120px;
	}
}

@media (max-width: 767px) {
	.ai-v2 .video-carousel {
		padding: 20px 20px 30px 20px;
		--video-carousel-arrow-icon-size: 12px;
	}
	.ai-v2 .video-carousel__player {
		margin: 0;
	}
	.ai-v2 .video-carousel__nav {
		margin-top: 15px;
	}
	.ai-v2 .video-carousel__arrow {
		width: 45px;
		height: 45px;
	}
	.ai-v2 .video-carousel__player-info-duration {
		font-size: 12px;
	}
	.ai-v2 .video-carousel__card-duration {
		font-size: 12px;
	}
	.ai-v2 .video-carousel__card-title {
		font-size: 14px;
		margin-top: 0;
	}
	.ai-v2 .video-carousel__player-info {
		padding: 15px;
		gap: 30px;
		width: 100%;
	}
	.ai-v2 .video-carousel__player-info-title {
		font-size: 16px;
	}
	.ai-v2 .video-carousel__player-info-play {
		width: 38px;
		height: 38px;
	}
	.ai-v2 .video-carousel__player-info-play svg {
		width: 20px;
		height: 20px;
	}
	.ai-v2 .video-carousel__card {
		flex: 0 0 calc((100% - 1.25rem) / 1.2);
	}
	.ai-v2 .video-carousel__card-thumb {
		width: 96px;
		min-height: 54px;
	}
}

/* ==========================================================================
   AI Compliance Standards (SOC2, GDPR, CCPA, PIPEDA, CASL)
   ========================================================================== */
.ai-v2 .ai-compliance-standards {
	background: transparent;
	padding: 40px 0px;
}
.ai-v2 .ai-compliance-standards__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 150px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ai-v2 .ai-compliance-standards__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.ai-v2 .ai-compliance-standards__icon {
	width: auto;
	height: 90px;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ai-v2 .ai-compliance-standards__icon svg,
.ai-v2 .ai-compliance-standards__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.ai-v2 .ai-compliance-standards__icon-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 40px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 8px;
}
.ai-v2 .ai-compliance-standards__label {
	font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1em;
	/* letter-spacing: -0.1px; */
	text-align: center;
	color: rgba(255, 255, 255, 0.25);
	
}

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .ai-compliance-standards {
		padding-top: 70px;
	}
	.ai-v2 .ai-compliance-standards__list {
		gap: 75px;
	}
	.ai-v2 .ai-compliance-standards__item {
		gap: 20px;
	}
	.ai-v2 .ai-compliance-standards__icon svg,
	.ai-v2 .ai-compliance-standards__icon img {
		height: 70px;
	}
	.ai-v2 .ai-compliance-standards__label {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.ai-v2 .ai-compliance-standards {
		padding: 80px 0 60px 0;
	}
	.ai-v2 .ai-compliance-standards__list {
		gap: 25px;
	}
	.ai-v2 .ai-compliance-standards__item {
		gap: 25px;
	}
	.ai-v2 .ai-compliance-standards__icon {
		width: 44px;
		height: 44px;
	}
	.ai-v2 .ai-compliance-standards__label {
		font-size: 16px;
	}
}

/* ==========================================================================
   AI CTA Block (headline + subheadline + buttons)
   ========================================================================== */
.ai-v2 .ai-cta-block-wrapper {
	position: relative;
}
.ai-v2 .ai-cta-block {
	background: transparent;
	padding: 105px 0 150px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
/* Video bg is outside section (sibling), so z-index: -1 stacks it behind section content */
.ai-v2 .ai-cta-block-wrapper .ai-cta-block__video-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}
/* Grain overlay on CTA video (matches .ai-v2-video-bg::after) */
.ai-v2 .ai-cta-block-wrapper .ai-cta-block__video-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image: url(https://www.vts.com/wp-content/uploads/2026/01/grain-1.png);
	background-repeat: repeat;
	background-size: auto;
	background-position: 0 0;
}
.ai-v2 .ai-cta-block-wrapper .ai-cta-block__video-bg .ai-cta-block__bg-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.ai-v2 .ai-cta-block--has-video .container {
	position: relative;
	z-index: 1;
}
.ai-v2 .ai-cta-block__headline {
	font-size: 60px;
	/* letter-spacing: -1.1px; */
	text-align: center;
	color: #fff;
	margin: 0 0 30px 0;
}
.ai-v2 .ai-cta-block__subheadline {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	margin: 0 0 2rem 0;
	/* letter-spacing: -0.02em; */
}
.ai-v2 .ai-cta-block__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .ai-cta-block {
		padding: 65px 0 120px;
	}
	.ai-v2 .ai-cta-block__headline {
		font-size: 40px;
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.ai-v2 .ai-cta-block {
		padding: 30px 0 110px;
	}
	.ai-v2 .ai-cta-block__headline {
		font-size: 30px;
	}
	.ai-v2 .ai-cta-block__buttons {
		flex-direction: column;
	}
}


/* Footer matches Homepage V2 (footer-redesign); do not override here. */

/* --------------------------------------------------------------------------
   Learn more / big product card (from legacy template-main-vts-ai)
   -------------------------------------------------------------------------- */
.ai-v2 .section-ai-learn-more {
	padding: 150px 0 80px;
	position: relative;
	z-index: 2;
}
.ai-v2 .section-ai-learn-more .big-product-card {
	width: 95%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: 0;
	gap: 45px;
	display: flex;
	position: relative;
	z-index: 11;
	align-items: center;
	overflow: visible;
}
.ai-v2 .section-ai-learn-more .big-product-card p {
	font-size: 16px;
	line-height: 1.3em;
	color: #ffffff;
	font-weight: 600;
	font-family: "Proxima Nova", proximanova, -apple-system, BlinkMacSystemFont, sans-serif;
	margin: 0 0 20px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
}
.ai-v2 .section-ai-learn-more .big-product-card h3 {
	color: rgba(255, 255, 255, 0.48);
	font-size: 45px;
	line-height: 1.05em;
	font-weight: 600;
	margin: 0;
	text-align: left;
}
.ai-v2 .section-ai-learn-more .values-ticker {
	position: relative;
}
.ai-v2 .section-ai-learn-more .big-product-card .left-conn .btn-showcase-style {
	margin-top: 20px;
}
.ai-v2 .section-ai-learn-more .ticker-values,
.ai-v2 .section-ai-learn-more .ticker-subtexts {
	position: relative;
	height: 47px;
	overflow: hidden;
	display: inline-block;
	width: auto;
	margin-bottom: -9px;
	white-space: nowrap;
	max-width: 100%;
	transition: min-width 0.25s ease, width 0.25s ease;
}
.ai-v2 .section-ai-learn-more .ticker-values .value,
.ai-v2 .section-ai-learn-more .ticker-subtexts .subtext {
	position: absolute;
	left: 0;
	width: max-content;
	height: 46px;
	line-height: 48px;
	display: block;
	opacity: 0;
	transform: translateY(100%);
	transition: transform 0.6s ease, opacity 0.6s ease;
	font-weight: 600;
	color: #fff;
	text-align: left;
}
.ai-v2 .section-ai-learn-more .value.exit,
.ai-v2 .section-ai-learn-more .subtext.exit {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transform: translateY(-100%);
}
.ai-v2 .section-ai-learn-more .value.active,
.ai-v2 .section-ai-learn-more .subtext.active {
	position: absolute;
	top: 0;
	opacity: 1;
	transform: translateY(0);
}
/* bronmob: mobile-only line break – hidden on desktop/tablet */
.ai-v2 .bronmob {
	display: none !important;
}
.ai-v2 .section-ai-learn-more .bronmob {
	display: none;
}
.ai-v2 .section-ai-learn-more .big-product-card .left-conn {
	width: 72%;
	z-index: 11;
	padding: 25px;
	position: relative;
}
.ai-v2 .section-ai-learn-more .big-product-card .right-conn {
	width: 30%;
	height: 100%;
	top: 0;
	position: relative;
	z-index: 12;
}
.ai-v2 .section-ai-learn-more .big-product-card .right-conn-inner {
	width: 300px;
	height: 300px;
	position: relative;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
	max-width: 500px;
}
@media (min-width: 768px) {
	.ai-v2 .section-ai-learn-more .big-product-card .right-conn-inner {
		margin-right: 0;
	}
}
.ai-v2 .section-ai-learn-more .big-product-card .right-conn img {
	display: block;
	width: 200px;
	max-width: 100%;
	height: auto;
}
.ai-v2 .section-ai-learn-more .rotating-border-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
	z-index: 1;
	background: #1a1a1a;
	box-shadow: 0 0 45px rgba(103, 63, 255, 0.74);
	animation: ai-learn-big-product-glow 5s ease-in-out infinite;
	padding: 0;
}
@property --ai-learn-trace-angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}
@keyframes ai-learn-big-product-trace {
	0% {
		--ai-learn-trace-angle: 0deg;
	}
	100% {
		--ai-learn-trace-angle: 360deg;
	}
}
@keyframes ai-learn-big-product-glow {
	0%,
	100% {
		box-shadow: 0 0 45px rgba(103, 63, 255, 0.59),
			0 0 55px rgba(103, 63, 255, 0.16), 0 0 70px rgba(140, 130, 255, 0.12);
	}
	50% {
		box-shadow: 0 0 45px rgba(103, 63, 255, 0.59),
			0 0 65px rgba(103, 63, 255, 0.24), 0 0 85px rgba(140, 130, 255, 0.2),
			0 0 105px rgba(140, 130, 255, 0.12);
	}
}
.ai-v2 .section-ai-learn-more .rotating-border-wrapper::before {
	display: block;
	content: "";
	position: absolute;
	height: calc(100% + 3px);
	top: -3px;
	left: -3px;
	right: -3px;
	--trace-length: 90deg;
	background: conic-gradient(
		from var(--ai-learn-trace-angle),
		rgba(140, 130, 255, 0) 0deg,
		rgba(140, 130, 255, 0.15) calc(var(--trace-length) * 0.125),
		rgba(140, 130, 255, 0.35) calc(var(--trace-length) * 0.25),
		rgba(140, 130, 255, 0.55) calc(var(--trace-length) * 0.375),
		rgba(140, 130, 255, 0.85) calc(var(--trace-length) * 0.5),
		rgba(103, 63, 255, 0.7) calc(var(--trace-length) * 0.625),
		rgba(103, 63, 255, 0.4) calc(var(--trace-length) * 0.75),
		rgba(140, 130, 255, 0.2) calc(var(--trace-length) * 0.875),
		rgba(140, 130, 255, 0) var(--trace-length),
		transparent 360deg
	);
	animation: ai-learn-big-product-trace 4s linear infinite;
	border-radius: 19px;
	z-index: 1;
	--_border: 1.5px;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) padding-box;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) padding-box;
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	padding: var(--_border);
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	.ai-v2 .section-ai-learn-more .rotating-border-wrapper::after {
		display: none;
	}
}
.ai-v2 .section-ai-learn-more .rotating-border-wrapper .image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #1a1a1a;
	border-radius: 18px;
}
.ai-v2 .section-ai-learn-more .mobile-image-overlay {
	display: none;
}
.ai-v2 .section-ai-learn-more .big-product-card .image-wrapper img.desktop-view {
	display: block;
}
.ai-v2 .section-ai-learn-more .big-product-card .image-wrapper img.mobile-view {
	display: none;
}
@keyframes ai-learn-big-product-glow-mobile {
	0%,
	100% {
		box-shadow: 0 -18px 22px -8px rgba(103, 63, 255, 0.25),
			-18px 0 22px -8px rgba(103, 63, 255, 0.25),
			18px 0 22px -8px rgba(103, 63, 255, 0.25);
	}
	50% {
		box-shadow: 0 -22px 26px -8px rgba(103, 63, 255, 0.28),
			-22px 0 26px -8px rgba(103, 63, 255, 0.28),
			22px 0 26px -8px rgba(103, 63, 255, 0.28);
	}
}
@media (max-width: 1024px) {
	.ai-v2 .section-ai-learn-more .big-product-card {
		width: 100%;
		margin-right: auto;
	}
	.ai-v2 .section-ai-learn-more .big-product-card h3 {
		font-size: 32px;
	}
	.ai-v2 .section-ai-learn-more .ticker-values,
	.ai-v2 .section-ai-learn-more .ticker-subtexts {
		height: 40px;
	}
	.ai-v2 .section-ai-learn-more .ticker-values .value,
	.ai-v2 .section-ai-learn-more .ticker-subtexts .subtext {
		line-height: 42px;
		font-size: 32px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.ai-v2 .bronmob {
		display: none !important;
	}
	.ai-v2 .section-ai-learn-more {
		padding: 115px 0 80px;
	}

	.ai-v2 .section-ai-learn-more .big-product-card .right-conn-inner {
		width: 250px;
		height: 250px;
	}
}
@media (max-width: 767px) {
	.ai-v2 .section-ai-learn-more .big-product-card {
		width: 100%;
		gap: 0;
		flex-wrap: wrap;
		margin-left: auto;
		margin-right: auto;
	}
	.ai-v2 .section-ai-learn-more .big-product-card .left-conn {
		padding: 30px 15px 0;
		width: 100%;
		text-align: center;
		order: 2;
	}
	.ai-v2 .section-ai-learn-more .big-product-card p {
		text-align: center;
		font-size: 13px;
	}
	.ai-v2 .section-ai-learn-more .big-product-card h3 {
		text-align: center;
		font-size: 30px;
	}
	.ai-v2 .section-ai-learn-more .ticker-values,
	.ai-v2 .section-ai-learn-more .ticker-subtexts {
		height: 40px;
		display: block;
		min-width: auto !important;
		width: 100%;
	}
	.ai-v2 .section-ai-learn-more .ticker-values .value,
	.ai-v2 .section-ai-learn-more .ticker-subtexts .subtext {
		line-height: 40px;
		font-size: 26px !important;
		width: 100% !important;
		text-align: center !important;
		left: 0 !important;
	}
	.ai-v2 .section-ai-learn-more .value.active,
	.ai-v2 .section-ai-learn-more .subtext.active,
	.ai-v2 .section-ai-learn-more .value.exit,
	.ai-v2 .section-ai-learn-more .subtext.exit {
		width: 100% !important;
		text-align: center !important;
	}
	.ai-v2 .section-ai-learn-more .bronmob,
	.ai-v2 .bronmob {
		display: block !important;
	}
	.ai-v2 .section-ai-learn-more .big-product-card .right-conn {
		width: 100%;
		position: unset;
		order: 1;
	}
	.ai-v2 .section-ai-learn-more .rotating-border-wrapper::before {
		height: calc(100% + -10px);
		z-index: -2;
		display: none;
	}
	.ai-v2 .section-ai-learn-more .rotating-border-wrapper {
		animation: ai-learn-big-product-glow-mobile 5s ease-in-out infinite;
	}
	.ai-v2 .section-ai-learn-more .rotating-border-wrapper::after {
		content: "";
		position: absolute;
		left: -16px;
		right: -16px;
		bottom: -16px;
		height: 38px;
		pointer-events: none;
		background: linear-gradient(to bottom, rgba(25, 25, 25, 0), #191919 70%);
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}
	.ai-v2 .section-ai-learn-more .big-product-card .image-wrapper img.desktop-view {
		display: none !important;
	}
	.ai-v2 .section-ai-learn-more .big-product-card .image-wrapper img.mobile-view {
		display: block !important;
	}
}
@media (max-width: 767px) {
	.ai-v2 .section-ai-learn-more {
		padding: 110px 0 90px 0;
	}
	.ai-v2 h3 {
		font-size: 23px;
	}
	.tickernextline {
		display: none;
	}
}
