.tvd-docs {
	--tvd-ink: #171717;
	--tvd-muted: #6f6a62;
	--tvd-paper: #fbfaf7;
	--tvd-surface: #ffffff;
	--tvd-border: #e7dfd2;
	--tvd-gold: #c9a96e;
	--tvd-radius: 8px;
	--tvd-shadow: 0 16px 44px rgba(22, 18, 14, 0.1);
	color: var(--tvd-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
	max-width: 1180px;
	margin: 0 auto;
	padding: 24px;
}

.tvd-docs * {
	box-sizing: border-box;
}

.tvd-docs a {
	color: inherit;
}

.tvd-hero {
	padding: clamp(56px, 8vw, 104px);
	border-radius: var(--tvd-radius);
	background: linear-gradient(135deg, #171717 0%, #2c261f 100%);
	color: #fff;
	overflow: hidden;
}

.tvd-kicker {
	margin: 0 0 12px;
	color: var(--tvd-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.tvd-hero h1,
.tvd-section h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.08;
}

.tvd-hero h1 {
	max-width: 980px;
	font-size: clamp(2.4rem, 6vw, 5rem);
	color: #fff;
}

.tvd-hero p:not(.tvd-kicker) {
	max-width: 760px;
	margin: 24px 0 0;
	color: rgba(255,255,255,0.82);
	font-size: 1.08rem;
}

.tvd-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.tvd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border-radius: var(--tvd-radius);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
	border: 1.5px solid transparent;
}

.tvd-btn--primary {
	background: var(--tvd-gold);
	color: #171717;
}

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

.tvd-nav {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0;
	padding: 14px;
	border: 1px solid var(--tvd-border);
	border-radius: var(--tvd-radius);
	background: rgba(255,255,255,0.96);
	box-shadow: 0 8px 24px rgba(22,18,14,0.06);
}

.tvd-nav a {
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--tvd-paper);
	color: var(--tvd-ink);
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tvd-section {
	margin-top: 28px;
	padding: clamp(32px, 5vw, 56px);
	border: 1px solid var(--tvd-border);
	border-radius: var(--tvd-radius);
	background: var(--tvd-surface);
	box-shadow: var(--tvd-shadow);
}

.tvd-section-head {
	max-width: 780px;
	margin-bottom: 28px;
}

.tvd-section h2 {
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.tvd-section h3 {
	margin: 0 0 12px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	line-height: 1.16;
}

.tvd-section p {
	margin: 0;
	color: var(--tvd-muted);
}

.tvd-grid {
	display: grid;
	gap: 18px;
}

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

.tvd-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tvd-card {
	padding: 24px;
	border: 1px solid var(--tvd-border);
	border-radius: var(--tvd-radius);
	background: var(--tvd-paper);
}

.tvd-card ul,
.tvd-steps,
.tvd-checklist {
	margin: 0;
	padding-left: 20px;
	color: var(--tvd-muted);
}

.tvd-card li + li,
.tvd-steps li + li,
.tvd-checklist li + li {
	margin-top: 10px;
}

.tvd-steps {
	display: grid;
	gap: 16px;
	padding-left: 28px;
	font-size: 1.02rem;
}

.tvd-steps li::marker,
.tvd-checklist li::marker {
	color: var(--tvd-gold);
	font-weight: 800;
}

.tvd-callout,
.tvd-support {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 24px;
	padding: 24px;
	border-radius: var(--tvd-radius);
	background: #171717;
	color: #fff;
}

.tvd-callout h3,
.tvd-support h3 {
	margin: 0 0 8px;
	color: #fff;
}

.tvd-callout p,
.tvd-support p {
	color: rgba(255,255,255,0.78);
}

.tvd-callout--soft {
	display: block;
	background: #f5f1ea;
	color: var(--tvd-ink);
}

.tvd-callout--soft h3 {
	color: var(--tvd-ink);
}

.tvd-callout--soft p {
	color: var(--tvd-muted);
}

.tvd-note {
	margin-top: 22px !important;
	padding: 16px 18px;
	border-left: 4px solid var(--tvd-gold);
	background: var(--tvd-paper);
}

.tvd-faq {
	display: grid;
	gap: 12px;
}

.tvd-faq details {
	padding: 20px;
	border: 1px solid var(--tvd-border);
	border-radius: var(--tvd-radius);
	background: var(--tvd-paper);
}

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

.tvd-faq p {
	margin-top: 12px;
}

.tvd-support {
	margin-top: 24px;
}

@media (max-width: 820px) {
	.tvd-grid--2,
	.tvd-grid--3 {
		grid-template-columns: 1fr;
	}

	.tvd-callout,
	.tvd-support {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.tvd-hero,
	.tvd-section {
		padding: 28px 20px;
	}

	.tvd-hero h1 {
		font-size: clamp(2rem, 12vw, 3.2rem);
	}

	.tvd-nav {
		position: static;
	}

	.tvd-btn {
		width: 100%;
	}
}
