/**
 * Variant CSS: guarantee--money-back-band
 *
 * A dark, full-bleed reassurance band — a big seal/badge, kicker + headline with
 * the core guarantee + one line, then a row of micro-promise "pills" (icon +
 * short text), and fine print at the bottom. The reversed colour scheme lifts the
 * guarantee out of the page rhythm and gives it the weight of a commitment.
 * Always-dark surface like the footer, so body text is --text-on-dark (white);
 * the kicker, em, seal and pill icons use an accent->on-dark lift so they stay
 * visible even in themes where --accent equals the dark surface (KI-020). Stacks
 * the pills on mobile. Part of the `guarantee` role.
 */

body.aibt-universal .universal-guarantee--money-back-band {
	background: var(--background-dark, #141414);
	color: var(--text-on-dark, #ffffff);
	padding-block: calc(clamp(3.6rem, 7.5vw, 6rem) * var(--density, 1));
	text-align: center;
}

/* Seal / badge. */
body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__seal {
	width: 4.4rem;
	height: 4.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-md) auto !important;
	font-size: 2.1rem !important;
	line-height: 1 !important;
	border-radius: var(--decor-radius-pill, 999px);
	background: color-mix(in srgb, var(--accent) 26%, transparent);
	border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
}

body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__kicker {
	font-family: var(--font-body) !important;
	font-size: var(--text-xs) !important;
	font-weight: 600 !important;
	letter-spacing: var(--tracking-widest) !important;
	text-transform: uppercase !important;
	color: color-mix(in srgb, var(--accent) 62%, var(--on-dark, #ffffff)) !important;
	margin: 0 auto var(--space-sm) auto !important;
}

body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__headline {
	font-family: var(--font-display) !important;
	color: var(--text-on-dark, #ffffff) !important;
	margin: 0 auto var(--space-md) auto !important;
}

body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__headline em {
	color: color-mix(in srgb, var(--accent) 62%, var(--on-dark, #ffffff)) !important;
	font-style: italic;
}

body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__deck {
	font-family: var(--font-body) !important;
	font-size: var(--text-base) !important;
	line-height: var(--leading-relaxed) !important;
	color: var(--text-on-dark, #ffffff) !important;
	opacity: 0.82;
	margin: 0 auto !important;
	max-width: 52ch;
}

/* Micro-promise pills. */
body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__points {
	gap: clamp(0.7rem, 2vw, 1rem) !important;
	margin-top: clamp(1.8rem, 4vw, 2.6rem) !important;
}

body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__chip {
	gap: 0.5rem !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	padding: 0.5rem 1rem 0.5rem 0.7rem;
	border-radius: var(--decor-radius-pill, 999px);
	background: color-mix(in srgb, var(--on-dark, #ffffff) 8%, transparent);
	border: 1px solid color-mix(in srgb, var(--on-dark, #ffffff) 16%, transparent);
}

body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__chip-icon {
	flex: 0 0 auto !important;
	font-size: 1rem !important;
	line-height: 1 !important;
	margin: 0 !important;
	color: color-mix(in srgb, var(--accent) 60%, var(--on-dark, #ffffff)) !important;
}

body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__chip-text {
	font-family: var(--font-body) !important;
	font-size: var(--text-sm) !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	white-space: nowrap;
	color: var(--text-on-dark, #ffffff) !important;
	margin: 0 !important;
}

/* Fine print. */
body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__fineprint {
	font-family: var(--font-body) !important;
	font-size: var(--text-xs) !important;
	line-height: var(--leading-relaxed) !important;
	color: var(--text-on-dark, #ffffff) !important;
	opacity: 0.55;
	margin: clamp(1.8rem, 4vw, 2.6rem) auto 0 auto !important;
	max-width: 56ch;
}

/* Mobile: let pills wrap their text, kill tracking (A5). */
@media (max-width: 480px) {
	body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__kicker {
		letter-spacing: 0 !important;
	}
	body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__chip {
		width: 100%;
		justify-content: center;
	}
	body.aibt-universal .universal-guarantee--money-back-band .universal-guarantee__chip-text {
		white-space: normal;
	}
}
