/**
 * MH Theme homepage problem / diagnosis section.
 *
 * Phase 11: buyer-decision layer. This section exists to name the problem
 * before the page moves into belief, services, proof, and action.
 */

.mht-home-problem {
	position: relative;
	overflow: clip;
	isolation: isolate;
	padding-block: clamp(88px, 10vw, 148px);
}

.mht-home-problem::before {
	content: "";
	position: absolute;
	inset: 8% auto auto 50%;
	width: min(560px, 70vw);
	aspect-ratio: 1;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(183, 140, 255, 0.12), rgba(142, 99, 163, 0.05) 42%, transparent 70%);
	transform: translateX(-50%);
	pointer-events: none;
	z-index: -1;
}

.mht-home-problem__inner {
	position: relative;
	z-index: 1;
}

.mht-home-problem__head {
	max-width: min(860px, 100%);
	margin-inline: auto;
	text-align: center;
	display: grid;
	gap: clamp(16px, 2vw, 24px);
}

.mht-home-problem__kicker {
	justify-content: center;
}

.mht-home-problem__heading {
	max-width: 11.5em;
	margin-inline: auto;
}

.mht-home-problem__body {
	max-width: 720px;
	margin-inline: auto;
}

.mht-home-problem__grid {
	margin-top: clamp(34px, 5vw, 64px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
}

.mht-home-problem__card {
	position: relative;
	min-height: 220px;
	padding: clamp(22px, 3vw, 32px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(22px, 3vw, 34px);
}

.mht-home-problem__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--mht-color-accent, #B78CFF) 35%, transparent);
	color: var(--mht-color-accent, #B78CFF);
	font-family: var(--font-sans, system-ui, sans-serif);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.mht-home-problem__card-title {
	margin: auto 0 0;
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: var(--text-primary, #F6F2F7);
}

.mht-home-problem__card-body {
	margin: 0;
	color: var(--text-secondary, #AFA4B8);
	font-family: var(--font-sans, system-ui, sans-serif);
	font-size: clamp(0.94rem, 1vw, 1rem);
	line-height: 1.65;
}

[data-mht-theme-effective="light"] .mht-home-problem::before,
[data-mht-theme="light"] .mht-home-problem::before {
	background: radial-gradient(circle, rgba(183, 140, 255, 0.16), rgba(142, 99, 163, 0.07) 42%, transparent 72%);
}

@media (max-width: 900px) {
	.mht-home-problem__grid {
		grid-template-columns: 1fr;
	}

	.mht-home-problem__card {
		min-height: 0;
	}
}
