:root {
	--tvm-navy: #061334;
	--tvm-blue: #0878df;
	--tvm-cyan: #2bd4ff;
	--tvm-purple: #6b31e7;
	--tvm-magenta: #d83fb7;
	--tvm-green: #23b66f;
	--tvm-orange: #f58b13;
	--tvm-ink: #071127;
	--tvm-muted: #5e6b82;
	--tvm-line: rgba(7, 17, 39, .12);
	--tvm-panel: rgba(255, 255, 255, .88);
	--tvm-radius: 8px;
	--tvm-shadow: 0 24px 80px rgba(6, 19, 52, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.thevm-home {
	margin: 0;
	color: var(--tvm-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #f5f8ff;
	letter-spacing: 0;
	overflow-x: hidden;
}
body.thevm-home a { color: inherit; text-decoration: none; }
body.thevm-home svg { width: 1.25em; height: 1.25em; display: block; fill: currentColor; }

.tvm-page-content {
	max-width: 1040px;
	margin: 0 auto;
	padding: 128px 24px 80px;
}

.tvm-simple-page {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 44px;
	border: 1px solid rgba(7, 17, 39, .08);
	border-radius: 8px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 18px 60px rgba(6, 19, 52, .08);
}

.tvm-simple-page h1 {
	margin: 0 0 20px;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1;
	color: var(--tvm-navy);
}

.tvm-simple-page-body {
	font-size: 1.06rem;
	line-height: 1.75;
	color: var(--tvm-ink);
}

.tvm-simple-page-body > *:first-child { margin-top: 0; }
.tvm-simple-page-body > *:last-child { margin-bottom: 0; }
.tvm-simple-page-body a { color: var(--tvm-blue); font-weight: 700; }

.tvm-page {
	min-height: 100vh;
	overflow: clip;
	width: 100vw;
	max-width: 100%;
	background:
		radial-gradient(circle at 18% 12%, rgba(8, 120, 223, .14), transparent 28rem),
		radial-gradient(circle at 82% 12%, rgba(216, 63, 183, .12), transparent 27rem),
		linear-gradient(180deg, #fff 0%, #eef5ff 52%, #061334 100%);
}

.tvm-section {
	position: relative;
	padding: clamp(64px, 9vw, 128px) clamp(20px, 5vw, 72px);
	overflow: hidden;
}

.tvm-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px clamp(20px, 5vw, 72px);
	background: rgba(255, 255, 255, .76);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(7, 17, 39, .08);
}

.tvm-brand,
.tvm-nav-actions,
.tvm-hero-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.tvm-brand small {
	display: block;
	color: var(--tvm-muted);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.tvm-mark {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	color: #fff;
	font-weight: 950;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--tvm-navy), var(--tvm-blue) 52%, var(--tvm-magenta));
	box-shadow: 0 14px 32px rgba(8, 120, 223, .24);
}

.tvm-nav-actions a:not(.tvm-button) {
	color: var(--tvm-muted);
	font-weight: 800;
}

.tvm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(135deg, var(--tvm-blue), var(--tvm-purple));
	box-shadow: 0 18px 40px rgba(8, 120, 223, .25);
	font-weight: 900;
	cursor: pointer;
	white-space: nowrap;
}

.tvm-button-small { min-height: 38px; padding: 0 16px; }
.tvm-button-ghost {
	color: var(--tvm-navy);
	background: rgba(255, 255, 255, .84);
	border: 1px solid rgba(8, 120, 223, .18);
	box-shadow: none;
}

.tvm-hero {
	min-height: 100vh;
	padding-top: 110px;
	display: grid;
	align-items: center;
}

.tvm-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
	align-items: center;
	gap: clamp(32px, 6vw, 88px);
	max-width: 1280px;
	margin: 0 auto;
}

.tvm-hero-copy,
.tvm-section-heading,
.tvm-split,
.tvm-card-grid,
.tvm-feature-band,
.tvm-join,
.tvm-lead-form {
	min-width: 0;
	max-width: 100%;
}

.tvm-eyebrow {
	margin: 0 0 14px;
	color: var(--tvm-blue);
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.tvm-hero h1,
.tvm-section-heading h2,
.tvm-join h2 {
	margin: 0;
	font-size: 5.25rem;
	line-height: .92;
	letter-spacing: 0;
	color: var(--tvm-navy);
	overflow-wrap: break-word;
}

.tvm-section-heading h2,
.tvm-join h2 {
	font-size: 4rem;
	line-height: 1;
}

.tvm-lede,
.tvm-section-heading p,
.tvm-join-copy p {
	max-width: 760px;
	color: var(--tvm-muted);
	font-size: 1.25rem;
	line-height: 1.55;
}

.tvm-orbit {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1;
	min-height: 440px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.55)),
		radial-gradient(circle, rgba(43, 212, 255, .22), transparent 60%);
	border: 1px solid rgba(8, 120, 223, .16);
	box-shadow: var(--tvm-shadow);
}

.tvm-orbit::before,
.tvm-orbit::after {
	content: "";
	position: absolute;
	inset: 12%;
	border: 1px dashed rgba(8, 120, 223, .28);
	border-radius: 50%;
}

.tvm-orbit::after {
	inset: 27%;
	border-color: rgba(107, 49, 231, .3);
}

.tvm-orbit-core,
.tvm-merge-core,
.tvm-assembly-core {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 190px;
	height: 190px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--tvm-navy), var(--tvm-blue), var(--tvm-purple));
	box-shadow: 0 28px 70px rgba(6, 19, 52, .32);
}

.tvm-orbit-core span,
.tvm-merge-core span,
.tvm-assembly-core span {
	font-size: 52px;
	font-weight: 950;
}

.tvm-orbit-core small,
.tvm-merge-core small,
.tvm-assembly-core strong {
	display: block;
	max-width: 130px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.tvm-orbit-item {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 13px 15px;
	border-radius: 8px;
	color: var(--tvm-navy);
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(8, 120, 223, .12);
	box-shadow: 0 14px 34px rgba(6, 19, 52, .12);
	font-weight: 900;
}
.item-1 { top: 8%; left: 13%; }
.item-2 { top: 20%; right: 3%; }
.item-3 { bottom: 14%; right: 12%; }
.item-4 { bottom: 19%; left: 0; }

.tvm-section-heading {
	max-width: 1040px;
	margin: 0 auto 42px;
	text-align: center;
}

.tvm-split {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
	gap: 28px;
	max-width: 1180px;
	margin: 0 auto;
	align-items: stretch;
}

.tvm-track,
.tvm-card,
.tvm-lead-form,
.tvm-feature-band,
.tvm-join-copy {
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: var(--tvm-radius);
	background: var(--tvm-panel);
	box-shadow: var(--tvm-shadow);
}

.tvm-track {
	padding: clamp(24px, 3vw, 38px);
	min-height: 430px;
}

.tvm-track-left { background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(233,244,255,.9)); }
.tvm-track-right { background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(240,235,255,.9)); }

.tvm-track-label {
	display: inline-flex;
	padding: 8px 12px;
	border-radius: 8px;
	color: #fff;
	background: var(--tvm-navy);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.tvm-track h3,
.tvm-card h3,
.tvm-feature-band h3 {
	margin: 18px 0 16px;
	color: var(--tvm-navy);
	font-size: 2rem;
	line-height: 1.05;
}

.tvm-track ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.tvm-track li {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 14px;
	align-items: start;
	padding: 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .7);
	border: 1px solid var(--tvm-line);
}

.tvm-track li strong {
	color: var(--tvm-blue);
	font-weight: 950;
}

.tvm-track li span,
.tvm-card p,
.tvm-feature-band p {
	color: var(--tvm-muted);
	line-height: 1.5;
}

.tvm-merge-core {
	position: relative;
	left: auto;
	top: auto;
	transform: none;
	align-self: center;
	justify-self: center;
	width: 210px;
	height: 210px;
}

.tvm-assembly {
	position: relative;
	max-width: 1040px;
	min-height: 620px;
	margin: 0 auto;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.55)),
		radial-gradient(circle at center, rgba(8,120,223,.18), transparent 52%);
	border: 1px solid rgba(8, 120, 223, .12);
	box-shadow: var(--tvm-shadow);
}

.tvm-assembly-node {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 18px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--tvm-line);
	box-shadow: 0 18px 44px rgba(6, 19, 52, .14);
	font-weight: 950;
}
.node-a { left: 8%; top: 12%; color: var(--tvm-blue); }
.node-b { right: 8%; top: 12%; color: var(--tvm-purple); }
.node-c { left: 15%; bottom: 15%; color: var(--tvm-magenta); }
.node-d { right: 18%; bottom: 12%; color: var(--tvm-green); }
.node-e { left: 50%; top: 4%; transform: translateX(-50%); color: var(--tvm-orange); }

.tvm-card-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	max-width: 1280px;
	margin: 0 auto;
}

.tvm-card {
	padding: 24px;
	min-height: 260px;
	background: #fff;
}
.tvm-card svg {
	width: 42px;
	height: 42px;
	padding: 8px;
	color: #fff;
	border-radius: 8px;
}
.accent-blue svg { background: var(--tvm-blue); }
.accent-purple svg { background: var(--tvm-purple); }
.accent-green svg { background: var(--tvm-green); }
.accent-orange svg { background: var(--tvm-orange); }
.accent-pink svg { background: var(--tvm-magenta); }

.tvm-features { padding-top: 34px; }
.tvm-feature-band {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 18px;
	color: #fff;
	background: linear-gradient(135deg, #061334, #092761 55%, #061334);
}
.tvm-feature-band div {
	padding: 22px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 8px;
}
.tvm-feature-band span {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: rgba(43, 212, 255, .16);
}
.tvm-feature-band h3 { color: #fff; font-size: 20px; }
.tvm-feature-band p { color: rgba(255,255,255,.72); }

.tvm-join {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
	gap: 28px;
	max-width: 1240px;
	margin: 0 auto;
	color: #fff;
}
.tvm-join h2 { color: #fff; }
.tvm-join-copy {
	padding: clamp(26px, 4vw, 44px);
	background: rgba(6, 19, 52, .72);
	border-color: rgba(255,255,255,.14);
}
.tvm-join-copy p { color: rgba(255,255,255,.72); }

.tvm-lead-form {
	padding: clamp(22px, 3vw, 34px);
	background: rgba(255,255,255,.96);
	color: var(--tvm-ink);
}

.tvm-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.tvm-lead-form label {
	display: grid;
	gap: 7px;
	margin: 0 0 14px;
	color: var(--tvm-navy);
	font-weight: 850;
}

.tvm-lead-form input,
.tvm-lead-form select,
.tvm-lead-form textarea {
	width: 100%;
	min-height: 46px;
	border: 1px solid rgba(7,17,39,.15);
	border-radius: 8px;
	padding: 12px 13px;
	color: var(--tvm-ink);
	background: #fff;
	font: inherit;
}

.tvm-lead-form textarea { resize: vertical; }
.tvm-form-panel {
	margin: 10px 0 14px;
	padding: 18px;
	border-radius: 8px;
	background: #eef5ff;
	border: 1px solid rgba(8, 120, 223, .12);
}
.tvm-form-panel.is-hidden { display: none; }
.tvm-hp-field {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.tvm-alert {
	padding: 14px 16px;
	border-radius: 8px;
	font-weight: 850;
}
.tvm-alert-success { color: #06391f; background: #dff9ea; }
.tvm-alert-error { color: #721919; background: #ffe1e1; }

@media (max-width: 980px) {
	.tvm-nav { position: sticky; flex-wrap: wrap; }
	.tvm-nav-actions a:not(.tvm-button) { display: none; }
	.tvm-hero h1 { font-size: 3.8rem; }
	.tvm-section-heading h2,
	.tvm-join h2 { font-size: 3rem; }
	.tvm-hero-grid,
	.tvm-split,
	.tvm-join {
		grid-template-columns: 1fr;
	}
	.tvm-orbit { min-height: 360px; }
	.tvm-card-grid,
	.tvm-feature-band {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.tvm-merge-core {
		order: 2;
		margin: -8px auto;
	}
	.tvm-page-content { padding-top: 108px; }
}

@media (max-width: 640px) {
	.tvm-section { padding: 56px 16px; }
	.tvm-nav { padding: 10px 16px; gap: 10px; justify-content: flex-start; }
	.tvm-mark { width: 42px; height: 42px; }
	.tvm-brand { gap: 10px; min-width: 0; }
	.tvm-brand strong { font-size: 14px; }
	.tvm-brand small { display: none; }
	.tvm-nav-actions { display: none; }
	.tvm-nav-actions .tvm-button { width: auto; min-height: 38px; padding: 0 12px; font-size: 13px; }
	.tvm-hero { min-height: auto; padding-top: 42px; }
	.tvm-hero-grid,
	.tvm-hero-copy,
	.tvm-section-heading,
	.tvm-split,
	.tvm-card-grid,
	.tvm-feature-band,
	.tvm-join {
		width: 100%;
		max-width: calc(100vw - 32px);
		margin-left: auto;
		margin-right: auto;
	}
	.tvm-hero h1 { width: 100%; max-width: 10ch; font-size: 2rem; line-height: 1.05; }
	.tvm-section-heading h2,
	.tvm-join h2 { font-size: 2.05rem; }
	.tvm-section-heading h2 { max-width: 12ch; margin-left: auto; margin-right: auto; }
	.tvm-lede,
	.tvm-section-heading p,
	.tvm-join-copy p { font-size: 1rem; }
	.tvm-hero-actions,
	.tvm-form-grid,
	.tvm-card-grid,
	.tvm-feature-band {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: stretch;
	}
	.tvm-hero-actions .tvm-button,
	.tvm-lead-form .tvm-button { width: 100%; }
	.tvm-orbit { min-height: 300px; }
	.tvm-orbit-item { font-size: 12px; padding: 10px; }
	.tvm-orbit-item span { display: none; }
	.tvm-orbit-core { width: 150px; height: 150px; }
	.tvm-track li { grid-template-columns: 1fr; }
	.tvm-assembly { min-height: 760px; }
	.tvm-assembly-node { position: static; margin: 14px; }
	.tvm-assembly-core { position: static; transform: none; margin: 24px auto; }
	.tvm-page-content { padding: 96px 16px 64px; }
	.tvm-simple-page { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}
}
