/**
 * Soft LP (/lp) — dark canvas + brand gold (matches storefront theme).
 */

body.soft-lp-page {
	background: hsl(var(--canvas));
	color: hsl(var(--foreground));
}

body.soft-lp-page #main-content {
	background: transparent;
	color: inherit;
}

body.soft-lp-page .soft-lp {
	position: relative;
	min-height: calc(100dvh - 4rem);
	overflow: hidden;
	background: hsl(var(--canvas-dark));
	color: hsl(var(--foreground));
}

body.soft-lp-page .soft-lp__ambient {
	pointer-events: none;
	position: absolute;
	inset: 0;
	overflow: hidden;
}

body.soft-lp-page .soft-lp__ambient::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top, hsl(var(--brand) / 0.14) 0%, transparent 58%);
}

body.soft-lp-page .soft-lp__ambient::after {
	content: "";
	position: absolute;
	top: -30%;
	left: 50%;
	width: min(100%, 560px);
	height: 320px;
	transform: translateX(-50%);
	border-radius: 9999px;
	background: hsl(var(--brand) / 0.1);
	filter: blur(120px);
}

body.soft-lp-page .soft-lp__section {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: calc(100dvh - 4rem);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3rem 1rem;
	border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

body.soft-lp-page .soft-lp__inner {
	width: 100%;
	max-width: 42rem;
	margin: 0 auto;
	text-align: center;
}

body.soft-lp-page .soft-lp__trust {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: 1px solid hsl(var(--brand) / 0.18);
	background: hsl(var(--brand) / 0.08);
	font-size: 0.875rem;
	font-weight: 700;
	color: hsl(0 0% 100% / 0.45);
}

body.soft-lp-page .soft-lp__trust svg {
	flex-shrink: 0;
	color: hsl(var(--brand));
}

body.soft-lp-page .soft-lp__title {
	margin: 0 0 1rem;
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	font-weight: 900;
	line-height: 1.3;
	background: linear-gradient(135deg, hsl(0 0% 100%) 0%, hsl(var(--brand)) 55%, hsl(0 0% 100% / 0.88) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

body.soft-lp-page .soft-lp__subtitle {
	max-width: 32rem;
	margin: 0 auto 2.5rem;
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.75;
	font-weight: 500;
	color: hsl(0 0% 100% / 0.42);
}

body.soft-lp-page .soft-lp__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 3rem;
}

@media (min-width: 640px) {
	body.soft-lp-page .soft-lp__stats {
		gap: 1rem;
	}
}

body.soft-lp-page .soft-lp__stat {
	border-radius: 1rem;
	border: 1px solid hsl(0 0% 100% / 0.08);
	background: hsl(0 0% 100% / 0.03);
	padding: 1.25rem 0.5rem;
	backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
	body.soft-lp-page .soft-lp__stat {
		padding: 1.5rem 1rem;
	}
}

body.soft-lp-page .soft-lp__stat-value {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 900;
	color: hsl(var(--brand));
}

body.soft-lp-page .soft-lp__stat-value svg {
	color: hsl(var(--brand));
	fill: hsl(var(--brand));
}

body.soft-lp-page .soft-lp__stat-label {
	margin: 0.5rem 0 0;
	font-size: 0.6875rem;
	font-weight: 700;
	color: hsl(0 0% 100% / 0.35);
}

@media (min-width: 640px) {
	body.soft-lp-page .soft-lp__stat-label {
		font-size: 0.75rem;
	}
}

body.soft-lp-page .soft-lp__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 1rem;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	font-weight: 900;
	color: hsl(var(--canvas-dark)) !important;
	text-decoration: none;
	background: linear-gradient(135deg, hsl(var(--brand)) 0%, hsl(45 96% 58%) 100%);
	box-shadow: 0 4px 24px hsl(var(--brand) / 0.35);
	transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.soft-lp-page .soft-lp__cta:hover {
	color: hsl(var(--canvas-dark)) !important;
	filter: brightness(1.05);
	box-shadow: 0 8px 32px hsl(var(--brand) / 0.42);
}

body.soft-lp-page .soft-lp__cta:active {
	transform: scale(0.98);
}

body.soft-lp-page #live-order-popup {
	display: none !important;
}
