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

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

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;
}

/* NAV */
.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;
	display: block;
}

.pcv-nav {
	display: flex;
	gap: 1.2rem;
}
.pcv-nav a {
	font-size: 0.85rem;
	color: #475569;
	text-decoration: none;
	padding: 4px 0;
}
.pcv-nav a:hover {
	color: #0f172a;
}

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

/* HERO SHELL */
.hero-shell {
	width: min(100%, calc(var(--max) + 2.4rem));
	margin: 40px auto 0;
	padding: 0 1.2rem;
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 24px;
	box-shadow: 0 26px 55px rgba(15, 23, 42, 0.04);
}

/* HERO */
.hero {
	width: 100%;
	padding: 2.2rem 2.3rem 2.4rem;
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 2.4rem;
	align-items: center;
}

.hero--simple h1 {
	font-size: clamp(2.1rem, 3.1vw, 2.85rem);
	margin-bottom: 0.75rem;
	letter-spacing: -0.04em;
}

.hero--simple p {
	color: var(--muted);
	max-width: 520px;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1.15rem;
}

/* buttons */
.pcv-btn {
	appearance: none;
	border: 0;
	border-radius: 999px;
	height: 48px;
	padding: 0 1.4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}

.pcv-btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 14px 30px rgba(47, 128, 237, 0.25);
}
.pcv-btn-primary:hover {
	filter: brightness(1.03);
}

.pcv-btn-ghost {
	background: rgba(247, 248, 250, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.1);
	color: #0f172a;
	transition: background 0.25s ease, border-color 0.25s ease;
}
.pcv-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(148, 163, 184, 0.3);
}

.pcv-btn-full {
	width: 100%;
	justify-content: center;
}

.hero-note {
	font-size: 0.75rem;
	color: #94a3b8;
	margin-top: 0.7rem;
}

.hero-points {
	margin-top: 1.05rem;
	list-style: none;
	padding: 0;
	display: grid;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: #475569;
}
.hero-points li::before {
	content: "•";
	color: #2f80ed;
	margin-right: 6px;
}

.hero-right {
	display: flex;
	justify-content: flex-end;
}
.app-preview {
	background: radial-gradient(circle, #fff 0%, #e9efff 120%);
	border-radius: 18px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.6);
	overflow: hidden;
	max-height: 430px;
	max-width: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.app-preview img {
	width: 100%;
	display: block;
	border-radius: 15px;
}

/* SEPARATORS */
.band {
	width: 100%;
	background: rgba(237, 240, 245, 0.35);
	border-top: 1px solid rgba(226, 232, 240, 0.4);
	border-bottom: 1px solid rgba(226, 232, 240, 0.4);
	margin-top: 3.1rem;
	margin-bottom: 3.1rem;
}
.band--wide {
	margin-top: 3.25rem;
	margin-bottom: 3.25rem;
}
.section-gap {
	margin-top: 0;
	margin-bottom: 0;
}

/* STRIP / WHY */
.strip {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 0 1.2rem 3.2rem;
}
.strip h2 {
	font-size: 1.15rem;
	margin-bottom: 1.25rem;
}

.strip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1rem;
}
.strip-grid > div {
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 14px;
	padding: 1rem 1.05rem 1.2rem;
}

/* feature cards */
.strip-grid .feature-card {
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 14px;
	padding: 1.05rem 1.05rem 1.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.feature-icon {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: rgba(47, 128, 237, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: #1b4f98;
}
.strip-grid h3 {
	margin-top: 0;
	margin-bottom: 0.55rem;
	font-size: 0.95rem;
}
.strip-grid p {
	margin: 0;
	color: #64748b;
	font-size: 0.83rem;
	line-height: 1.55;
}

/* PRICING */
.pricing {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 0 1.2rem 3.6rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.6rem;
	align-items: stretch;
}

.pricing-card {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem 1.4rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(237, 242, 247, 0.7);
	display: flex;
	flex-direction: column;
}

.pricing-card .badge {
	width: fit-content;
	display: inline-block;
	font-size: 0.68rem;
	background: rgba(47, 128, 237, 0.1);
	border: 1px solid rgba(47, 128, 237, 0.2);
	border-radius: 999px;
	padding: 2px 11px 3px;
	margin-bottom: 0.9rem;
	color: #1b4f98;
	font-weight: 600;
}

.pricing-card h2 {
	font-size: 2.3rem;
	margin: 0;
}
.pricing-card h2 span {
	font-size: 0.7rem;
	color: #94a3b8;
	margin-left: 4px;
}

.pricing-card .lead {
	font-size: 0.8rem;
	color: #64748b;
	margin-bottom: 1rem;
}
.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
	display: grid;
	gap: 0.45rem;
	font-size: 0.82rem;
}
.pricing-card .pcv-btn-full {
	margin-top: auto;
}
.pricing-card .foot {
	margin-top: 0.7rem;
	font-size: 0.72rem;
	color: #94a3b8;
}

.info-panel {
	background: rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 16px;
	padding: 1.2rem 1.2rem 1.1rem;
	backdrop-filter: blur(4px);
	display: flex;
	flex-direction: column;
}
.info-panel h3 {
	margin-top: 0;
	margin-bottom: 0.7rem;
}
.info-panel ul {
	margin: 0 0 1rem;
	padding-left: 1.15rem;
	display: grid;
	gap: 0.35rem;
	font-size: 0.82rem;
	color: #4b5563;
}
.info-panel h4 {
	margin-top: 0.9rem;
	margin-bottom: 0.45rem;
	font-size: 0.8rem;
}
.info-panel p {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: #475569;
}
.info-panel .muted {
	margin-top: auto;
	color: #94a3b8;
	font-size: 0.72rem;
}

/* ── Currency pills UI ─────────────────────────────────────────────── */
.price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	flex-wrap: wrap;
	margin-bottom: 0.35rem;
}
.price-pills {
	display: inline-flex;
	gap: 0.35rem;
	background: rgba(148, 163, 184, 0.12);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 999px;
	padding: 3px;
}
.pill {
	appearance: none;
	border: 0;
	background: transparent;
	color: #334155;
	font-weight: 600;
	font-size: 0.72rem;
	padding: 6px 10px;
	border-radius: 999px;
	cursor: pointer;
}
.pill:hover {
	background: rgba(255, 255, 255, 0.8);
}
.pill.is-active {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

/* RESPONSIVE */
@media (max-width: 950px) {
	.hero {
		grid-template-columns: 1fr;
	}
	.hero-right {
		justify-content: flex-start;
	}
	.hero-shell {
		border-radius: 18px;
	}
	.pricing {
		grid-template-columns: 1fr;
	}
	.info-panel {
		display: block;
	}
}

@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;
	}
	.hero {
		padding: 1.8rem 1.3rem 2.1rem;
	}
	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}
	.pricing,
	.strip {
		padding-bottom: 2.5rem;
	}
	.band,
	.band--wide {
		margin-top: 2.4rem;
		margin-bottom: 2.4rem;
	}
}
