*, *::before, *::after { box-sizing: border-box; }

:root {
	--tvs-ink: #161616;
	--tvs-ink-soft: #3b3732;
	--tvs-paper: #fbfaf7;
	--tvs-surface: #ffffff;
	--tvs-muted: #716c65;
	--tvs-border: #e7dfd2;
	--tvs-gold: #c9a96e;
	--tvs-sage: #73826b;
	--tvs-rose: #b98982;
	--tvs-shadow: 0 18px 48px rgba(18, 16, 13, 0.12);
	--tvs-radius: 8px;
	--tvs-heading: 'Playfair Display', Georgia, serif;
	--tvs-body: 'Inter', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--tvs-body);
	color: var(--tvs-ink-soft);
	background: var(--tvs-paper);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0;
}

h1, h2, h3 {
	margin: 0;
	font-family: var(--tvs-heading);
	line-height: 1.06;
	color: var(--tvs-ink);
}

h1 { font-size: clamp(3.6rem, 11vw, 8.5rem); }
h2 { font-size: clamp(2.1rem, 5vw, 4.1rem); }
h3 { font-size: 1.35rem; }

.tvs-container {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.screen-reader-text,
.tvs-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.tvs-skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 14px;
	clip: auto;
	background: var(--tvs-surface);
	color: var(--tvs-ink);
	border: 2px solid var(--tvs-gold);
}

.tvs-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(17, 17, 17, 0.74);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255,255,255,0.12);
	transition: background 0.25s ease, box-shadow 0.25s ease;
}

.tvs-header.is-scrolled {
	background: rgba(17, 17, 17, 0.94);
	box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.tvs-header__inner {
	width: min(1180px, calc(100% - 40px));
	min-height: 76px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(190px, 1fr) auto minmax(150px, 1fr);
	align-items: center;
	gap: 24px;
}

.tvs-brand {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	justify-self: start;
	color: #fff;
}

.tvs-brand__name {
	font-family: var(--tvs-heading);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1;
}

.tvs-brand__meta {
	margin-top: 4px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--tvs-gold);
}

.custom-logo {
	max-width: 210px;
	height: auto;
}

.tvs-nav {
	justify-self: center;
}

.tvs-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.tvs-nav__list a {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.78);
	transition: color 0.2s ease;
}

.tvs-nav__list a:hover,
.tvs-nav__list a:focus {
	color: #fff;
}

.tvs-header__buy {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border: 1.5px solid var(--tvs-gold);
	border-radius: 999px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease;
}

.tvs-header__buy:hover,
.tvs-header__buy:focus {
	background: var(--tvs-gold);
	color: var(--tvs-ink);
}

.tvs-nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 9px;
	background: transparent;
	border: 0;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.tvs-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
}

.tvs-hero {
	position: relative;
	min-height: 86svh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border-bottom: 3px solid var(--tvs-gold);
}

.tvs-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(9,9,9,0.88) 0%, rgba(9,9,9,0.68) 46%, rgba(9,9,9,0.3) 100%),
		rgba(0,0,0,0.22);
}

.tvs-hero__content {
	position: relative;
	z-index: 1;
	padding: 132px 0 72px;
	color: #fff;
}

.tvs-eyebrow,
.tvs-section-kicker {
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.19em;
	text-transform: uppercase;
	color: var(--tvs-gold);
}

.tvs-hero h1 {
	max-width: 760px;
	margin-top: 18px;
	font-size: clamp(3rem, 6vw, 5.25rem);
	line-height: 1.04;
	color: #fff;
}

.tvs-hero__lead {
	max-width: 660px;
	margin-top: 24px;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	color: rgba(255,255,255,0.84);
}

.tvs-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.tvs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border-radius: var(--tvs-radius);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1.5px solid transparent;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tvs-btn:hover,
.tvs-btn:focus {
	transform: translateY(-2px);
}

.tvs-btn--primary {
	background: var(--tvs-gold);
	color: var(--tvs-ink);
}

.tvs-btn--primary:hover,
.tvs-btn--primary:focus {
	background: #d9bb81;
	color: var(--tvs-ink);
}

.tvs-btn--ghost {
	color: #fff;
	border-color: rgba(255,255,255,0.68);
}

.tvs-btn--ghost:hover,
.tvs-btn--ghost:focus {
	background: rgba(255,255,255,0.12);
	border-color: #fff;
}

.tvs-btn--wide {
	width: 100%;
}

.tvs-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.tvs-hero__facts span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.88);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tvs-preview,
.tvs-section,
.tvs-included,
.tvs-hosting,
.tvs-faq,
.tvs-final,
.tvs-content {
	padding: 96px 0;
}

.tvs-preview {
	background: var(--tvs-paper);
}

.tvs-preview__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 56px;
	align-items: center;
}

.tvs-preview h2,
.tvs-included h2,
.tvs-hosting h2,
.tvs-pricing h2 {
	margin-top: 12px;
}

.tvs-preview p:not(.tvs-section-kicker),
.tvs-included p:not(.tvs-section-kicker),
.tvs-hosting p:not(.tvs-section-kicker),
.tvs-pricing p:not(.tvs-section-kicker) {
	margin-top: 20px;
	color: var(--tvs-muted);
	font-size: 1.05rem;
}

.tvs-preview__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-top: 30px;
}

.tvs-preview__actions .tvs-text-link {
	margin-top: 0;
}

.tvs-demo-preview {
	position: relative;
	min-height: 430px;
}

.tvs-demo-browser {
	width: 88%;
	overflow: hidden;
	border: 1px solid var(--tvs-border);
	border-radius: var(--tvs-radius);
	background: var(--tvs-surface);
	box-shadow: var(--tvs-shadow);
}

.tvs-demo-browser__bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 42px;
	padding: 0 14px;
	background: #171717;
	color: rgba(255,255,255,0.72);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tvs-demo-browser__bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--tvs-gold);
	opacity: 0.82;
}

.tvs-demo-browser__bar strong {
	margin-left: 8px;
	font-size: 0.68rem;
	font-weight: 800;
}

.tvs-demo-browser img,
.tvs-demo-phone img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tvs-demo-browser img {
	aspect-ratio: 16 / 10;
	object-position: top center;
}

.tvs-demo-phone {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 34%;
	min-width: 170px;
	aspect-ratio: 9 / 17;
	overflow: hidden;
	padding: 10px;
	border-radius: 28px;
	background: #171717;
	box-shadow: 0 20px 45px rgba(18,16,13,0.24);
}

.tvs-demo-phone::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 50%;
	width: 42px;
	height: 5px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: rgba(255,255,255,0.24);
	z-index: 1;
}

.tvs-demo-phone img {
	border-radius: 20px;
	object-fit: contain;
	object-position: top center;
	background: #111;
}

.tvs-text-link {
	display: inline-flex;
	margin-top: 28px;
	color: var(--tvs-ink);
	font-weight: 800;
	border-bottom: 2px solid var(--tvs-gold);
}

.tvs-section {
	background: #fff;
}

.tvs-section-head {
	max-width: 720px;
	margin-bottom: 40px;
}

.tvs-section-head h2 {
	margin-top: 12px;
}

.tvs-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.tvs-card {
	min-height: 210px;
	padding: 26px;
	border: 1px solid var(--tvs-border);
	border-radius: var(--tvs-radius);
	background: var(--tvs-surface);
}

.tvs-card::before {
	content: '';
	display: block;
	width: 38px;
	height: 3px;
	margin-bottom: 28px;
	background: var(--tvs-gold);
}

.tvs-card p {
	margin-top: 14px;
	color: var(--tvs-muted);
}

.tvs-included {
	background: var(--tvs-ink);
	color: rgba(255,255,255,0.78);
}

.tvs-included h2 {
	color: #fff;
}

.tvs-included__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 56px;
	align-items: start;
}

.tvs-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tvs-check-list li {
	padding: 18px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--tvs-radius);
	background: rgba(255,255,255,0.05);
	color: #fff;
	font-weight: 700;
}

.tvs-hosting {
	background: var(--tvs-paper);
}

.tvs-hosting__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 56px;
	align-items: center;
}

.tvs-hosting .tvs-btn {
	margin-top: 28px;
}

.tvs-hosting-card {
	padding: 30px;
	border: 1px solid var(--tvs-border);
	border-radius: var(--tvs-radius);
	background: var(--tvs-surface);
	box-shadow: var(--tvs-shadow);
}

.tvs-hosting-card__label {
	margin-bottom: 18px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tvs-sage);
}

.tvs-hosting-card ol {
	display: grid;
	gap: 14px;
	margin: 0;
	padding-left: 22px;
	color: var(--tvs-muted);
	font-weight: 700;
}

.tvs-hosting-card li::marker {
	color: var(--tvs-gold);
	font-weight: 800;
}

.tvs-pricing {
	background: #f5f1ea;
}

.tvs-pricing__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 56px;
	align-items: center;
}

.tvs-price-card {
	padding: 30px;
	border-radius: var(--tvs-radius);
	background: var(--tvs-surface);
	border: 1px solid var(--tvs-border);
	box-shadow: var(--tvs-shadow);
}

.tvs-price-card__label {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tvs-sage);
}

.tvs-price {
	margin-top: 12px;
	font-size: 4rem;
	font-weight: 800;
	color: var(--tvs-ink);
	line-height: 1;
}

.tvs-price-card ul {
	list-style: none;
	margin: 26px 0;
	padding: 0;
	display: grid;
	gap: 12px;
	color: var(--tvs-muted);
}

.tvs-price-card li {
	padding-left: 18px;
	border-left: 3px solid var(--tvs-gold);
}

.tvs-price-card__note {
	margin-top: 16px;
	font-size: 0.84rem;
	color: var(--tvs-muted);
}

.tvs-faq {
	background: var(--tvs-paper);
}

.tvs-faq__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.tvs-faq details {
	padding: 24px;
	border: 1px solid var(--tvs-border);
	border-radius: var(--tvs-radius);
	background: var(--tvs-surface);
}

.tvs-faq summary {
	cursor: pointer;
	font-weight: 800;
	color: var(--tvs-ink);
}

.tvs-faq details p {
	margin-top: 14px;
	color: var(--tvs-muted);
}

.tvs-faq a {
	color: var(--tvs-ink);
	border-bottom: 1px solid var(--tvs-gold);
}

.tvs-final {
	text-align: center;
	background: var(--tvs-surface);
}

.tvs-final h2 {
	max-width: 820px;
	margin: 12px auto 28px;
}

.tvs-footer {
	padding: 34px 0;
	background: var(--tvs-ink);
	color: rgba(255,255,255,0.72);
	border-top: 1px solid rgba(255,255,255,0.1);
}

.tvs-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 28px;
	align-items: center;
}

.tvs-footer__brand {
	font-family: var(--tvs-heading);
	font-size: 1.35rem;
	color: #fff;
}

.tvs-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
}

.tvs-post-list {
	display: grid;
	gap: 24px;
}

.tvs-post-card,
.tvs-page {
	padding: 34px;
	background: var(--tvs-surface);
	border: 1px solid var(--tvs-border);
	border-radius: var(--tvs-radius);
}

.tvs-entry-content,
.tvs-entry-summary {
	margin-top: 18px;
}

@media (max-width: 920px) {
	.tvs-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 12px;
	}

	.tvs-nav-toggle {
		display: flex;
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}

	.tvs-brand {
		grid-column: 2;
		grid-row: 1;
		min-width: 0;
	}

	.tvs-brand__name,
	.tvs-brand__meta {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100%;
	}

	.tvs-header__buy {
		grid-column: 3;
		grid-row: 1;
		padding: 0 14px;
		min-height: 38px;
	}

	.tvs-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		max-height: 0;
		overflow: hidden;
		background: rgba(17,17,17,0.98);
		border-bottom: 1px solid rgba(255,255,255,0.12);
		transition: max-height 0.24s ease, padding 0.24s ease;
	}

	.tvs-nav.is-open {
		max-height: 360px;
		padding: 22px 0;
	}

	.tvs-nav__list {
		flex-direction: column;
		gap: 18px;
	}

	.tvs-preview__grid,
	.tvs-included__grid,
	.tvs-hosting__grid,
	.tvs-pricing__grid {
		grid-template-columns: 1fr;
	}

	.tvs-demo-browser {
		width: min(88%, 680px);
	}

	.tvs-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.tvs-container,
	.tvs-header__inner {
		width: min(100% - 28px, 1120px);
	}

	.tvs-header__inner {
		min-height: 70px;
	}

	.tvs-brand__name {
		font-size: 1.12rem;
	}

	.tvs-brand__meta {
		font-size: 0.58rem;
	}

	.tvs-header__buy {
		min-height: 36px;
		padding: 0 10px;
		font-size: 0.68rem;
	}

	.tvs-hero {
		min-height: 88svh;
		background-position: center;
	}

	.tvs-hero__shade {
		background:
			linear-gradient(180deg, rgba(9,9,9,0.72) 0%, rgba(9,9,9,0.8) 52%, rgba(9,9,9,0.92) 100%),
			rgba(0,0,0,0.24);
	}

	.tvs-hero__content {
		padding: 112px 0 56px;
	}

	.tvs-hero h1 {
		font-size: clamp(2.4rem, 11vw, 3.8rem);
		line-height: 1.08;
	}

	.tvs-hero__actions,
	.tvs-hero__facts {
		width: 100%;
	}

	.tvs-btn {
		width: 100%;
	}

	.tvs-hero__facts span {
		flex: 1 1 calc(50% - 10px);
		justify-content: center;
	}

	.tvs-demo-preview {
		min-height: 390px;
	}

	.tvs-demo-browser {
		width: 100%;
	}

	.tvs-demo-phone {
		width: 42%;
		min-width: 132px;
		right: 14px;
		bottom: 18px;
		padding: 7px;
		border-radius: 22px;
	}

	.tvs-demo-phone img {
		border-radius: 16px;
	}

	.tvs-preview,
	.tvs-section,
	.tvs-included,
	.tvs-hosting,
	.tvs-faq,
	.tvs-final,
	.tvs-content {
		padding: 68px 0;
	}

	.tvs-feature-grid,
	.tvs-check-list,
	.tvs-faq__grid {
		grid-template-columns: 1fr;
	}

	.tvs-card {
		min-height: 0;
	}

	.tvs-price-card {
		padding: 24px;
	}

	.tvs-price {
		font-size: 3.3rem;
	}

	.tvs-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}
