/* Commercial Play — overrides on top of education-design.css (school-design base) */

/* Page shell: cream (#FAF7F0) → pure white (commercial only) */
.mk-commercial-play-landing-page {
	--mk-paper: #fff;
	--bs-body-bg: #fff;
	background: #fff;
}

/* Marquee text — shared CSS hardcodes #faf7f0 */
.mk-commercial-play-landing-page .mk-id-marquee {
	color: #fff;
}

/* Purple-section UI tints — align rgba cream literals to white (exclude CTA) */
.mk-commercial-play-landing-page .trust-strip {
	border-top-color: rgba(255, 255, 255, 0.12);
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* Section headlines — Montserrat pattern (commercial-only sections) */
.mk-commercial-play-landing-page .revenue .section-marker h2.revenue__headline,
.mk-commercial-play-landing-page .revenue__headline {
	margin: 0;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-weight: 800;
	font-size: clamp(1.35rem, 2.25vw, 2rem) !important;
	line-height: 1.2 !important;
	letter-spacing: 0.3rem !important;
	text-transform: uppercase;
	color: var(--mk-paper);
}
.mk-commercial-play-landing-page .invest .section-marker h2.invest__headline,
.mk-commercial-play-landing-page .invest__headline,
.mk-commercial-play-landing-page .caution .section-marker h2.caution__headline,
.mk-commercial-play-landing-page .caution__headline,
.mk-commercial-play-landing-page .gallery-band .section-marker h2.gallery__headline,
.mk-commercial-play-landing-page .gallery__headline {
	margin: 0;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-weight: 800;
	font-size: clamp(1.35rem, 2.25vw, 2rem) !important;
	line-height: 1.2 !important;
	letter-spacing: 0.3rem !important;
	text-transform: uppercase;
	color: var(--mk-purple-deep);
}
.mk-commercial-play-landing-page .revenue__headline-intro,
.mk-commercial-play-landing-page .invest__headline-intro,
.mk-commercial-play-landing-page .caution__headline-intro,
.mk-commercial-play-landing-page .gallery__headline-intro {
	display: block;
	margin: 0 0 0.5rem;
	font-size: 1em;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.3rem !important;
}
.mk-commercial-play-landing-page .revenue__headline-emphasis,
.mk-commercial-play-landing-page .invest__headline-emphasis,
.mk-commercial-play-landing-page .caution__headline-emphasis,
.mk-commercial-play-landing-page .gallery__headline-emphasis {
	display: block;
	font-size: 2em;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0.3rem !important;
}
.mk-commercial-play-landing-page .revenue__headline .revenue__gold,
.mk-commercial-play-landing-page .invest__headline .invest__gold,
.mk-commercial-play-landing-page .caution__headline .caution__gold,
.mk-commercial-play-landing-page .gallery__headline .gallery__gold {
	color: var(--mk-gold);
}
.mk-commercial-play-landing-page .offer__headline .offer__gold {
	color: var(--mk-gold);
}
.mk-commercial-play-landing-page .offer__intro {
	color: #fff;
	font-size: 1.15rem;
	line-height: 1.55;
	margin: 0;
}
.mk-commercial-play-landing-page .section-intro,
.mk-commercial-play-landing-page .offer__intro {
	max-width: none;
	width: 100%;
}
.mk-commercial-play-landing-page .revenue .section-intro {
	color: var(--mk-gold-soft);
	font-size: 1.15rem;
	line-height: 1.55;
}
.mk-commercial-play-landing-page .threein .section-intro--muted {
	font-size: 0.96rem;
	color: var(--mk-paper);
	line-height: 1.55;
}
.mk-commercial-play-landing-page .threein .section-intro--muted b,
.mk-commercial-play-landing-page .threein .section-intro--muted em {
	color: var(--mk-paper);
	font-style: normal;
	font-weight: 700;
}
.mk-commercial-play-landing-page .threein {
	padding-top: 0;
}
.mk-commercial-play-landing-page .threein .section-marker {
	padding-top: 0;
}
/* Revenue explorer */
.mk-commercial-play-landing-page .revenue {
	background: var(--mk-purple-deep);
	color: var(--mk-paper);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}
.mk-commercial-play-landing-page .revenue::before {
	content: "";
	position: absolute;
	width: 34rem;
	height: 34rem;
	border-radius: 50%;
	background: var(--mk-gold);
	top: -15rem;
	right: -12rem;
	opacity: 0.12;
}
.mk-commercial-play-landing-page .revenue > .container {
	position: relative;
	z-index: 1;
}
.mk-commercial-play-landing-page .revenue .num-lbl {
	color: var(--mk-gold-soft) !important;
}
.mk-commercial-play-landing-page .rev-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0.7rem;
}
.mk-commercial-play-landing-page .rev-tile {
	background: rgba(255, 255, 255, 0.05);
	border: 1.5px solid rgba(255, 255, 255, 0.18);
	border-radius: 0.85rem;
	padding: 1.3rem 1.2rem;
	cursor: pointer;
	transition: all 0.2s;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0.8rem;
	min-width: 0;
}
.mk-commercial-play-landing-page .rev-tile:hover,
.mk-commercial-play-landing-page .rev-tile.active {
	background: var(--mk-gold);
	border-color: var(--mk-gold);
	transform: translateY(-3px);
}
.mk-commercial-play-landing-page .rev-tile i {
	font-size: 1.5rem;
	color: var(--mk-gold);
	transition: color 0.2s;
}
.mk-commercial-play-landing-page .rev-tile:hover i,
.mk-commercial-play-landing-page .rev-tile.active i {
	color: var(--mk-purple-deep);
}
.mk-commercial-play-landing-page .rev-tile .rt-name {
	font-family: 'Unbounded', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: -0.005em;
	line-height: 1.05;
	color: var(--mk-paper);
	transition: color 0.2s;
	overflow-wrap: anywhere;
}
.mk-commercial-play-landing-page .rev-tile:hover .rt-name,
.mk-commercial-play-landing-page .rev-tile.active .rt-name {
	color: var(--mk-purple-deep);
}
.mk-commercial-play-landing-page .rev-detail {
	background: var(--mk-paper);
	color: var(--mk-ink);
	border-radius: 1rem;
	padding: 2rem 2.2rem;
	margin-top: 1.5rem;
	display: flex;
	gap: 1.4rem;
	align-items: flex-start;
	min-height: 128px;
}
.mk-commercial-play-landing-page .rev-detail > div {
	min-width: 0;
}
.mk-commercial-play-landing-page .rev-detail .rd-ico {
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 0.8rem;
	background: var(--mk-purple-deep);
	color: var(--mk-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	flex-shrink: 0;
}
.mk-commercial-play-landing-page .rev-detail h3 {
	font-family: 'Unbounded', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--mk-purple-deep);
	margin: 0 0 0.4rem;
	overflow-wrap: anywhere;
}
.mk-commercial-play-landing-page .rev-detail p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--mk-ink);
}
.mk-commercial-play-landing-page .rev-tile.rev-other {
	border-style: dashed;
	border-color: var(--mk-gold);
	background: rgba(244, 171, 51, 0.08);
}
.mk-commercial-play-landing-page .rev-tile.rev-other i,
.mk-commercial-play-landing-page .rev-tile.rev-other .rt-name {
	color: var(--mk-gold);
}
.mk-commercial-play-landing-page .rev-tile.rev-other:hover,
.mk-commercial-play-landing-page .rev-tile.rev-other.active {
	background: var(--mk-gold);
}
.mk-commercial-play-landing-page .rev-tile.rev-other:hover i,
.mk-commercial-play-landing-page .rev-tile.rev-other.active i,
.mk-commercial-play-landing-page .rev-tile.rev-other:hover .rt-name,
.mk-commercial-play-landing-page .rev-tile.rev-other.active .rt-name {
	color: var(--mk-purple-deep);
}

/* Three-in-one capability chips */
.mk-commercial-play-landing-page .cap-extra {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.9rem;
}
.mk-commercial-play-landing-page .cap-chip {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.58rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.28rem 0.5rem;
	border: 1px solid var(--mk-purple);
	color: var(--mk-purple-deep);
	font-weight: 500;
	border-radius: 999px;
}

/* Investment band */
.mk-commercial-play-landing-page .invest {
	background: var(--mk-purple-soft);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}
.mk-commercial-play-landing-page .invest::before {
	content: "";
	position: absolute;
	width: 22rem;
	height: 22rem;
	border-radius: 50%;
	background: var(--mk-gold);
	bottom: -8rem;
	right: -6rem;
	opacity: 0.4;
}
.mk-commercial-play-landing-page .invest > .container {
	position: relative;
	z-index: 1;
}
.mk-commercial-play-landing-page .invest .section-intro {
	font-size: 1.1rem;
	line-height: 1.6;
}
.mk-commercial-play-landing-page .invest .section-intro b {
	color: var(--mk-purple-deep);
}

/* Budget chips — match school-design value-band pills */
.mk-commercial-play-landing-page .invest .win-chip {
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	border: 1.5px solid var(--mk-purple-deep);
	background: #fff;
	color: var(--mk-purple-deep);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	line-height: 1.2;
	white-space: nowrap;
}
.mk-commercial-play-landing-page .invest .win-chip i {
	color: var(--mk-gold);
	font-size: 0.95rem;
	flex-shrink: 0;
}
@media (max-width: 991.98px) {
	.mk-commercial-play-landing-page .invest .win-chip {
		white-space: normal;
	}
}

/* Gallery band */
.mk-commercial-play-landing-page .gallery-band {
	padding: 6rem 0;
}
.mk-commercial-play-landing-page .gallery-band .section-intro {
	font-size: 1.1rem;
	line-height: 1.6;
}
.mk-commercial-play-landing-page .gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 130px;
	gap: 0.7rem;
}
.mk-commercial-play-landing-page .gallery-grid > *:nth-child(1) {
	grid-column: span 4;
	grid-row: span 2;
}
.mk-commercial-play-landing-page .gallery-grid > *:nth-child(2) {
	grid-column: span 4;
	grid-row: span 1;
}
.mk-commercial-play-landing-page .gallery-grid > *:nth-child(3) {
	grid-column: span 4;
	grid-row: span 2;
}
.mk-commercial-play-landing-page .gallery-grid > *:nth-child(4) {
	grid-column: span 4;
	grid-row: span 1;
}
.mk-commercial-play-landing-page .gallery-grid > *:nth-child(5) {
	grid-column: span 3;
	grid-row: span 1;
}
.mk-commercial-play-landing-page .gallery-grid > *:nth-child(6) {
	grid-column: span 5;
	grid-row: span 1;
}

/* Caution band */
.mk-commercial-play-landing-page .caution {
	background: #fff;
	padding: 6rem 0;
	border-top: 1.5px solid var(--mk-rule);
	border-bottom: 1.5px solid var(--mk-rule);
}
.mk-commercial-play-landing-page .caution-card {
	background: var(--mk-paper);
	border: 1.5px solid var(--mk-rule);
	border-left: 5px solid var(--mk-gold);
	border-radius: 0.85rem;
	padding: 1.7rem;
	height: 100%;
	min-width: 0;
}
.mk-commercial-play-landing-page .caution-card .cn-ico {
	font-size: 1.6rem;
	color: var(--mk-gold);
	margin-bottom: 0.8rem;
}
.mk-commercial-play-landing-page .caution-card h3 {
	font-family: 'Unbounded', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	color: var(--mk-purple-deep);
	margin: 0 0 0.5rem;
	line-height: 1.1;
	overflow-wrap: anywhere;
}
.mk-commercial-play-landing-page .caution-card p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--mk-ink);
}

/* Offer save badge */
.mk-commercial-play-landing-page .offer-save {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--mk-purple-deep);
	color: var(--mk-gold);
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	margin-top: 1.2rem;
}

@media (max-width: 768px) {
	.mk-commercial-play-landing-page .gallery-grid {
		grid-auto-rows: 100px;
	}
	.mk-commercial-play-landing-page .gallery-grid > * {
		grid-column: span 6 !important;
		grid-row: span 1 !important;
	}
	.mk-commercial-play-landing-page .gallery-grid > *:nth-child(1) {
		grid-column: span 12 !important;
		grid-row: span 2 !important;
	}
}
