/**
 * landing.css  front-page sections (ported from Landing.dc.html inline styles).
 * Progressive enhancement: platform/proof panels show all without JS; the
 * *--js classes (added by the modules) switch to single-view. FAQ uses :target.
 */

/* ---- Section heads ---- */
.avt-section-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}
.avt-section-title {
	font-size: clamp(28px, 3.4vw, 38px);
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--fg);
	margin: 0 auto 12px;
}
.avt-section-title--light {
	color: var(--section-contrast-fg);
}
.avt-section-sub {
	font-size: 15px;
	line-height: 1.65;
	color: var(--muted);
	margin: 0 auto;
	max-width: 620px;
}
.avt-section-sub--light {
	color: var(--section-contrast-muted);
}
.avt-section-pad {
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
}

/* =====================  HERO  ===================== */
.avt-hero {
	position: relative;
	overflow: hidden;
	overflow-x: clip;
	min-height: 100svh;
	background: #08080b;
	color: #f5f5f7;
	max-width: 100%;
}
.avt-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100svh;
	overflow: hidden;
	background: #08080b;
	pointer-events: none;
	z-index: 0;
}
.avt-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}
@media (max-width: 768px) {
	.avt-hero-video {
		object-fit: contain;
	}
}
.avt-hero-scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(8, 8, 11, 0.62) 0%,
		rgba(8, 8, 11, 0.2) 34%,
		rgba(8, 8, 11, 0.3) 62%,
		rgba(8, 8, 11, 0.96) 100%
	);
}
.avt-hero-vignette {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		120% 90% at 50% 42%,
		transparent 46%,
		rgba(8, 8, 11, 0.55) 100%
	);
}
.avt-hero-grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
	background-size: 58px 58px;
	-webkit-mask-image: radial-gradient(
		125% 78% at 50% 0%,
		#000 32%,
		transparent 80%
	);
	mask-image: radial-gradient(125% 78% at 50% 0%, #000 32%, transparent 80%);
}
.avt-hero-hairline {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 122, 60, 0.55) 18%,
		rgba(196, 58, 142, 0.45) 40%,
		rgba(46, 157, 104, 0.42) 62%,
		rgba(123, 91, 230, 0.48) 82%,
		transparent
	);
}
.avt-hero-glow {
	position: absolute;
	left: 10%;
	right: 10%;
	top: -40px;
	height: 120px;
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(
		55% 80% at 50% 0%,
		rgba(255, 122, 60, 0.16),
		rgba(196, 58, 142, 0.1) 42%,
		rgba(123, 91, 230, 0.08) 68%,
		transparent 78%
	);
}
.avt-hero-copy {
	position: relative;
	z-index: 1;
	max-width: 1160px;
	margin: 0 auto;
	padding: 72px 32px 20px;
	text-align: center;
}
.avt-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	padding: 7px 15px;
}
.avt-hero-badge .avt-mono {
	font-size: 11px;
	letter-spacing: 0.08em;
	color: #c9c9d2;
	text-transform: uppercase;
}
.avt-hero-title {
	margin: 26px auto 0;
	max-width: 860px;
	font-size: clamp(30px, 5.4vw, 56px);
	line-height: 1.12;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #f5f5f7;
	padding-bottom: 2px;
}
/* Italic glyphs (esp. final "s") clip under background-clip:text  pad + pull margin like Landing.dc */
.avt-hero-em {
	font-style: italic;
	font-weight: 500;
	background: linear-gradient(92deg, #ffb169, #ff7a45, #e8543a, #c43a8e);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	padding: 0 0.18em 0.06em 0.04em;
	margin: 0 -0.1em -0.02em -0.02em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.avt-hero-desc {
	margin: 22px auto 0;
	max-width: 560px;
	font-size: 16.5px;
	line-height: 1.65;
	color: #a2a2ab;
}
.avt-hero-ctas {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
	flex-wrap: wrap;
}
.avt-hero-cta {
	font-size: 14.5px;
	font-weight: 500;
	padding: 14px 26px;
	border-radius: 999px;
}
.avt-hero-cta--primary {
	background: #f5f5f3;
	color: #0a0a0d;
}
.avt-hero-cta--primary:hover {
	background: #fff;
	color: #0a0a0d;
}
.avt-hero-cta--ghost {
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #e8e8ec;
	padding: 14px 24px;
}
.avt-hero-cta--ghost:hover {
	border-color: #ff6a2b;
	color: #ffb169;
}
@media (max-width: 900px) {
	.avt-hero-copy {
		padding: 56px 20px 16px;
	}
	.avt-hero-ctas {
		flex-direction: column;
		align-items: stretch;
		padding: 0 4px;
	}
	.avt-hero-ctas > a {
		text-align: center;
	}
}

/* ---- Partners marquee ---- */
.avt-partners {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	margin-top: 56px;
	padding: 30px 0 34px;
}
.avt-partners-label {
	text-align: center;
}
.avt-partners-label .avt-mono {
	font-size: 10.5px;
	letter-spacing: 0.08em;
	color: #8f8f98;
	text-transform: uppercase;
}
.avt-mq {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin-top: 24px;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
}
.avt-marquee__track {
	display: flex;
	width: max-content;
	max-width: none;
	gap: 14px;
	animation: avt-marquee 46s linear infinite;
}
.avt-mq:hover .avt-marquee__track,
.avt-mq:focus-within .avt-marquee__track {
	animation-play-state: paused;
}
.avt-partner {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 90px;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 12px;
}
.avt-partner img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ---- Stats ---- */
.avt-stats-wrap {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.avt-landing-stats {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 6px 32px 50px;
}
.avt-landing-stat {
	padding: 30px 22px;
	border-left: 1px solid rgba(255, 255, 255, 0.09);
	min-width: 0;
}
.avt-stat-v {
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -0.025em;
	color: #ff6a2b;
	word-break: break-word;
}
.avt-stat-l {
	font-size: 12.5px;
	line-height: 1.4;
	color: #8f8f98;
	margin-top: 8px;
}
@media (max-width: 900px) {
	.avt-landing-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 8px 20px 36px;
		gap: 0;
	}
	.avt-landing-stat {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.09);
		padding: 22px 12px;
	}
	.avt-landing-stat:nth-child(-n + 2) {
		border-top: 0;
	}
	.avt-stat-v {
		font-size: clamp(28px, 8vw, 36px);
	}
}
@media (max-width: 560px) {
	.avt-landing-stats {
		grid-template-columns: 1fr;
	}
	.avt-landing-stat {
		border-top: 1px solid rgba(255, 255, 255, 0.09);
	}
	.avt-landing-stat:first-child {
		border-top: 0;
	}
}

/* =====================  PRODUCTS  ===================== */
.avt-products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 40px;
}
.avt-product-card {
	display: flex;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	min-width: 0;
}
.avt-product-copy {
	flex: 1;
	padding: 26px 24px;
	min-width: 0;
}
.avt-product-kicker {
	display: flex;
	align-items: center;
	gap: 8px;
}
.avt-product-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--pr-accent, #e8543a);
	flex: none;
}
.avt-product-kicker span:last-child {
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
}
.avt-product-name {
	font-size: 21px;
	font-weight: 600;
	color: var(--fg);
	margin: 11px 0 0;
}
.avt-product-desc {
	margin: 9px 0 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
}
.avt-product-metrics {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
}
.avt-product-metric {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: var(--fg);
}
.avt-product-tick {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: var(--pr-accent, #e8543a);
	flex: none;
}
.avt-product-foot {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin-top: 18px;
}
.avt-product-flow {
	font-size: 10px;
	letter-spacing: 0.06em;
	color: var(--muted-2);
	text-transform: uppercase;
}
.avt-product-link {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--fg);
}
.avt-product-link:hover {
	color: var(--pr-accent, #e8543a);
}
.avt-product-media,
.avt-carousel {
	position: relative;
	width: 250px;
	flex: none;
	align-self: stretch;
	min-height: 340px;
	max-width: 100%;
	overflow: hidden;
	background: #0b0b0f;
}
.avt-carousel-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.7s ease;
}
.avt-carousel-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
.avt-carousel-slide img {
	min-width: 0;
	min-height: 0;
	flex: 1 1 0;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.avt-carousel-tag {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	font-family: var(--font-mono, 'Geist Mono', ui-monospace, monospace);
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 4px 8px;
	border-radius: 5px;
	pointer-events: none;
}
.avt-carousel-nav {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 8px;
	pointer-events: none;
}
.avt-carousel-btn {
	appearance: none;
	pointer-events: auto;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(10, 10, 13, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #f5f5f7;
	font-size: 15px;
	line-height: 1;
	padding: 0;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
}
.avt-carousel-btn:hover {
	background: rgba(255, 106, 43, 0.85);
	border-color: transparent;
}
.avt-carousel-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 7px;
}
.avt-carousel-dot {
	appearance: none;
	cursor: pointer;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: #fff;
	opacity: 0.32;
	transition:
		opacity 0.3s ease,
		width 0.3s ease;
}
.avt-carousel-dot.is-active {
	opacity: 1;
	width: 18px;
}
@media (max-width: 900px) {
	.avt-products-grid {
		grid-template-columns: 1fr;
	}
	.avt-product-card {
		flex-direction: column;
	}
	.avt-product-media,
	.avt-carousel {
		width: 100%;
		height: 220px;
		min-height: 220px;
	}
}

/* =====================  DASHBOARD  ===================== */
.avt-dash-frame {
	margin-top: 40px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	max-width: 100%;
}
.avt-dash-chrome {
	display: flex;
	align-items: center;
	gap: 7px;
	background: #15151a;
	padding: 11px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.avt-dash-dot {
	width: 11px;
	height: 11px;
	border-radius: 999px;
	flex: none;
}
.avt-dash-dot--r {
	background: #ff5f57;
}
.avt-dash-dot--y {
	background: #febc2e;
}
.avt-dash-dot--g {
	background: #28c840;
}
.avt-dash-url {
	margin-left: 12px;
	font-size: 11px;
	color: #8f8f98;
	text-transform: uppercase;
}
.avt-dash-box {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1920 / 1080;
	background: #0b0b0f;
	overflow: hidden;
	/* Prevent the 1920px island from expanding page scroll width */
	contain: paint;
}
.avt-dash-scale {
	position: absolute;
	top: 0;
	left: 0;
	width: 1920px;
	max-width: none;
	height: 1080px;
	transform-origin: top left;
	/* Start scaled down until JS measures  avoids pre-paint horizontal overflow */
	transform: scale(calc(100vw / 1920));
}
.avt-dash-iframe {
	display: block;
	width: 1920px;
	max-width: none;
	height: 1080px;
	border: 0;
	background: #0b0b0f;
}
.avt-dash-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 28px;
	border-top: 1px solid var(--section-contrast-border);
}
.avt-dash-feat {
	padding: 20px 18px 0;
	border-right: 1px solid var(--section-contrast-border);
}
.avt-dash-feat:last-child {
	border-right: 0;
}
.avt-dash-feat-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--section-contrast-fg);
}
.avt-dash-feat-body {
	font-size: 13.5px;
	color: var(--section-contrast-muted);
	margin-top: 8px;
	line-height: 1.55;
}
@media (max-width: 720px) {
	.avt-dash-features {
		grid-template-columns: 1fr;
	}
	.avt-dash-feat {
		border-right: 0;
		border-bottom: 1px solid var(--section-contrast-border);
		padding-bottom: 18px;
	}
	.avt-dash-feat:last-child {
		border-bottom: 0;
	}
}

/* =====================  MOBILE  ===================== */
.avt-mobile-showcase {
	margin-top: 40px;
	padding: 8px 0 12px;
	overflow-x: auto;
	overflow-y: hidden;
	max-width: 100%;
}
.avt-mobile-phone-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 28px 36px;
	width: 100%;
	min-width: 0;
}
.avt-mobile-slot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 300px;
	flex: 0 0 auto;
}
.avt-mobile-iframe {
	display: block;
	width: 300px;
	height: 760px;
	border: 0;
	background: transparent;
	overflow: hidden;
}
.avt-mobile-slot-title {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--fg);
	text-align: center;
}
.avt-mobile-ctas {
	text-align: center;
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.avt-btn--dark {
	background: var(--fg);
	color: var(--surface);
	font-size: 14.5px;
	font-weight: 500;
	padding: 14px 26px;
	border-radius: 999px;
	display: inline-block;
}
.avt-btn--dark:hover {
	background: var(--accent);
	color: #fff;
}
.avt-btn--ghost-dark {
	background: transparent;
	color: var(--fg);
	font-size: 14.5px;
	font-weight: 500;
	padding: 14px 26px;
	border-radius: 999px;
	display: inline-block;
	border: 1px solid var(--border);
}
.avt-btn--ghost-dark:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.avt-mobile-detail {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--muted);
	margin: 8px 0 0;
}

/* =====================  PROOF  ===================== */
.avt-proof-inner {
	max-width: 1080px;
}
.avt-proof-head {
	max-width: 640px;
	text-align: left;
}
.avt-proof-head .avt-section-title {
	margin: 0;
	text-align: left;
}
.avt-proof-sub {
	margin: 14px 0 0;
	max-width: 480px;
	text-align: left;
}
.avt-proof-stage {
	display: grid;
	grid-template-columns: minmax(220px, 280px) 1fr;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 22px;
	overflow: hidden;
	margin-top: 40px;
	box-shadow: 0 1px 0 var(--fill-muted);
}
.avt-proof-nav {
	display: flex;
	flex-direction: column;
	background: var(--card-2);
	border-right: 1px solid var(--border);
	padding: 10px;
}
.avt-proof-tab {
	appearance: none;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 14px;
	border-radius: 14px;
	font: inherit;
	color: inherit;
	width: 100%;
	transition: background 0.2s ease;
}
.avt-proof-tab:hover {
	background: var(--fill-subtle);
}
.avt-proof-tab.is-active {
	background: var(--card);
	box-shadow:
		0 0 0 1px var(--border),
		0 8px 24px var(--fill-muted);
}
.avt-proof-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	flex: none;
}
.avt-proof-tab-meta {
	min-width: 0;
}
.avt-proof-tab-product {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-2);
	display: block;
}
.avt-proof-tab.is-active .avt-proof-tab-product {
	color: var(--proof-accent, #e8543a);
}
.avt-proof-tab-label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--fg);
	margin-top: 3px;
	display: block;
}
.avt-proof-tab-count {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--muted-2);
	padding: 3px 7px;
	border-radius: 999px;
	background: var(--fill-muted);
}
.avt-proof-tab.is-active .avt-proof-tab-count {
	color: var(--proof-accent, #e8543a);
	background: color-mix(in srgb, var(--proof-accent, #e8543a) 10%, var(--card));
}
.avt-proof-panels {
	position: relative;
	min-width: 0;
}
.avt-proof-panel {
	position: relative;
	padding: 36px 40px 30px;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(
			120% 90% at 100% 0%,
			color-mix(in srgb, var(--proof-accent, #e8543a) 8%, transparent),
			transparent 55%
		),
		var(--card);
}
.avt-proof-panel::before {
	content: '';
	position: absolute;
	left: 0;
	top: 28px;
	bottom: 28px;
	width: 3px;
	border-radius: 999px;
	background: var(--proof-accent, #e8543a);
	opacity: 0.9;
}
.avt-proof--js .avt-proof-panel[hidden] {
	display: none;
}
.avt-proof-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.avt-proof-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--proof-accent, #e8543a) 9%, var(--card));
	border: 1px solid
		color-mix(in srgb, var(--proof-accent, #e8543a) 18%, transparent);
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--proof-accent, #e8543a);
}
.avt-proof-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}
.avt-proof-counter {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--muted-2);
	min-width: 3.2em;
	text-align: center;
}
.avt-proof-chev {
	appearance: none;
	border: 1px solid var(--border);
	background: var(--card);
	width: 34px;
	height: 34px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--fg);
	padding: 0;
}
.avt-proof-chev:hover {
	border-color: color-mix(
		in srgb,
		var(--proof-accent, #e8543a) 45%,
		transparent
	);
	color: var(--proof-accent, #e8543a);
	background: color-mix(in srgb, var(--proof-accent, #e8543a) 6%, var(--card));
}
.avt-proof-chev svg {
	width: 14px;
	height: 14px;
	display: block;
}
.avt-proof-slide {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.avt-proof-slide[hidden] {
	display: none;
}
.avt-proof-quote {
	margin: 26px 0 0;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: clamp(19px, 2.3vw, 27px);
	line-height: 1.45;
	letter-spacing: -0.015em;
	color: var(--fg);
	max-width: 36ch;
	border: 0;
	padding: 0;
}
.avt-proof-mark {
	position: absolute;
	top: 14px;
	right: 24px;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 140px;
	line-height: 1;
	color: color-mix(in srgb, var(--proof-accent, #e8543a) 8%, transparent);
	pointer-events: none;
	user-select: none;
	z-index: 0;
}
.avt-proof-foot {
	margin-top: auto;
	padding-top: 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid var(--border);
}
.avt-proof-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.avt-proof-avatar {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--proof-accent, #e8543a);
	background: color-mix(in srgb, var(--proof-accent, #e8543a) 10%, var(--card));
	border: 1px solid
		color-mix(in srgb, var(--proof-accent, #e8543a) 16%, transparent);
}
.avt-proof-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--fg);
}
.avt-proof-sub {
	font-size: 12.5px;
	color: var(--muted);
	margin-top: 2px;
}
.avt-proof-context {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-2);
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--surface);
}
.avt-proof-progress {
	display: flex;
	gap: 6px;
	margin-top: 16px;
	padding: 0 2px;
}
.avt-proof-bar {
	flex: 1;
	height: 2px;
	border-radius: 999px;
	background: var(--border);
	overflow: hidden;
}
.avt-proof-bar > i {
	display: block;
	height: 100%;
	width: 0;
	background: var(--proof-accent, #e8543a);
	border-radius: inherit;
}
.avt-proof-bar.is-active > i {
	width: 100%;
	transition: width var(--proof-dur, 5.5s) linear;
}
.avt-proof-bar.is-done > i {
	width: 100%;
	transition: none;
}
.avt-proof-bar.is-paused > i {
	transition: none !important;
}
@media (max-width: 900px) {
	.avt-proof-stage {
		grid-template-columns: 1fr;
	}
	.avt-proof-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-right: 0;
		border-bottom: 1px solid var(--border);
		gap: 6px;
	}
	.avt-proof-panel {
		padding: 22px 18px 18px;
	}
	.avt-proof-mark {
		font-size: 84px;
		right: 8px;
		top: 4px;
	}
}
@media (max-width: 560px) {
	.avt-proof-nav {
		grid-template-columns: 1fr;
	}
}

/* =====================  DEMO  ===================== */
.avt-demo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.avt-demo-copy {
	color: var(--section-contrast-fg);
}
.avt-demo-points {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.avt-demo-points li {
	position: relative;
	padding-left: 22px;
	color: var(--section-contrast-muted);
	font-size: 14px;
}
.avt-demo-points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--accent);
}
.avt-demo-contact {
	margin-top: 24px;
	color: var(--section-contrast-muted-2);
	font-size: 13.5px;
}
.avt-demo-contact a {
	color: #ffb169;
}
.avt-demo-form-wrap {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--section-contrast-border);
	border-radius: 18px;
	padding: 28px 26px;
}
@media (max-width: 900px) {
	.avt-demo-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Demo form fields */
.avt-demo-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.avt-demo-span2 {
	grid-column: 1 / -1;
}
.avt-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	border: 0;
	margin: 0;
	padding: 0;
	min-width: 0;
}
.avt-field > span,
.avt-field > legend {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--section-contrast-muted-2);
}
.avt-field input,
.avt-field select,
.avt-field textarea {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--section-contrast-border);
	border-radius: 9px;
	padding: 11px 13px;
	font: inherit;
	font-size: 14px;
	color: var(--section-contrast-fg);
	outline: none;
	width: 100%;
	box-sizing: border-box;
}
.avt-field input:focus,
.avt-field select:focus,
.avt-field textarea:focus {
	border-color: rgba(232, 84, 58, 0.55);
	box-shadow: 0 0 0 3px rgba(232, 84, 58, 0.14);
}
.avt-demo-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 9px;
}
.avt-demo-chip {
	cursor: pointer;
}
.avt-demo-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.avt-demo-chip span {
	display: inline-block;
	font-size: 12.5px;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #c7c7ce;
}
.avt-demo-chip input:checked + span {
	background: rgba(255, 90, 31, 0.14);
	border-color: rgba(255, 90, 31, 0.4);
	color: #ffb169;
}
.avt-consent {
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}
.avt-consent input {
	width: auto;
	margin-top: 3px;
	flex: none;
}
.avt-consent span {
	font-size: 11.5px;
	color: var(--section-contrast-muted-2);
	line-height: 1.5;
	text-transform: none;
	letter-spacing: 0;
	font-family: var(--font-sans);
}
.avt-demo-form button,
.avt-demo-form .avt-btn--light {
	margin-top: 20px;
	width: 100%;
	background: var(--hero-cta-bg);
	color: var(--hero-cta-fg);
	font-size: 14.5px;
	font-weight: 600;
	padding: 14px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
}
.avt-demo-form .avt-btn--light:hover {
	background: #fff;
}
.avt-form-notice {
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 13.5px;
	margin: 0 0 16px;
}
.avt-form-notice--success {
	background: rgba(46, 157, 104, 0.14);
	color: #b8f0d2;
	border: 1px solid rgba(46, 157, 104, 0.3);
}
.avt-form-notice--error {
	background: rgba(232, 84, 58, 0.14);
	color: #ffb4a8;
	border: 1px solid rgba(232, 84, 58, 0.3);
}
@media (max-width: 560px) {
	.avt-demo-fields {
		grid-template-columns: 1fr;
	}
}

/* =====================  FAQ  ===================== */
.avt-faq-shell {
	display: grid;
	grid-template-columns: minmax(260px, 340px) 1fr;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	margin-top: 28px;
	height: min(560px, 70vh);
	min-height: 420px;
}
.avt-faq-side {
	display: flex;
	flex-direction: column;
	background: var(--card-2);
	border-right: 1px solid var(--border);
	overflow: hidden;
	min-height: 0;
	height: 100%;
}
.avt-faq-side-head {
	padding: 16px 16px 12px;
	border-bottom: 1px solid var(--border);
}
.avt-faq-search {
	width: 100%;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 11px;
	padding: 11px 13px;
	font: inherit;
	font-size: 13.5px;
	color: var(--fg);
	outline: none;
}
.avt-faq-search:focus {
	border-color: rgba(232, 84, 58, 0.45);
	box-shadow: 0 0 0 3px rgba(232, 84, 58, 0.12);
}
.avt-faq-list {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 8px;
}
.avt-faq-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: start;
	padding: 11px 12px;
	border-radius: 12px;
	color: inherit;
	transition: background 0.15s ease;
}
.avt-faq-item:hover {
	background: var(--fill-subtle);
}
.avt-faq-item.is-active {
	background: var(--card);
	box-shadow: 0 0 0 1px var(--border);
}
.avt-faq-item-n {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--muted-2);
	padding-top: 2px;
}
.avt-faq-item.is-active .avt-faq-item-n {
	color: #c13a22;
}
.avt-faq-item-q {
	font-size: 13.5px;
	font-weight: 550;
	line-height: 1.35;
	color: var(--fg);
}
.avt-faq-item.is-active .avt-faq-item-q {
	color: var(--fg);
	font-weight: 600;
}
.avt-faq-empty {
	display: none;
	margin: 0 8px 10px;
	padding: 14px 12px;
	border: 1px dashed var(--border);
	border-radius: 12px;
	color: var(--muted);
	font-size: 13px;
	text-align: center;
}
.avt-faq-empty.is-visible {
	display: block;
}
.avt-faq-panels {
	position: relative;
	min-width: 0;
	overflow: hidden;
}
.avt-faq-panel-item {
	display: none;
	height: 100%;
}
.avt-faq-panel-item.is-first {
	display: block;
}
.avt-faq-panels:has(.avt-faq-panel-item:target) .avt-faq-panel-item.is-first {
	display: none;
}
.avt-faq-panel-item:target {
	display: block;
}
.avt-faq--js .avt-faq-panel-item,
.avt-faq--js .avt-faq-panel-item.is-first {
	display: none;
}
.avt-faq--js .avt-faq-panel-item.is-shown {
	display: block;
}
.avt-faq-panel-scroll {
	height: 100%;
	overflow-y: auto;
	padding: 28px 28px 24px 32px;
}
.avt-faq-panel-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.avt-faq-panel-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c13a22;
}
.avt-faq-panel-kicker::before {
	content: '';
	width: 14px;
	height: 2px;
	border-radius: 999px;
	background: #e8543a;
}
.avt-faq-panel-count {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted-2);
}
.avt-faq-panel-title {
	margin: 14px 0 0;
	font-size: clamp(20px, 2.1vw, 26px);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.2;
	color: var(--fg);
}
.avt-faq-md {
	margin-top: 18px;
	font-family: 'Source Serif 4', Georgia, serif;
	font-size: 15.5px;
	line-height: 1.68;
	color: var(--fg);
}
.avt-faq-md p {
	margin: 0 0 12px;
}
.avt-faq-md .avt-faq-label {
	margin: 16px 0 8px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	color: var(--fg);
}
.avt-faq-md h2 {
	font-family: var(--font-sans);
	font-size: 18px;
	font-weight: 600;
	margin: 18px 0 8px;
	color: var(--fg);
}
.avt-faq-md h3 {
	font-family: var(--font-sans);
	font-size: 15.5px;
	font-weight: 600;
	margin: 14px 0 6px;
	color: var(--fg);
}
.avt-faq-md ul,
.avt-faq-md ol {
	margin: 0 0 12px;
	padding-left: 20px;
}
.avt-faq-md li {
	margin: 0 0 5px;
}
.avt-faq-md strong {
	font-weight: 600;
	color: var(--fg);
}
@media (max-width: 900px) {
	.avt-faq-shell {
		grid-template-columns: 1fr;
		height: auto;
	}
	.avt-faq-side {
		border-right: 0;
		border-bottom: 1px solid var(--border);
		height: 260px;
	}
	.avt-faq-panels {
		min-height: 320px;
	}
}

/* =====================  PLATFORM (Landing parity)  ===================== */
/* Platform  visual pipeline */
.avt-plat-stage {
	display: grid;
	grid-template-columns: minmax(220px, 268px) 1fr;
	gap: 0;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 1px 0 var(--fill-muted);
	margin-top: 44px;
}
.avt-plat-nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	background: var(--card-2);
	border-right: 1px solid var(--border);
	padding: 20px 12px;
	min-height: 0;
}
.avt-plat-step {
	appearance: none;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 12px 12px;
	border-radius: 14px;
	transition:
		background 0.2s ease,
		box-shadow 0.2s ease;
	font: inherit;
	color: inherit;
	width: 100%;
	position: relative;
}
.avt-plat-step:hover {
	background: var(--fill-subtle);
}
.avt-plat-step.is-active {
	background: var(--card);
	box-shadow:
		0 0 0 1px var(--border),
		0 8px 22px var(--fill-muted);
}
.avt-plat-step-n {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
	color: var(--muted-2);
	min-width: 1.6em;
}
.avt-plat-step.is-active .avt-plat-step-n {
	color: var(--plat-accent, #e8543a);
}
.avt-plat-step-meta {
	min-width: 0;
}
.avt-plat-step-verb {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-2);
	display: block;
}
.avt-plat-step.is-active .avt-plat-step-verb {
	color: var(--plat-accent, #e8543a);
}
.avt-plat-step-title {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--fg);
	letter-spacing: -0.01em;
	margin-top: 2px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.avt-plat-step.is-active .avt-plat-step-title {
	color: var(--fg);
}
.avt-plat-stage-main {
	position: relative;
	min-width: 0;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	background: #0c0c10;
}
.avt-plat-stage-main:has(.is-video) {
	min-height: 740px;
}
.avt-plat-stage-main:has(.is-recommend-frame) {
	min-height: 680px;
}
.avt-plat-media {
	position: relative;
	flex: 1;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 32px 32px 20px;
}
.avt-plat-media:has(.is-video) {
	min-height: 620px;
	padding: 28px 24px 18px;
}
.avt-plat-media:has(.is-recommend-frame) {
	min-height: 520px;
	align-items: stretch;
	padding: 24px 24px 16px;
}
.avt-plat-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			90% 70% at 80% 10%,
			color-mix(in srgb, var(--plat-accent, #e8543a) 14%, transparent),
			transparent 58%
		),
		#0c0c10;
	pointer-events: none;
}
.avt-plat-frame {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	transition:
		opacity 0.28s ease,
		transform 0.28s ease;
}
.avt-plat-frame.is-swap {
	opacity: 0;
	transform: translateY(10px);
}
.avt-plat-frame.is-phones {
	gap: 20px;
}
.avt-plat-shot {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #141418;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
	max-height: 100%;
	flex: none;
}
.avt-plat-shot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #0e0e12;
}
.avt-plat-shot.is-single {
	width: min(100%, 400px);
	aspect-ratio: 3/4;
	max-height: 400px;
}
.avt-plat-shot.is-half {
	flex: 1;
	aspect-ratio: 3/4;
	max-height: 360px;
	max-width: 300px;
}
.avt-plat-shot.is-device {
	width: min(42%, 300px);
	aspect-ratio: 1;
	max-height: 320px;
	background: radial-gradient(circle at 50% 40%, #1a1a20, #0e0e12 70%);
}
.avt-plat-shot.is-device img {
	object-fit: contain;
	padding: 18px;
	background: transparent;
}
.avt-plat-shot.is-phone {
	width: min(42%, 210px);
	aspect-ratio: 9/19.5;
	max-height: 400px;
	border-radius: 28px;
	border: 2px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.avt-plat-shot.is-phone img {
	object-fit: cover;
	object-position: top center;
}
.avt-plat-shot.is-ui {
	width: min(100%, 880px);
	aspect-ratio: 16/10;
	max-height: 400px;
}
.avt-plat-shot.is-ui img {
	object-fit: cover;
	object-position: top center;
}
.avt-plat-shot.is-video {
	width: min(100%, 360px);
	aspect-ratio: 9/16;
	height: auto;
	max-height: min(640px, 72vh);
	background: #0a0a0e;
}
.avt-plat-shot.is-video .avt-plat-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: #0a0a0e;
}
.avt-plat-shot.is-placeholder {
	width: min(100%, 880px);
	aspect-ratio: 16/10;
	max-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
		repeating-linear-gradient(
			-12deg,
			rgba(255, 255, 255, 0.03) 0 12px,
			transparent 12px 24px
		),
		#141418;
}
.avt-plat-ph {
	text-align: center;
	padding: 24px;
	max-width: 320px;
}
.avt-plat-ph-kicker {
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8f8f98;
	margin-bottom: 10px;
}
.avt-plat-ph-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #f5f5f7;
}
.avt-plat-ph-desc {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: #8f8f98;
}
.avt-plat-frame.is-recommend-frame {
	align-items: stretch;
	height: 100%;
}
.avt-plat-shot.is-recommend {
	width: min(100%, 920px);
	height: min(580px, 68vh);
	max-height: 620px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	background: #0e0e12;
	border-color: rgba(255, 255, 255, 0.12);
}
.avt-plat-rec {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}
.avt-plat-rec-head {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}
.avt-plat-rec-live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #c7c7ce;
}
.avt-plat-rec-live::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #e8543a;
}
@keyframes avt-plat-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.45;
	}
}
.avt-plat-rec-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	padding: 14px 16px 28px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}
.avt-plat-rec-md {
	color: #e8e8ec;
	font-size: 13px;
	line-height: 1.55;
}
.avt-plat-rec-md h1,
.avt-plat-rec-md h2,
.avt-plat-rec-md h3 {
	margin: 0 0 8px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #f5f5f7;
	line-height: 1.25;
}
.avt-plat-rec-md h1 {
	font-size: 16px;
}
.avt-plat-rec-md h2 {
	font-size: 14.5px;
	margin-top: 14px;
}
.avt-plat-rec-md h3 {
	font-size: 13.5px;
	margin-top: 12px;
	color: #ffb169;
}
.avt-plat-rec-md p {
	margin: 0 0 10px;
	color: #c8c8d0;
}
.avt-plat-rec-md ul,
.avt-plat-rec-md ol {
	margin: 0 0 10px;
	padding-left: 1.15em;
	color: #c8c8d0;
}
.avt-plat-rec-md li {
	margin: 0 0 4px;
}
.avt-plat-rec-md strong {
	color: #f5f5f7;
	font-weight: 600;
}
.avt-plat-rec-md hr {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin: 16px 0;
	height: 0;
}
.avt-plat-rec-unit {
	opacity: 0;
	transform: translateY(3px);
	transition:
		opacity 0.12s ease,
		transform 0.12s ease;
}
.avt-plat-rec-unit.is-in {
	opacity: 1;
	transform: none;
}
.avt-plat-rec-cursor {
	display: inline-block;
	width: 7px;
	height: 1em;
	margin-left: 2px;
	background: #e8543a;
	vertical-align: -2px;
	animation: avt-plat-pulse 1s steps(1) infinite;
}
.avt-plat-ex-wrap {
	margin: 12px 0 22px;
}
.avt-plat-ex-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
	-webkit-overflow-scrolling: touch;
}
.avt-plat-ex {
	flex: 0 0 auto;
	width: 132px;
	max-width: 40%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	overflow: hidden;
	background: #16161c;
	display: flex;
	flex-direction: column;
}
.avt-plat-ex-media {
	aspect-ratio: 1/1;
	width: 100%;
	height: auto;
	max-height: 132px;
	min-height: 0;
	flex: 0 0 auto;
	background: #101014;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.avt-plat-ex-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	background: #0c0c10;
}
.avt-plat-ex-fallback {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6e6e76;
	text-align: center;
	padding: 12px;
}
.avt-plat-ex-body {
	padding: 7px 8px 9px;
	flex: 0 0 auto;
}
.avt-plat-ex-badge {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 3px 6px;
	border-radius: 999px;
	margin-bottom: 5px;
}
.avt-plat-ex.is-avoid .avt-plat-ex-badge {
	color: #ffb4a8;
	background: rgba(232, 84, 58, 0.16);
}
.avt-plat-ex.is-alt .avt-plat-ex-badge {
	color: #b8f0d2;
	background: rgba(46, 157, 104, 0.16);
}
.avt-plat-ex-name {
	font-size: 12px;
	font-weight: 600;
	color: #f5f5f7;
	letter-spacing: -0.01em;
	line-height: 1.3;
	text-wrap: pretty;
}
.avt-plat-ex-note {
	margin: 4px 0 0;
	font-size: 10px;
	line-height: 1.35;
	color: #9a9aa2;
}
.avt-plat-ex-shared {
	margin: 8px 0 0;
	font-size: 11px;
	line-height: 1.45;
	color: #9a9aa2;
	text-wrap: pretty;
}
.avt-plat-shot-tag {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 2;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(10, 10, 13, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #f5f5f7;
}
.avt-plat-caption {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding: 18px 24px 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(
		180deg,
		rgba(12, 12, 16, 0.55),
		rgba(12, 12, 16, 0.92)
	);
}
.avt-plat-caption-copy {
	min-width: 0;
	max-width: 520px;
}
.avt-plat-caption-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--plat-accent, #ff7a45);
}
.avt-plat-caption-kicker::before {
	content: '';
	width: 14px;
	height: 2px;
	border-radius: 999px;
	background: var(--plat-accent, #ff7a45);
}
.avt-plat-caption-title {
	margin: 8px 0 0;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #f5f5f7;
	line-height: 1.2;
}
.avt-plat-caption-desc {
	margin: 8px 0 0;
	font-size: 13.5px;
	line-height: 1.55;
	color: #a2a2ab;
	max-width: 46ch;
}
.avt-plat-controls {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: none;
}
.avt-plat-counter {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	color: #8f8f98;
	min-width: 3.2em;
	text-align: center;
}
.avt-plat-chev {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	width: 34px;
	height: 34px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #f5f5f7;
	transition:
		border-color 0.18s ease,
		background 0.18s ease,
		color 0.18s ease;
	padding: 0;
}
.avt-plat-chev:hover {
	border-color: color-mix(
		in srgb,
		var(--plat-accent, #e8543a) 55%,
		transparent
	);
	color: #ffb169;
	background: rgba(255, 90, 31, 0.1);
}
.avt-plat-chev:focus-visible {
	outline: 2px solid
		color-mix(in srgb, var(--plat-accent, #e8543a) 50%, transparent);
	outline-offset: 2px;
}
.avt-plat-chev svg {
	width: 14px;
	height: 14px;
	display: block;
}
.avt-plat-progress {
	display: flex;
	gap: 6px;
	margin-top: 16px;
	padding: 0 2px;
}
.avt-plat-bar {
	flex: 1;
	height: 2px;
	border-radius: 999px;
	background: var(--border);
	overflow: hidden;
}
.avt-plat-bar > i {
	display: block;
	height: 100%;
	width: 0;
	background: var(--plat-accent, #e8543a);
	border-radius: inherit;
}
.avt-plat-bar.is-active > i {
	width: 100%;
	transition: width var(--plat-dur, 4.8s) linear;
}
.avt-plat-bar.is-done > i {
	width: 100%;
	transition: none;
}
.avt-plat-bar.is-paused > i {
	transition: none !important;
}
.avt-plat-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 18px;
	flex-wrap: wrap;
}
.avt-plat-chip {
	appearance: none;
	border: 1px solid var(--border);
	background: var(--card);
	border-radius: 999px;
	padding: 7px 12px;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted-2);
	cursor: pointer;
	transition:
		border-color 0.15s ease,
		color 0.15s ease,
		background 0.15s ease;
}
.avt-plat-chip:hover {
	border-color: var(--border);
	color: var(--fg);
}
.avt-plat-chip.is-active {
	border-color: color-mix(
		in srgb,
		var(--plat-accent, #e8543a) 35%,
		transparent
	);
	color: var(--plat-accent, #e8543a);
	background: color-mix(in srgb, var(--plat-accent, #e8543a) 8%, var(--card));
}
.avt-plat-arrow {
	color: var(--muted-2);
	font-size: 11px;
	user-select: none;
}
@media (max-width: 900px) {
	.avt-plat-stage {
		grid-template-columns: 1fr;
		min-width: 0;
		width: 100%;
	}
	.avt-plat-nav {
		flex-direction: row;
		justify-content: flex-start;
		overflow-x: auto;
		border-right: 0;
		border-bottom: 1px solid var(--border);
		gap: 6px;
		padding: 10px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.avt-plat-nav::-webkit-scrollbar {
		display: none;
	}
	.avt-plat-step {
		min-width: 148px;
		padding: 10px;
	}
	.avt-plat-step-title {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.avt-plat-stage-main {
		min-height: 360px;
		min-width: 0;
	}
	.avt-plat-stage-main:has(.is-video) {
		min-height: 480px;
	}
	.avt-plat-stage-main:has(.is-recommend-frame) {
		min-height: 480px;
	}
	.avt-plat-media {
		padding: 16px 12px 10px;
		min-height: 260px;
		min-width: 0;
	}
	.avt-plat-media:has(.is-video) {
		min-height: 400px;
		padding: 12px 10px;
	}
	.avt-plat-media:has(.is-recommend-frame) {
		min-height: 380px;
		padding: 12px 10px;
	}
	.avt-plat-frame {
		min-width: 0;
		width: 100%;
		flex-wrap: wrap;
	}
	.avt-plat-shot.is-single,
	.avt-plat-shot.is-half {
		max-height: 240px;
		max-width: 100%;
	}
	.avt-plat-shot.is-phone {
		max-height: 280px;
		width: min(46%, 150px);
	}
	.avt-plat-shot.is-device {
		max-height: 200px;
		width: min(48%, 180px);
	}
	.avt-plat-shot.is-ui,
	.avt-plat-shot.is-placeholder {
		max-height: 220px;
		width: 100%;
	}
	.avt-plat-shot.is-video {
		width: min(100%, 240px);
		max-height: min(420px, 62vh);
	}
	.avt-plat-shot.is-recommend {
		height: min(400px, 58vh);
		max-height: 420px;
		width: 100%;
	}
	.avt-plat-ex {
		width: 110px;
		max-width: 42%;
	}
	.avt-plat-ex-media {
		aspect-ratio: 1/1;
		max-height: 110px;
	}
	.avt-plat-caption {
		padding: 14px 14px 16px;
		gap: 12px;
	}
	.avt-plat-caption-copy {
		max-width: 100%;
	}
	.avt-plat-flow {
		gap: 4px;
		margin-top: 14px;
	}
	.avt-plat-chip {
		padding: 6px 10px;
		font-size: 10px;
	}
}

/* FAQ prev/next + panel layout (Landing parity) */
.avt-faq-head {
	text-align: left;
	max-width: 720px;
	margin: 0 0 28px;
}
.avt-faq-head .avt-section-title {
	text-align: left;
	margin: 0;
}
.avt-faq-panel {
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
	background: var(--card);
	position: relative;
}
.avt-faq-panel-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 28px 28px 24px 32px;
}
.avt-faq-panel-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-top: 0;
	padding: 14px 28px 20px 32px;
	border-top: 1px solid var(--border);
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--card) 92%, transparent) 0%,
		var(--card) 28%
	);
}
.avt-faq-navbtn {
	appearance: none;
	border: 1px solid var(--border);
	background: var(--card);
	border-radius: 999px;
	padding: 8px 14px;
	font-family: var(--font-sans);
	font-size: 12.5px;
	font-weight: 500;
	color: var(--fg);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition:
		border-color 0.15s ease,
		color 0.15s ease,
		background 0.15s ease;
}
.avt-faq-navbtn:hover {
	border-color: rgba(232, 84, 58, 0.4);
	color: #c13a22;
	background: rgba(232, 84, 58, 0.04);
}
.avt-faq-navbtn:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}
.avt-faq-navbtn svg {
	width: 12px;
	height: 12px;
	display: block;
}
.avt-faq-item {
	appearance: none;
	border: 0;
	background: transparent;
	width: 100%;
	text-align: left;
	cursor: pointer;
	font: inherit;
}
@media (max-width: 900px) {
	.avt-faq-panel-scroll {
		padding: 22px 20px 14px;
	}
	.avt-faq-panel-nav {
		padding: 12px 20px 18px;
	}
}

/* Proof slide transitions + mark highlight (Landing parity) */
.avt-proof-quote mark {
	background: linear-gradient(
		180deg,
		transparent 62%,
		color-mix(in srgb, var(--proof-accent, #e8543a) 16%, transparent) 62%
	);
	color: inherit;
	padding: 0 0.04em;
}
.avt-proof-slide.is-out-next {
	opacity: 0;
	transform: translateX(-18px);
}
.avt-proof-slide.is-out-prev {
	opacity: 0;
	transform: translateX(18px);
}
.avt-proof-slide.is-in-next {
	animation: avt-proof-in-next 0.34s ease both;
}
.avt-proof-slide.is-in-prev {
	animation: avt-proof-in-prev 0.34s ease both;
}
@keyframes avt-proof-in-next {
	from {
		opacity: 0;
		transform: translateX(22px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes avt-proof-in-prev {
	from {
		opacity: 0;
		transform: translateX(-22px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.avt-proof-slide,
.avt-proof-kicker {
	transition:
		opacity 0.22s ease,
		transform 0.22s ease;
}
.avt-proof-panels {
	display: contents;
}
.avt-proof-stage .avt-proof-panel {
	min-height: 340px;
}
