/* matchlayer-lp main stylesheet — editorial-style LP (Claude Design handoff) */

:root {
	--mlp-bg: #ffffff;
	--mlp-bg-soft: #f4f1ea;
	--mlp-bg-cream: #faf8f3;
	--mlp-ink: #2c2c2a;
	--mlp-ink-soft: #5f5e5a;
	--mlp-line: #e5e1d6;
	--mlp-line-strong: #cfc9bb;
	--mlp-blue: #185fa5;
	--mlp-blue-deep: #0f4a85;
	--mlp-blue-tint: #eaf1f9;
	--mlp-pink: #c84a7d;
	--mlp-pink-tint: #fbeef3;
	--mlp-amber: #b97a1f;
	--mlp-amber-tint: #fbf1de;
	--mlp-green: #3f7a4a;
	--mlp-green-tint: #e9f1ea;
	--mlp-serif: "Noto Serif JP", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
	--mlp-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", Meiryo, system-ui, sans-serif;
	--mlp-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
	--mlp-max: 1180px;
	--mlp-r: 6px;

	/* Backward-compat aliases consumed by sub-page templates (faq/support/contact/legal/thanks/blog). */
	--mlp-color-text: var(--mlp-ink);
	--mlp-color-muted: var(--mlp-ink-soft);
	--mlp-color-accent: var(--mlp-blue);
	--mlp-color-bg: var(--mlp-bg);
	--mlp-color-bg-soft: var(--mlp-bg-soft);
	--mlp-color-border: var(--mlp-line);
	--mlp-radius: var(--mlp-r);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	font-family: var(--mlp-sans);
	color: var(--mlp-ink);
	background: var(--mlp-bg);
	font-size: 16px;
	line-height: 1.75;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Prevent horizontal overflow from decorative mocks / negative-positioned
	   overlays at very narrow viewports (e.g., 320px). `clip` is preferred
	   over `hidden` so it does not establish a containing block. */
	overflow-x: clip;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: var(--mlp-blue);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: transparent;
	color: inherit;
}

.mlp-container {
	width: 100%;
	max-width: var(--mlp-max);
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 1024px) {
	.mlp-container {
		padding: 0 48px;
	}
}

/* ---------- Site header ---------- */

.mlp-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
	gap: 24px;
}

.mlp-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--mlp-ink);
	font-weight: 700;
	text-decoration: none;
}

.mlp-brand:hover,
.mlp-brand:focus {
	text-decoration: none;
}

.mlp-brand__mark {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--mlp-blue) 0%, var(--mlp-blue-deep) 100%);
	position: relative;
	flex-shrink: 0;
}

.mlp-brand__mark::after {
	content: "";
	position: absolute;
	inset: 5px 5px auto auto;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: #fff;
	opacity: 0.85;
}

.mlp-brand__name {
	font-family: var(--mlp-serif);
	font-size: 19px;
	letter-spacing: 0.01em;
}

.mlp-nav {
	display: none;
	align-items: center;
	gap: 6px;
}

@media (min-width: 880px) {
	.mlp-nav {
		display: flex;
	}
}

.mlp-nav a {
	color: var(--mlp-ink);
	font-size: 14px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: var(--mlp-r);
	text-decoration: none;
}

.mlp-nav a:hover,
.mlp-nav a:focus {
	background: var(--mlp-bg-soft);
	text-decoration: none;
}

.mlp-nav__cta {
	margin-left: 6px;
	background: var(--mlp-blue);
	color: #fff !important;
	padding: 10px 18px;
	border-radius: var(--mlp-r);
	font-weight: 600;
}

.mlp-nav__cta:hover,
.mlp-nav__cta:focus {
	background: var(--mlp-blue-deep);
	color: #fff !important;
	text-decoration: none;
}

.mlp-menu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--mlp-line);
	border-radius: var(--mlp-r);
	background: transparent;
	color: var(--mlp-ink);
}

@media (min-width: 880px) {
	.mlp-menu-btn {
		display: none;
	}
}

.mlp-mobile-nav {
	display: none;
}

.mlp-mobile-nav.is-open {
	display: block;
	border-bottom: 1px solid var(--mlp-line);
	background: #fff;
}

.mlp-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 8px 24px 16px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mlp-mobile-nav li a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--mlp-line);
	color: var(--mlp-ink);
	font-weight: 500;
	text-decoration: none;
}

.mlp-mobile-nav li:last-child a {
	border-bottom: 0;
}

/* ---------- Section frame ---------- */

.mlp-sec {
	padding: 72px 0;
	border-top: 1px solid var(--mlp-line);
}

@media (min-width: 768px) {
	.mlp-sec {
		padding: 104px 0;
	}
}

.mlp-sec--cream {
	background: var(--mlp-bg-cream);
}

.mlp-sec--soft {
	background: var(--mlp-bg-soft);
}

.mlp-section-head {
	margin-bottom: 40px;
	max-width: 760px;
}

.mlp-section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.mlp-section-head__eyebrow {
	font-family: var(--mlp-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--mlp-ink-soft);
	margin: 0 0 14px;
	text-transform: uppercase;
	line-height: 1;
}

.mlp-section-title {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.4;
	letter-spacing: 0.005em;
	margin: 0;
	color: var(--mlp-ink);
}

@media (min-width: 768px) {
	.mlp-section-title {
		font-size: 36px;
	}
}

@media (min-width: 1024px) {
	.mlp-section-title {
		font-size: 40px;
	}
}

.mlp-section-head__rule {
	display: block;
	width: 48px;
	height: 2px;
	background: var(--mlp-blue);
	margin-top: 18px;
}

.mlp-section-head--center .mlp-section-head__rule {
	margin-left: auto;
	margin-right: auto;
}

.mlp-section-head__sub {
	margin: 20px 0 0;
	color: var(--mlp-ink-soft);
	font-size: 16px;
	line-height: 1.85;
	max-width: 640px;
}

/* ---------- Buttons ---------- */

.mlp-cta-btn,
.mlp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 13px 26px;
	border-radius: var(--mlp-r);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4;
	text-align: center;
	transition: transform 0.05s, box-shadow 0.15s, background 0.15s;
	text-decoration: none;
}

.mlp-cta-btn:hover,
.mlp-cta-btn:focus,
.mlp-btn:hover,
.mlp-btn:focus {
	text-decoration: none;
}

.mlp-cta-btn--primary,
.mlp-btn--primary {
	background: var(--mlp-blue);
	color: #fff;
	box-shadow:
		0 1px 0 rgba(15, 74, 133, 0.2),
		0 6px 16px -8px rgba(24, 95, 165, 0.5);
}

.mlp-cta-btn--primary:hover,
.mlp-cta-btn--primary:focus,
.mlp-btn--primary:hover,
.mlp-btn--primary:focus {
	background: var(--mlp-blue-deep);
	color: #fff;
	box-shadow:
		0 1px 0 rgba(15, 74, 133, 0.2),
		0 10px 22px -8px rgba(24, 95, 165, 0.55);
}

.mlp-cta-btn--primary:active,
.mlp-btn--primary:active {
	transform: translateY(1px);
}

.mlp-cta-btn--primary[aria-disabled="true"],
.mlp-cta-btn--primary.is-disabled,
.mlp-btn--primary[aria-disabled="true"],
.mlp-btn--primary.is-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	box-shadow: none;
}

.mlp-cta-btn--primary[aria-disabled="true"]:hover,
.mlp-cta-btn--primary.is-disabled:hover,
.mlp-btn--primary[aria-disabled="true"]:hover,
.mlp-btn--primary.is-disabled:hover {
	background: var(--mlp-blue);
	box-shadow: none;
	transform: none;
}

.mlp-cta-btn--secondary {
	background: #fff;
	color: var(--mlp-blue);
	border: 1px solid var(--mlp-blue);
	box-shadow: none;
}

.mlp-cta-btn--secondary:hover,
.mlp-cta-btn--secondary:focus {
	background: var(--mlp-blue-tint);
	color: var(--mlp-blue-deep);
}

.mlp-btn--ghost {
	background: transparent;
	color: var(--mlp-ink);
	padding: 13px 8px;
}

.mlp-btn--ghost:hover,
.mlp-btn--ghost:focus {
	color: var(--mlp-blue);
	text-decoration: none;
}

.mlp-cta-btn--lg,
.mlp-btn--lg {
	min-height: 56px;
	padding: 16px 32px;
	font-size: 16px;
}

.mlp-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
	color: var(--mlp-blue);
	text-decoration: none;
}

.mlp-arrow-link::after {
	content: "→";
	transition: transform 0.15s;
}

.mlp-arrow-link:hover,
.mlp-arrow-link:focus {
	text-decoration: underline;
}

.mlp-arrow-link:hover::after,
.mlp-arrow-link:focus::after {
	transform: translateX(3px);
}

/* ============================================================
   01 / HERO
   ============================================================ */

.mlp-hero {
	padding: 48px 0 72px;
	background:
		radial-gradient(900px 500px at 90% -10%, rgba(24, 95, 165, 0.06), transparent 60%),
		linear-gradient(180deg, var(--mlp-bg-cream) 0%, var(--mlp-bg) 70%);
	border-bottom: 1px solid var(--mlp-line);
}

@media (min-width: 1024px) {
	.mlp-hero {
		padding: 80px 0 96px;
	}
}

.mlp-hero__grid {
	display: grid;
	gap: 48px;
	align-items: center;
}

/* Allow the two grid items (copy / visual) to shrink below their min-content,
   so the mock browser's 3-card sample grid can compress on narrow viewports
   instead of forcing the track wider than the viewport. */
.mlp-hero__grid > * {
	min-width: 0;
}

@media (min-width: 1024px) {
	.mlp-hero__grid {
		grid-template-columns: 1fr 1.05fr;
		gap: 64px;
	}
}

.mlp-hero__eyebrow {
	font-family: var(--mlp-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--mlp-blue);
	margin: 0 0 18px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.mlp-hero__eyebrow::before {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--mlp-blue);
}

.mlp-hero__title {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 34px;
	line-height: 1.45;
	letter-spacing: 0.005em;
	margin: 0 0 22px;
	color: var(--mlp-ink);
}

@media (min-width: 768px) {
	.mlp-hero__title {
		font-size: 44px;
		line-height: 1.4;
	}
}

@media (min-width: 1280px) {
	.mlp-hero__title {
		font-size: 52px;
	}
}

.mlp-hero__title em {
	font-style: normal;
	color: var(--mlp-blue);
	position: relative;
}

.mlp-hero__lead {
	font-size: 16px;
	line-height: 1.9;
	color: var(--mlp-ink-soft);
	margin: 0 0 32px;
	max-width: 520px;
}

@media (min-width: 768px) {
	.mlp-hero__lead {
		font-size: 17px;
	}
}

.mlp-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	align-items: center;
	margin-bottom: 28px;
}

/* .mlp-hero__price-note removed in F-031 (price badge no longer shown in hero) */

.mlp-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 22px;
	padding-top: 24px;
	border-top: 1px solid var(--mlp-line);
	font-size: 13px;
	color: var(--mlp-ink-soft);
}

.mlp-hero__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.mlp-hero__trust-item svg {
	flex-shrink: 0;
	color: var(--mlp-blue);
}

.mlp-hero__visual {
	position: relative;
}

/* ----- Hero visual: stacked browser + admin ----- */

.mlp-mock-stack {
	position: relative;
	width: 100%;
	max-width: 640px;
	margin-left: auto;
}

@media (max-width: 1023px) {
	.mlp-mock-stack {
		margin: 0 auto 48px;
	}
}

.mlp-mock-browser {
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 10px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 30px 60px -30px rgba(20, 30, 50, 0.22),
		0 12px 24px -16px rgba(20, 30, 50, 0.15);
	overflow: hidden;
}

.mlp-mock-browser__bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	background: #f5f3ee;
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-tlights {
	display: inline-flex;
	gap: 6px;
}

.mlp-tlights span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	display: block;
}

.mlp-tlights span:nth-child(1) {
	background: #ff5f57;
}

.mlp-tlights span:nth-child(2) {
	background: #febc2e;
}

.mlp-tlights span:nth-child(3) {
	background: #28c840;
}

.mlp-urlbar {
	flex: 1;
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 999px;
	padding: 5px 12px 5px 28px;
	font-family: var(--mlp-mono);
	font-size: 11.5px;
	color: var(--mlp-ink-soft);
	position: relative;
	letter-spacing: 0.02em;
}

.mlp-urlbar::before {
	content: "";
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	width: 9px;
	height: 11px;
	border: 1.5px solid var(--mlp-ink-soft);
	border-radius: 1.5px;
	box-shadow: inset 0 -3.5px 0 0 transparent;
}

.mlp-urlbar::after {
	content: "";
	position: absolute;
	left: 13.5px;
	top: 5px;
	width: 4px;
	height: 4px;
	border: 1.5px solid var(--mlp-ink-soft);
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
}

.mlp-mock-browser__body {
	background: #fff;
}

/* Sample matching site inside hero browser */

.mlp-sample__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 22px;
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-sample__brand {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 15px;
	color: var(--mlp-ink);
	letter-spacing: 0.02em;
}

.mlp-sample__brand b {
	color: var(--mlp-blue);
}

.mlp-sample__menu {
	display: flex;
	gap: 18px;
	font-size: 11.5px;
	color: var(--mlp-ink-soft);
}

.mlp-sample__menu .is-active {
	color: var(--mlp-ink);
	font-weight: 600;
}

.mlp-sample__hero {
	padding: 28px 22px 22px;
	background: linear-gradient(180deg, #fbfaf6 0%, #fff 100%);
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-sample__h {
	font-family: var(--mlp-serif);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 10px;
	color: var(--mlp-ink);
	letter-spacing: 0.005em;
}

.mlp-sample__sub {
	margin: 0 0 14px;
	font-size: 11px;
	color: var(--mlp-ink-soft);
}

.mlp-sample__search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 6px;
	padding: 8px 12px;
	max-width: 320px;
}

.mlp-sample__search input {
	flex: 1;
	border: 0;
	outline: 0;
	font: inherit;
	font-size: 11.5px;
	color: var(--mlp-ink-soft);
	background: transparent;
}

.mlp-sample__search-btn {
	background: var(--mlp-blue);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 4px;
}

.mlp-sample__grid {
	padding: 18px 22px 22px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.mlp-sample__card {
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 6px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mlp-sample__avatar {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: linear-gradient(135deg, #e6dfd0, #c9bea7);
	width: 42px;
	align-self: center;
	position: relative;
	overflow: hidden;
}

.mlp-sample__avatar::after {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, transparent 0 6px, rgba(255, 255, 255, 0.25) 6px 7px);
}

.mlp-sample__cardname {
	font-size: 10.5px;
	font-weight: 600;
	text-align: center;
	margin: 0;
	color: var(--mlp-ink);
}

.mlp-sample__cardmeta {
	font-size: 9.5px;
	color: var(--mlp-ink-soft);
	text-align: center;
	margin: 0;
	letter-spacing: 0.02em;
}

.mlp-sample__cardrow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 6px;
	border-top: 1px dashed var(--mlp-line);
}

.mlp-sample__price {
	font-family: var(--mlp-serif);
	font-size: 11px;
	font-weight: 700;
	color: var(--mlp-ink);
}

.mlp-sample__price small {
	font-weight: 500;
	color: var(--mlp-ink-soft);
}

.mlp-sample__star {
	font-size: 9.5px;
	color: var(--mlp-amber);
	letter-spacing: 0.05em;
}

/* WP admin overlay (bottom-left) */

.mlp-mock-admin {
	position: absolute;
	left: -12px;
	bottom: -32px;
	width: 260px;
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 8px;
	box-shadow:
		0 24px 48px -20px rgba(20, 30, 50, 0.28),
		0 8px 16px -10px rgba(20, 30, 50, 0.12);
	overflow: hidden;
}

@media (min-width: 1024px) {
	.mlp-mock-admin {
		left: -40px;
		width: 280px;
	}
}

.mlp-mock-admin__top {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: #1d2327;
	color: #fff;
}

.mlp-mock-admin__wp {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #23282d;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	border: 1px solid #3c434a;
}

.mlp-mock-admin__crumb {
	font-family: var(--mlp-mono);
	font-size: 10px;
	color: #a7aaad;
	letter-spacing: 0.04em;
}

.mlp-mock-admin__crumb b {
	color: #fff;
	font-weight: 500;
}

.mlp-mock-admin__body {
	padding: 14px 14px 16px;
}

.mlp-mock-admin__h {
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 4px;
	color: var(--mlp-ink);
}

.mlp-mock-admin__lead {
	font-size: 10.5px;
	color: var(--mlp-ink-soft);
	margin: 0 0 10px;
	line-height: 1.5;
}

.mlp-mock-admin__label {
	font-family: var(--mlp-mono);
	font-size: 9.5px;
	letter-spacing: 0.1em;
	color: var(--mlp-ink-soft);
	text-transform: uppercase;
	margin: 0 0 6px;
}

.mlp-mock-admin__opts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px;
}

.mlp-mock-admin__opt {
	border: 1px solid var(--mlp-line);
	border-radius: 5px;
	padding: 8px 9px;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10.5px;
	color: var(--mlp-ink);
	background: #fff;
}

.mlp-mock-admin__opt[data-on] {
	border-color: var(--mlp-blue);
	background: var(--mlp-blue-tint);
	color: var(--mlp-blue-deep);
	box-shadow: inset 0 0 0 1px var(--mlp-blue);
}

.mlp-mock-admin__radio {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1.5px solid var(--mlp-line-strong);
	flex-shrink: 0;
	position: relative;
}

.mlp-mock-admin__opt[data-on] .mlp-mock-admin__radio {
	border-color: var(--mlp-blue);
}

.mlp-mock-admin__opt[data-on] .mlp-mock-admin__radio::after {
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: 50%;
	background: var(--mlp-blue);
}

.mlp-mock-admin__btn {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--mlp-blue);
	color: #fff;
	font-size: 10.5px;
	font-weight: 600;
	padding: 6px 11px;
	border-radius: 4px;
}

/* ============================================================
   02 / OVERVIEW
   ============================================================ */

.mlp-overview__grid {
	display: grid;
	gap: 32px;
}

@media (min-width: 1024px) {
	.mlp-overview__grid {
		grid-template-columns: 1fr 1.6fr;
		gap: 64px;
	}
}

.mlp-overview__lead {
	font-family: var(--mlp-serif);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.85;
	margin: 0;
	color: var(--mlp-ink);
	letter-spacing: 0.005em;
}

.mlp-overview__body p {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.95;
	color: var(--mlp-ink);
}

.mlp-overview__body p:last-child {
	margin-bottom: 0;
}

.mlp-overview__highlights {
	margin-top: 32px;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 24px;
	border-top: 1px solid var(--mlp-line);
}

.mlp-overview__hl-num {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 32px;
	color: var(--mlp-blue);
	line-height: 1;
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}

.mlp-overview__hl-num small {
	font-family: var(--mlp-sans);
	font-size: 13px;
	font-weight: 500;
	color: var(--mlp-ink-soft);
	margin-left: 3px;
}

.mlp-overview__hl-label {
	font-size: 12px;
	color: var(--mlp-ink-soft);
	margin: 0;
	line-height: 1.5;
}

/* ============================================================
   03 / USE CASES — 4 cards w/ mini browser mocks
   ============================================================ */

.mlp-uc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
}

@media (min-width: 768px) {
	.mlp-uc-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.mlp-uc {
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.mlp-uc:hover {
	border-color: var(--mlp-line-strong);
	transform: translateY(-2px);
	box-shadow: 0 24px 40px -28px rgba(20, 30, 50, 0.22);
}

.mlp-uc__mock {
	position: relative;
	background: var(--mlp-bg-cream);
	padding: 18px 18px 0;
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-uc__browser {
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 8px 8px 0 0;
	border-bottom: 0;
	overflow: hidden;
	box-shadow: 0 8px 16px -10px rgba(20, 30, 50, 0.12);
}

.mlp-uc__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	background: #f5f3ee;
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-uc__tlights {
	display: inline-flex;
	gap: 4px;
}

.mlp-uc__tlights span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

.mlp-uc__tlights span:nth-child(1) {
	background: #ff5f57;
}

.mlp-uc__tlights span:nth-child(2) {
	background: #febc2e;
}

.mlp-uc__tlights span:nth-child(3) {
	background: #28c840;
}

.mlp-uc__url {
	flex: 1;
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 999px;
	padding: 3px 10px;
	font-family: var(--mlp-mono);
	font-size: 9.5px;
	color: var(--mlp-ink-soft);
	letter-spacing: 0.02em;
}

.mlp-uc__site {
	padding: 14px 16px 18px;
}

.mlp-uc__site-brand {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 13px;
	color: var(--mlp-ink);
	margin: 0 0 10px;
	letter-spacing: 0.02em;
}

.mlp-uc__hero-bar {
	height: 32px;
	border-radius: 4px;
	margin: 0 0 12px;
	background: linear-gradient(90deg, var(--mlp-uc-accent-tint) 0%, #fff 100%);
	border: 1px solid var(--mlp-line);
	position: relative;
	overflow: hidden;
}

.mlp-uc__hero-bar::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 38%;
	height: 6px;
	background: var(--mlp-uc-accent);
	border-radius: 2px;
	opacity: 0.7;
}

.mlp-uc__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.mlp-uc__card {
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 4px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mlp-uc__thumb {
	aspect-ratio: 16 / 10;
	border-radius: 3px;
	background: var(--mlp-uc-accent-tint);
	position: relative;
	overflow: hidden;
}

.mlp-uc__thumb-line {
	height: 5px;
	background: var(--mlp-ink-soft);
	opacity: 0.18;
	border-radius: 2px;
	margin: 0;
}

.mlp-uc__thumb-line + .mlp-uc__thumb-line {
	width: 60%;
}

/* Variant — round avatar (people) */

.mlp-uc--people .mlp-uc__thumb {
	border-radius: 50%;
	width: 34px;
	height: 34px;
	align-self: center;
	aspect-ratio: 1 / 1;
	background: radial-gradient(circle at 50% 38%, #d8cfb9 0 38%, var(--mlp-uc-accent-tint) 38% 100%);
}

.mlp-uc--people .mlp-uc__thumb::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80%;
	height: 55%;
	border-radius: 50% 50% 0 0;
	background: #cdc2a8;
}

/* Variant — square product (things) */

.mlp-uc--things .mlp-uc__thumb {
	background: var(--mlp-uc-accent-tint);
	background-image: repeating-linear-gradient(45deg, transparent 0 5px, rgba(0, 0, 0, 0.04) 5px 6px);
}

.mlp-uc--things .mlp-uc__thumb::after {
	content: "";
	position: absolute;
	inset: 25% 25%;
	border: 1.5px solid var(--mlp-uc-accent);
	opacity: 0.6;
	border-radius: 2px;
}

/* Variant — slot grid (booking) */

.mlp-uc--booking .mlp-uc__cards {
	grid-template-columns: repeat(4, 1fr);
	gap: 5px;
}

.mlp-uc--booking .mlp-uc__card {
	padding: 0;
	aspect-ratio: 1.6 / 1;
	background: var(--mlp-uc-accent-tint);
	border-color: var(--mlp-line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mlp-mono);
	font-size: 9px;
	color: var(--mlp-ink-soft);
	letter-spacing: 0.02em;
}

.mlp-uc--booking .mlp-uc__card[data-on] {
	background: var(--mlp-uc-accent);
	color: #fff;
	border-color: var(--mlp-uc-accent);
	font-weight: 600;
}

.mlp-uc--booking .mlp-uc__card[data-half] {
	background: linear-gradient(180deg, var(--mlp-uc-accent-tint) 0%, var(--mlp-uc-accent-tint) 50%, #fff 50%);
}

.mlp-uc--booking .mlp-uc__thumb,
.mlp-uc--booking .mlp-uc__thumb-line {
	display: none;
}

/* Variant — wide space (spaces) */

.mlp-uc--space .mlp-uc__cards {
	grid-template-columns: 1fr;
}

.mlp-uc--space .mlp-uc__card {
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}

.mlp-uc--space .mlp-uc__thumb {
	aspect-ratio: auto;
	width: 64px;
	height: 42px;
	flex-shrink: 0;
	background: linear-gradient(160deg, var(--mlp-uc-accent-tint) 0%, #fff 100%);
	border: 1px solid var(--mlp-line);
}

.mlp-uc--space .mlp-uc__thumb::after {
	content: "";
	position: absolute;
	left: 6px;
	right: 6px;
	bottom: 5px;
	height: 8px;
	background: var(--mlp-uc-accent);
	opacity: 0.5;
	border-radius: 1px;
}

.mlp-uc--space .mlp-uc__card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-top: 2px;
}

/* Card body */

.mlp-uc__body {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.mlp-uc__badge {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 6px;
	font-family: var(--mlp-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--mlp-uc-accent-tint);
	color: var(--mlp-uc-accent);
	border: 1px solid color-mix(in oklab, var(--mlp-uc-accent) 25%, transparent);
}

.mlp-uc__badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--mlp-uc-accent);
}

.mlp-uc__tag {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	color: var(--mlp-ink);
	margin: 0;
	letter-spacing: 0.005em;
}

.mlp-uc__desc {
	font-size: 14px;
	line-height: 1.85;
	color: var(--mlp-ink-soft);
	margin: 0;
}

/* Per-variant accent vars */

.mlp-uc--people {
	--mlp-uc-accent: var(--mlp-blue);
	--mlp-uc-accent-tint: var(--mlp-blue-tint);
}

.mlp-uc--things {
	--mlp-uc-accent: var(--mlp-pink);
	--mlp-uc-accent-tint: var(--mlp-pink-tint);
}

.mlp-uc--booking {
	--mlp-uc-accent: var(--mlp-amber);
	--mlp-uc-accent-tint: var(--mlp-amber-tint);
}

.mlp-uc--space {
	--mlp-uc-accent: var(--mlp-green);
	--mlp-uc-accent-tint: var(--mlp-green-tint);
}

.mlp-uc-note {
	margin: 32px 0 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--mlp-ink-soft);
	padding-top: 24px;
	border-top: 1px dashed var(--mlp-line-strong);
	max-width: 760px;
}

/* ============================================================
   04 / FEATURES
   ============================================================ */

.mlp-ft-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid var(--mlp-line);
	border-left: 1px solid var(--mlp-line);
}

@media (min-width: 768px) {
	.mlp-ft-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.mlp-ft {
	padding: 32px 28px;
	background: #fff;
	border-right: 1px solid var(--mlp-line);
	border-bottom: 1px solid var(--mlp-line);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mlp-ft__num {
	font-family: var(--mlp-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--mlp-ink-soft);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.mlp-ft__num::after {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--mlp-line-strong);
}

.mlp-ft__icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--mlp-blue-tint);
	color: var(--mlp-blue);
}

.mlp-ft__title {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.5;
	color: var(--mlp-ink);
	margin: 0;
	letter-spacing: 0.005em;
}

.mlp-ft__body {
	margin: 0;
	font-size: 15px;
	line-height: 1.85;
	color: var(--mlp-ink-soft);
}

.mlp-ft__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 6px;
}

.mlp-ft__tag {
	font-family: var(--mlp-mono);
	font-size: 11px;
	color: var(--mlp-ink);
	padding: 4px 10px;
	background: var(--mlp-bg-soft);
	border: 1px solid var(--mlp-line);
	border-radius: 999px;
	letter-spacing: 0.02em;
}

.mlp-ft-closing {
	margin: 40px 0 0;
	font-size: 14px;
	line-height: 1.85;
	color: var(--mlp-ink-soft);
	text-align: center;
}

/* ============================================================
   05 / PRICING
   ============================================================ */

.mlp-pricing__card {
	max-width: 560px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 10px;
	padding: 40px 32px;
	text-align: left;
	box-shadow: 0 24px 48px -28px rgba(20, 30, 50, 0.18);
}

.mlp-pricing__plan-name,
.mlp-pricing__plan {
	font-family: var(--mlp-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--mlp-blue);
	text-transform: uppercase;
	margin: 0 0 18px;
}

.mlp-pricing__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 0 0 6px;
	flex-wrap: wrap;
}

.mlp-pricing__currency,
.mlp-pricing__cur {
	font-family: var(--mlp-serif);
	font-size: 24px;
	font-weight: 700;
	color: var(--mlp-ink);
}

.mlp-pricing__amount,
.mlp-pricing__amt {
	font-family: var(--mlp-serif);
	font-size: 56px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--mlp-ink);
}

@media (min-width: 768px) {
	.mlp-pricing__amount,
	.mlp-pricing__amt {
		font-size: 64px;
	}
}

.mlp-pricing__tax {
	font-size: 14px;
	color: var(--mlp-ink-soft);
	margin-left: 4px;
}

.mlp-pricing__lead {
	margin: 8px 0 24px;
	font-size: 15px;
	line-height: 1.85;
	color: var(--mlp-ink);
}

.mlp-pricing__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 24px 0 0;
	border-top: 1px solid var(--mlp-line);
	display: grid;
	gap: 12px;
}

.mlp-pricing__features li {
	font-size: 14px;
	line-height: 1.7;
	padding-left: 30px;
	position: relative;
}

.mlp-pricing__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--mlp-blue);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5'/></svg>");
	background-size: 14px 14px;
	background-position: center;
	background-repeat: no-repeat;
}

.mlp-pricing__renew {
	margin: 0 0 22px;
	font-size: 13px;
	line-height: 1.8;
	color: var(--mlp-ink-soft);
}

.mlp-consent {
	margin: 0 0 16px;
	padding: 12px 14px;
	background: var(--mlp-bg-soft);
	border: 1.5px solid var(--mlp-line-strong);
	border-radius: var(--mlp-r);
	transition: border-color 0.15s, background 0.15s;
}

.mlp-consent.mlp-consent--error,
.mlp-consent.is-error {
	border-color: #c0392b;
	background: #fdf2ef;
}

.mlp-consent__label {
	display: flex;
	gap: 10px;
	font-size: 13.5px;
	line-height: 1.6;
	cursor: pointer;
	color: var(--mlp-ink);
}

.mlp-consent__check {
	flex-shrink: 0;
	margin-top: 3px;
	accent-color: var(--mlp-blue);
	width: 18px;
	height: 18px;
}

.mlp-consent__error {
	margin: 8px 0 0;
	font-size: 12.5px;
	color: #c0392b;
	font-weight: 600;
}

.mlp-pricing__cta {
	margin: 0;
}

.mlp-pricing__cta .mlp-cta-btn,
.mlp-pricing__cta .mlp-btn {
	width: 100%;
}

/* Coming-soon notices (F-026) */

.mlp-hero__coming-soon {
	font-size: 15px;
	line-height: 1.7;
	color: var(--mlp-ink-soft);
	margin: 0;
	padding: 10px 16px;
	background: var(--mlp-bg-soft);
	border: 1px solid var(--mlp-line);
	border-radius: var(--mlp-r);
}

.mlp-pricing__coming-soon {
	font-size: 14px;
	line-height: 1.8;
	color: var(--mlp-ink-soft);
	margin: 0;
	padding: 14px 16px;
	background: var(--mlp-bg-soft);
	border: 1px solid var(--mlp-line);
	border-radius: var(--mlp-r);
	text-align: center;
}

/* ============================================================
   06 / SUPPORT
   ============================================================ */

.mlp-sup-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 20px;
}

@media (min-width: 880px) {
	.mlp-sup-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.mlp-support-card {
	background: #fff;
	border: 1px solid var(--mlp-line);
	border-radius: 8px;
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	border-top: 3px solid var(--mlp-blue);
}

.mlp-support-card__num {
	font-family: var(--mlp-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--mlp-ink-soft);
}

.mlp-support-card__title {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 19px;
	line-height: 1.5;
	color: var(--mlp-ink);
	margin: 0;
}

.mlp-support-card__body {
	margin: 0;
	font-size: 14px;
	line-height: 1.85;
	color: var(--mlp-ink-soft);
}

.mlp-support-card__note {
	margin: 0;
	font-size: 12px;
	color: var(--mlp-ink-soft);
	padding-top: 8px;
	border-top: 1px dashed var(--mlp-line);
}

.mlp-support-grid__more {
	margin: 32px 0 0;
	text-align: center;
}

/* ============================================================
   07 / FAQ
   ============================================================ */

.mlp-faq__list,
.mlp-faq {
	max-width: 840px;
}

.mlp-faq__item {
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-faq__item:first-child {
	border-top: 1px solid var(--mlp-line);
}

.mlp-faq__question {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 4px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.mlp-faq__question::-webkit-details-marker {
	display: none;
}

.mlp-faq__question::before {
	content: "+";
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--mlp-bg-soft);
	border: 1px solid var(--mlp-line);
	color: var(--mlp-blue);
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
	transition: transform 0.2s, background 0.2s;
}

.mlp-faq__item[open] .mlp-faq__question::before {
	content: "−";
	background: var(--mlp-blue);
	color: #fff;
	border-color: var(--mlp-blue);
}

.mlp-faq__question-text {
	font-family: var(--mlp-serif);
	font-weight: 600;
	font-size: 17px;
	line-height: 1.6;
	color: var(--mlp-ink);
	margin: 0;
	flex: 1;
	letter-spacing: 0.005em;
}

.mlp-faq__answer {
	padding: 0 4px 24px 50px;
	font-size: 15px;
	line-height: 1.9;
	color: var(--mlp-ink);
}

.mlp-faq__answer p {
	margin: 0 0 12px;
}

.mlp-faq__answer p:last-child {
	margin-bottom: 0;
}

.mlp-lp-faq__more {
	margin: 24px 0 0;
	text-align: right;
	max-width: 840px;
}

/* ============================================================
   08 / CONTACT BAND
   ============================================================ */

.mlp-contact-band {
	text-align: center;
}

.mlp-contact-band__inner {
	max-width: 760px;
	margin: 0 auto;
}

.mlp-contact-band__title {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.5;
	margin: 0 0 24px;
	color: var(--mlp-ink);
	letter-spacing: 0.005em;
}

@media (min-width: 768px) {
	.mlp-contact-band__title {
		font-size: 36px;
	}
}

.mlp-contact-band__lead {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.95;
	color: var(--mlp-ink);
}

.mlp-contact-band__note {
	margin: 24px auto;
	padding: 14px 18px;
	max-width: 620px;
	background: var(--mlp-bg-cream);
	border: 1px solid var(--mlp-line);
	border-radius: var(--mlp-r);
	font-size: 13px;
	line-height: 1.8;
	color: var(--mlp-ink-soft);
	text-align: left;
}

.mlp-contact-band__cta {
	margin: 32px 0 0;
}

/* ============================================================
   Footer
   ============================================================ */

.mlp-site-footer {
	background: var(--mlp-bg-cream);
	border-top: 1px solid var(--mlp-line);
	padding: 48px 0 32px;
}

.mlp-site-footer__inner {
	display: block;
}

.mlp-site-footer__row {
	display: grid;
	gap: 24px;
}

@media (min-width: 768px) {
	.mlp-site-footer__row {
		grid-template-columns: 1fr auto;
		align-items: start;
	}
}

.mlp-site-footer__brand .mlp-brand__name {
	font-size: 20px;
}

.mlp-site-footer__tag {
	margin: 8px 0 0;
	font-size: 13px;
	color: var(--mlp-ink-soft);
}

.mlp-site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
}

.mlp-site-footer__list a,
.mlp-site-footer__link {
	color: var(--mlp-ink);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.mlp-site-footer__list a:hover,
.mlp-site-footer__list a:focus,
.mlp-site-footer__link:hover,
.mlp-site-footer__link:focus {
	text-decoration: underline;
}

.mlp-site-footer__copyright,
.mlp-site-footer__copy {
	margin: 32px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--mlp-line);
	font-family: var(--mlp-mono);
	font-size: 11px;
	color: var(--mlp-ink-soft);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

/* ============================================================
   Generic content pages (terms, privacy, faq, support, etc.)
   ============================================================ */

.mlp-page {
	padding: 56px 0 80px;
}

@media (min-width: 768px) {
	.mlp-page {
		padding: 80px 0 120px;
	}
}

.mlp-page__title {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.4;
	margin: 0 0 24px;
	color: var(--mlp-ink);
}

@media (min-width: 768px) {
	.mlp-page__title {
		font-size: 36px;
	}
}

.mlp-page__body {
	max-width: 760px;
}

.mlp-page__body h2 {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.5;
	margin: 40px 0 12px;
	color: var(--mlp-ink);
}

.mlp-page__body h3 {
	font-family: var(--mlp-serif);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.5;
	margin: 28px 0 8px;
	color: var(--mlp-ink);
}

.mlp-page__body p,
.mlp-page__body li {
	font-size: 15px;
	line-height: 1.95;
	color: var(--mlp-ink);
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
	}

	html {
		scroll-behavior: auto;
	}
}

/* ============================================================
   Sub-page templates (blog / single / legal / contact / support / faq / thanks)
   Inherited from the previous theme — kept compatible with the new
   design tokens via the backward-compat variable aliases declared
   in :root. Do NOT add LP-front-page styles below this point.
   ============================================================ */

.mlp-blog-archive {
	padding-block: 32px 64px;
}
.mlp-blog-archive__header {
	margin-bottom: 32px;
}
.mlp-blog-archive__title {
	font-size: 26px;
	margin: 0 0 8px;
	font-weight: 800;
}
.mlp-blog-archive__lead {
	margin: 0;
	color: var(--mlp-color-muted);
}
.mlp-blog-archive__empty {
	color: var(--mlp-color-muted);
}
.mlp-blog-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
}

@media (min-width: 768px) {
	.mlp-blog-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
}

@media (min-width: 1024px) {
	.mlp-blog-list {
		grid-template-columns: repeat(3, 1fr);
	}
}
.mlp-post-card {
	background: var(--mlp-color-bg);
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	overflow: hidden;
	display: grid;
	gap: 0;
}
.mlp-post-card__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--mlp-color-bg-soft);
}
.mlp-post-card__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mlp-post-card__body {
	padding: 16px 18px;
}
.mlp-post-card__title {
	font-size: 18px;
	margin: 0 0 8px;
	line-height: 1.45;
	font-weight: 700;
}
.mlp-post-card__title a {
	color: var(--mlp-color-text);
	text-decoration: none;
}
.mlp-post-card__title a:hover,
.mlp-post-card__title a:focus {
	color: var(--mlp-color-accent);
	text-decoration: underline;
}
.mlp-post-card__meta {
	margin: 0 0 8px;
	font-size: 12px;
	color: var(--mlp-color-muted);
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.mlp-post-card__cat a {
	color: var(--mlp-color-muted);
	text-decoration: none;
}
.mlp-post-card__cat a:hover {
	text-decoration: underline;
}
.mlp-post-card__excerpt {
	margin: 0;
	color: var(--mlp-color-text);
	font-size: 14px;
	line-height: 1.7;
}
.mlp-post-card__excerpt p {
	margin: 0;
}
.mlp-blog-pager .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 32px;
}
.mlp-blog-archive .nav-links a,
.mlp-blog-archive .nav-links span {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	font-size: 14px;
	color: var(--mlp-color-text);
	text-decoration: none;
}
.mlp-blog-archive .nav-links span.current {
	background: var(--mlp-color-accent);
	color: #fff;
	border-color: var(--mlp-color-accent);
}
.mlp-single {
	max-width: 760px;
	padding-block: 32px 64px;
}
.mlp-single__header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--mlp-color-border);
}
.mlp-single__title {
	font-size: 28px;
	margin: 0 0 12px;
	font-weight: 800;
	line-height: 1.3;
}
.mlp-single__meta {
	margin: 0;
	color: var(--mlp-color-muted);
	font-size: 13px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.mlp-single__cats a {
	color: var(--mlp-color-muted);
}
.mlp-single__thumb {
	margin: 0 0 24px;
}
.mlp-single__thumb img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--mlp-radius);
}
.mlp-single__body {
	font-size: 16px;
	line-height: 1.85;
}
.mlp-single__body h2 {
	font-size: 20px;
	margin: 32px 0 12px;
	font-weight: 700;
}
.mlp-single__body h3 {
	font-size: 17px;
	margin: 24px 0 8px;
	font-weight: 700;
}
.mlp-single__body p {
	margin: 0 0 16px;
}
.mlp-single__body ul,
.mlp-single__body ol {
	margin: 0 0 16px;
	padding-left: 24px;
}
.mlp-single__body a {
	color: var(--mlp-color-accent);
}
.mlp-single__tags {
	margin: 24px 0 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.mlp-single__tag {
	display: inline-block;
	padding: 4px 10px;
	background: var(--mlp-color-bg-soft);
	border: 1px solid var(--mlp-color-border);
	border-radius: 999px;
	font-size: 12px;
	color: var(--mlp-color-text);
	text-decoration: none;
}
.mlp-single__tag:hover {
	background: var(--mlp-color-border);
}
.mlp-post-cta {
	margin: 48px 0 32px;
	background: var(--mlp-color-bg-soft);
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	padding: 24px 20px;
	text-align: center;
}
.mlp-post-cta__title {
	font-size: 18px;
	margin: 0 0 12px;
	font-weight: 700;
}
.mlp-post-cta__lead {
	margin: 0 0 16px;
	color: var(--mlp-color-muted);
	font-size: 14px;
	line-height: 1.7;
}
.mlp-post-cta__action {
	margin: 0;
}
.mlp-legal {
	max-width: 760px;
	padding-block: 32px 64px;
}
.mlp-legal__header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--mlp-color-border);
}
.mlp-legal__title {
	font-size: 26px;
	margin: 0;
	font-weight: 800;
	line-height: 1.3;
}
.mlp-legal__body {
	font-size: 15px;
	line-height: 1.85;
	color: var(--mlp-color-text);
}
.mlp-legal__body p {
	margin: 0 0 16px;
}
.mlp-legal__body h2 {
	font-size: 18px;
	margin: 32px 0 12px;
	padding-top: 8px;
	font-weight: 700;
	line-height: 1.4;
}
.mlp-legal__body h3 {
	font-size: 16px;
	margin: 20px 0 8px;
	font-weight: 700;
}
.mlp-legal__body ul,
.mlp-legal__body ol {
	margin: 0 0 16px;
	padding-left: 24px;
}
.mlp-legal__body li {
	margin-bottom: 6px;
}
.mlp-legal__body a {
	color: var(--mlp-color-accent);
	text-decoration: underline;
}
.mlp-legal__updated {
	color: var(--mlp-color-muted);
	font-size: 13px;
	margin: 0 0 24px;
}
.mlp-legal__contact {
	margin-top: 24px;
	padding: 16px;
	background: var(--mlp-color-bg-soft);
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	font-size: 14px;
}
.mlp-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0 24px;
	font-size: 14px;
}
.mlp-legal-table th,
.mlp-legal-table td {
	padding: 12px 14px;
	border: 1px solid var(--mlp-color-border);
	vertical-align: top;
	text-align: left;
}
.mlp-legal-table th[scope="row"] {
	background: var(--mlp-color-bg-soft);
	font-weight: 700;
	width: 40%;
	color: var(--mlp-color-text);
}
.mlp-contact {
	max-width: 720px;
	padding-block: 32px 64px;
}
.mlp-contact__header {
	margin-bottom: 24px;
}
.mlp-contact__title {
	font-size: 26px;
	margin: 0 0 12px;
	font-weight: 800;
}
.mlp-contact__lead {
	margin: 0;
	color: var(--mlp-color-muted);
	font-size: 15px;
	line-height: 1.7;
}
.mlp-contact-form {
	display: grid;
	gap: 20px;
}
.mlp-contact-form__alert {
	padding: 12px 14px;
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
	border-radius: var(--mlp-radius);
	font-size: 14px;
}
.mlp-contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.mlp-contact-form__label {
	font-weight: 600;
	font-size: 14px;
}
.mlp-contact-form__required {
	color: #dc2626;
	margin-left: 4px;
}
.mlp-contact-form input[type="text"],
.mlp-contact-form input[type="email"],
.mlp-contact-form textarea {
	width: 100%;
	padding: 10px 12px;
	font: inherit;
	font-size: 16px;
	line-height: 1.5;
	background: var(--mlp-color-bg);
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	color: var(--mlp-color-text);
}
.mlp-contact-form input[type="text"]:focus,
.mlp-contact-form input[type="email"]:focus,
.mlp-contact-form textarea:focus {
	outline: 2px solid var(--mlp-color-accent);
	outline-offset: 1px;
	border-color: transparent;
}
.mlp-contact-form input[aria-invalid="true"],
.mlp-contact-form textarea[aria-invalid="true"] {
	border-color: #dc2626;
}
.mlp-contact-form textarea {
	resize: vertical;
	min-height: 160px;
}
.mlp-contact-form__error {
	margin: 0;
	color: #dc2626;
	font-size: 13px;
}
.mlp-contact-form__legal {
	margin: 0;
	color: var(--mlp-color-muted);
	font-size: 12px;
	line-height: 1.6;
}
.mlp-contact-form__legal a {
	color: var(--mlp-color-accent);
}
.mlp-contact-form__action {
	margin: 8px 0 0;
}
.mlp-contact-form__action .mlp-cta-btn {
	min-width: 200px;
}
.mlp-contact-form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}
.mlp-contact-success {
	background: var(--mlp-color-bg-soft);
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	padding: 32px 24px;
	text-align: center;
}
.mlp-contact-success__title {
	font-size: 22px;
	margin: 0 0 12px;
	font-weight: 700;
}
.mlp-contact-success__lead {
	margin: 0 0 12px;
	color: var(--mlp-color-text);
	font-size: 14px;
	line-height: 1.7;
}
.mlp-contact-success__lead:last-of-type {
	margin-bottom: 24px;
}
.mlp-thanks {
	max-width: 720px;
	padding-block: 48px;
}
.mlp-thanks__title {
	font-size: 26px;
	margin: 0 0 16px;
	text-align: center;
}
.mlp-thanks__lead {
	text-align: center;
	color: var(--mlp-color-muted);
	margin: 0 0 32px;
}
.mlp-thanks__card {
	background: var(--mlp-color-bg-soft);
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	padding: 24px 20px;
	margin-bottom: 32px;
}
.mlp-thanks__step-title {
	font-size: 18px;
	margin: 0 0 16px;
	font-weight: 700;
}
.mlp-thanks__steps {
	margin: 0;
	padding-left: 20px;
	display: grid;
	gap: 12px;
	font-size: 14px;
	line-height: 1.7;
}
.mlp-thanks__support {
	text-align: center;
	padding-top: 8px;
}
.mlp-thanks__support p {
	color: var(--mlp-color-muted);
	font-size: 14px;
	margin: 0 0 16px;
}
.mlp-thanks__support-cta {
	margin: 0;
}
.mlp-support {
	max-width: 760px;
	padding-block: 32px 64px;
}
.mlp-support__header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--mlp-color-border);
}
.mlp-support__title {
	font-size: 26px;
	margin: 0;
	font-weight: 800;
	line-height: 1.3;
}
.mlp-support__body {
	font-size: 15px;
	line-height: 1.85;
	color: var(--mlp-color-text);
}
.mlp-support__body p {
	margin: 0 0 16px;
}
.mlp-support__body h2 {
	font-size: 18px;
	margin: 32px 0 12px;
	padding-top: 8px;
	font-weight: 700;
	line-height: 1.4;
}
.mlp-support__body ul {
	margin: 0 0 16px;
	padding-left: 24px;
}
.mlp-support__body li {
	margin-bottom: 6px;
}
.mlp-support__body ul ul {
	margin-top: 6px;
	margin-bottom: 0;
}
.mlp-support__body a {
	color: var(--mlp-color-accent);
	text-decoration: underline;
}
.mlp-support__alert {
	margin: 24px 0;
	padding: 16px 20px;
	background: #fffbeb;
	border: 1px solid #f59e0b;
	border-left: 4px solid #f59e0b;
	border-radius: var(--mlp-radius);
	font-size: 14px;
	line-height: 1.7;
}
.mlp-support__alert p {
	margin: 0;
}
/* FAQ archive page (page-faq.php) — distinct from the LP-FAQ section.
   `.mlp-faq` is also used as an inner wrapper inside the LP front page, so
   page-level layout rules are scoped to `section.mlp-faq` only. */
section.mlp-faq {
	padding: 56px 0 80px;
}
@media (min-width: 768px) {
	section.mlp-faq {
		padding: 80px 0 120px;
	}
}
.mlp-faq__header {
	margin-bottom: 32px;
}
.mlp-faq__title {
	font-family: var(--mlp-serif);
	font-size: 28px;
	margin: 0 0 12px;
	font-weight: 700;
	line-height: 1.4;
}
@media (min-width: 768px) {
	.mlp-faq__title {
		font-size: 36px;
	}
}
.mlp-faq__lead {
	margin: 0;
	color: var(--mlp-color-muted);
	font-size: 15px;
	line-height: 1.85;
}
.mlp-faq__empty {
	color: var(--mlp-color-muted);
	font-size: 15px;
	text-align: center;
	padding: 48px 0;
}
/* LP-23: FAQ category group headings */
.mlp-faq__category-group {
	margin-bottom: 40px;
}
.mlp-faq__category-group:last-child {
	margin-bottom: 0;
}
.mlp-faq__category-title {
	font-family: var(--mlp-serif);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 8px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--mlp-line);
	color: var(--mlp-ink);
}
@media (min-width: 768px) {
	.mlp-faq__category-title {
		font-size: 26px;
		margin-bottom: 12px;
		padding-bottom: 10px;
	}
}

/* ---------- LP-30: WHY MATCHLAYER comparison section ---------- */
/* updated: 2026-06-21 */

.mlp-compare {
	background: var(--mlp-bg-cream);
}

/* --- Desktop table (hidden on mobile) --- */

.mlp-compare__table-wrap {
	max-width: 860px;
	margin: 0 auto;
}

.mlp-compare__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.mlp-compare__th {
	font-family: var(--mlp-sans);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 14px 18px;
	text-align: left;
	border-bottom: 2px solid var(--mlp-line-strong);
	color: var(--mlp-ink);
}

.mlp-compare__th--item {
	width: 22%;
}

.mlp-compare__th--foreign {
	width: 39%;
	color: var(--mlp-ink-soft);
}

.mlp-compare__th--ml {
	width: 39%;
	color: var(--mlp-blue);
}

.mlp-compare__td {
	font-size: 15px;
	line-height: 1.7;
	padding: 16px 18px;
	border-bottom: 1px solid var(--mlp-line);
	vertical-align: top;
}

.mlp-compare__td--item {
	font-weight: 700;
	color: var(--mlp-ink);
}

.mlp-compare__td--foreign {
	color: var(--mlp-ink-soft);
}

.mlp-compare__td--ml {
	color: var(--mlp-ink);
	font-weight: 600;
}

.mlp-compare__row:last-child .mlp-compare__td {
	border-bottom: none;
}

/* --- Mobile card stack (hidden on desktop) --- */

.mlp-compare__cards {
	display: none;
}

.mlp-compare__card {
	background: var(--mlp-bg);
	border: 1px solid var(--mlp-line);
	border-radius: var(--mlp-r);
	padding: 20px;
	margin-bottom: 16px;
}

.mlp-compare__card:last-child {
	margin-bottom: 0;
}

.mlp-compare__card-item {
	font-weight: 700;
	font-size: 15px;
	margin: 0 0 14px;
	color: var(--mlp-ink);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--mlp-line);
}

.mlp-compare__card-row {
	margin-bottom: 10px;
}

.mlp-compare__card-row:last-child {
	margin-bottom: 0;
}

.mlp-compare__card-row p {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.7;
}

.mlp-compare__card-row--foreign p {
	color: var(--mlp-ink-soft);
}

.mlp-compare__card-row--ml p {
	color: var(--mlp-ink);
	font-weight: 600;
}

.mlp-compare__card-label {
	display: inline-block;
	font-family: var(--mlp-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: 3px;
}

.mlp-compare__card-row--foreign .mlp-compare__card-label {
	background: var(--mlp-bg-soft);
	color: var(--mlp-ink-soft);
}

.mlp-compare__card-row--ml .mlp-compare__card-label {
	background: var(--mlp-blue-tint);
	color: var(--mlp-blue);
}

/* --- Responsive: swap table / cards at 767px --- */

@media (max-width: 767px) {
	.mlp-compare__table-wrap {
		display: none;
	}
	.mlp-compare__cards {
		display: block;
	}
}

/* --- Trust badge: flag icon alignment --- */

.mlp-hero__trust-flag {
	flex-shrink: 0;
}

/* ============================================================
   Screen-reader-text (WordPress standard visually-hidden)
   ============================================================ */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ============================================================
   Blog search form — F-032
   ============================================================ */

.mlp-blog-search {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	max-width: 480px;
}

.mlp-blog-search__input {
	flex: 1 1 0%;
	min-width: 0;
	padding: 10px 12px;
	font: inherit;
	font-size: 16px;
	line-height: 1.5;
	background: var(--mlp-color-bg);
	border: 1px solid var(--mlp-color-border);
	border-radius: var(--mlp-radius);
	color: var(--mlp-color-text);
}

.mlp-blog-search__input:focus {
	outline: 2px solid var(--mlp-color-accent);
	outline-offset: 1px;
	border-color: transparent;
}

.mlp-blog-search__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 14px;
	background: var(--mlp-blue);
	color: #fff;
	border: none;
	border-radius: var(--mlp-radius);
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.mlp-blog-search__btn:hover,
.mlp-blog-search__btn:focus-visible {
	background: var(--mlp-blue-deep);
}

.mlp-blog-search__icon {
	display: block;
}

/* Search results count */
.mlp-blog-archive__count {
	margin-top: 4px;
}
