:root {
	--bg: #edf0f5;
	--surface: #ffffff;
	--ink: #0f172a;
	--muted: #6b7280;
	--accent: #2f80ed;
	--line: #e5e7eb;
	--shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
	--radius: 18px;
	--max: 820px;
}

body.pcv-body {
	margin: 0;
	/* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif; */
	background: var(--bg);
	color: var(--ink);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* topbar copied from home.css to stay consistent */
.pcv-topbar {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px clamp(1.1rem, 3.5vw, 3.3rem);
	background: rgba(237, 240, 245, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(207, 213, 224, 0.4);
}

.pcv-brand {
	display: flex;
	align-items: center;
}

.pcv-logo-img {
	height: 42px;
}

.pcv-nav {
	display: flex;
	gap: 1.2rem;
}

.pcv-nav a {
	font-size: 0.85rem;
	color: #475569;
	text-decoration: none;
}

.pcv-nav a:hover {
	color: #0f172a;
}

.pcv-mobile-toggle {
	display: none;
	background: none;
	border: 0;
	font-size: 1.4rem;
	cursor: pointer;
}

/* download layout */
.dl-shell {
	width: min(100%, var(--max));
	margin: 46px auto 0;
	padding: 0 1.2rem 3rem;
	flex: 1 0 auto;
}

.dl-card {
	background: rgba(255, 255, 255, 0.85);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: var(--shadow);
	padding: 2.2rem 2.1rem 2.3rem;
}

.dl-card h1 {
	margin-top: 0;
	margin-bottom: 0.6rem;
	font-size: clamp(1.7rem, 2.2vw, 2rem);
}

.dl-lead {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.3rem;
}

.dl-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

/* BUTTONS */

.pcv-btn {
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	justify-content: center;
	height: 40px;
	border-radius: 9999px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 0.82rem;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.02s ease, box-shadow 0.12s ease, background 0.12s ease,
		border 0.12s ease;
}

.dl-btn {
	min-width: 190px;
}

.dl-btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 10px 30px rgba(47, 128, 237, 0.25);
}

.dl-btn-primary:hover {
	background: #1f6cd0;
}

.dl-btn-secondary {
	background: #ffffff;
	border: 1px solid rgba(78, 95, 127, 0.21);
	color: #0f172a;
}

.dl-btn-secondary:hover {
	background: rgba(15, 23, 42, 0.018);
}

.dl-btn-muted {
	background: #e2e8f0;
	color: #6b7280;
	border: 1px solid transparent;
	cursor: not-allowed;
}

.dl-btn-active {
	outline: 2px solid rgba(47, 128, 237, 0.5);
	outline-offset: 2px;
}

.dl-hint {
	font-size: 0.78rem;
	color: #94a3b8;
	margin-bottom: 1.4rem;
}

.dl-note {
	background: rgba(237, 240, 245, 0.45);
	border: 1px solid rgba(226, 232, 240, 0.4);
	border-radius: 14px;
	padding: 1rem 1.1rem 1.1rem;
}

.dl-note h2 {
	font-size: 0.95rem;
	margin-top: 0;
}

.dl-note ol {
	margin: 0.25rem 0 0;
	padding-left: 1.25rem;
	display: grid;
	gap: 0.35rem;
	font-size: 0.78rem;
	color: #475569;
}

/* footer stick */
.pcv-footer-home {
	margin-top: auto;
}

/* responsive */
@media (max-width: 720px) {
	.pcv-nav {
		display: none;
	}
	.pcv-mobile-toggle {
		display: block;
	}
	.pcv-nav.is-open {
		position: absolute;
		right: 1rem;
		top: 56px;
		background: #fff;
		border-radius: 14px;
		border: 1px solid rgba(203, 213, 225, 0.9);
		padding: 0.6rem 0.9rem;
		display: grid;
		gap: 0.45rem;
		box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
		z-index: 50;
	}
	.dl-buttons {
		flex-direction: column;
	}
	.dl-btn {
		width: 100%;
	}
}

/* subtle “trust” card */
.dl-trust {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 0.65rem;
	margin-top: 12px;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	background: rgba(34, 197, 94, 0.07); /* soft green tint */
	border: 1px solid rgba(34, 197, 94, 0.22); /* matches success vibe */
	color: #0f172a;
}
.trust-icon {
	color: #16a34a; /* emerald-600 */
	display: flex;
	align-items: center;
	justify-content: center;
}
.trust-body {
	font-size: 0.86rem;
	line-height: 1.45;
}
.trust-body strong {
	font-weight: 700;
	margin-right: 4px;
}

/* small keyboard-chip style for steps */
.kbd {
	display: inline-block;
	padding: 2px 6px;
	border-radius: 6px;
	border: 1px solid rgba(15, 23, 42, 0.15);
	background: #fff;
	font-size: 0.78rem;
	color: #0f172a;
}

/* tweak on dark text backgrounds */
@media (max-width: 720px) {
	.trust-body {
		font-size: 0.84rem;
	}
}
