/**
 * MR2 Solutions — animation & interaction styles.
 * Reveal effects are gated on html.mr2-js so that, without JS,
 * all content renders normally (no flash, no hidden content).
 */

/* Scroll reveals */
html.mr2-js [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	will-change: opacity, transform;
}

html.mr2-js [data-reveal].mr2-in {
	opacity: 1;
	transform: none;
}

/* Testimonial carousel: stack slides, fade the active one in */
html.mr2-js [data-mr2-slide] {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

html.mr2-js [data-mr2-slide].mr2-slide-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Active carousel dot */
.mr2-dot-active {
	background-color: rgb(0, 102, 204) !important;
	width: 1.75rem !important;
}

/* FAQ accordion panel */
.mr2-faq-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.mr2-faq-panel.mr2-faq-open {
	grid-template-rows: 1fr;
}

.mr2-faq-panel > .mr2-faq-inner {
	overflow: hidden;
}

.mr2-faq-panel > .mr2-faq-inner > p {
	padding: 0 1.25rem 1.25rem;
	margin: 0;
	color: rgb(71, 85, 105);
	line-height: 1.7;
}

/* Rotate the chevron when its FAQ item is open */
button[aria-expanded="true"] .lucide-chevron-down {
	transform: rotate(180deg);
}

/* Header scrolled state */
header.mr2-scrolled {
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
.mr2-mobile-menu {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.5rem 1.5rem;
	border-top: 1px solid rgb(229, 231, 235);
	background: #fff;
}

.mr2-mobile-menu.mr2-mobile-open {
	display: flex;
}

.mr2-mobile-menu a {
	padding: 0.6rem 0;
	color: rgb(51, 65, 85);
	font-weight: 500;
	text-decoration: none;
}

.mr2-mobile-menu a:hover {
	color: rgb(0, 102, 204);
}

/* Primary nav dropdowns (desktop) */
.mr2-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 95;
	min-width: 280px;
	max-width: 340px;
	margin: 0;
	margin-top: 0.5rem;
	padding: 0.5rem;
	list-style: none;
	background: #fff;
	border: 1px solid rgb(229, 231, 235);
	border-radius: 0.75rem;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Invisible bridge so hover survives the gap between the link and the panel. */
.mr2-submenu::before {
	content: "";
	position: absolute;
	top: -0.6rem;
	left: 0;
	right: 0;
	height: 0.6rem;
}

.group:hover > .mr2-submenu,
.mr2-submenu:hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mr2-submenu li {
	margin: 0;
	list-style: none;
}

.mr2-submenu__link {
	display: block;
	padding: 0.6rem 0.85rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background 0.15s ease;
}

.mr2-submenu__label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.3;
	color: rgb(15, 23, 42);
	transition: color 0.15s ease;
}

.mr2-submenu__desc {
	display: block;
	margin-top: 0.1rem;
	font-size: 0.78rem;
	line-height: 1.35;
	color: rgb(100, 116, 139);
}

.mr2-submenu__link:hover,
.mr2-submenu__link.is-current {
	background: rgb(239, 246, 255);
}

.mr2-submenu__link:hover .mr2-submenu__label,
.mr2-submenu__link.is-current .mr2-submenu__label {
	color: rgb(37, 99, 235);
}

/* Chevron flips when its dropdown is open. */
.group > a .lucide-chevron-down {
	transition: transform 0.2s ease;
}

.group:hover > a .lucide-chevron-down {
	transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
	html.mr2-js [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
	html.mr2-js [data-mr2-slide] {
		transition: none;
	}
}

/* ---- YouTube video rotator ---- */
.mr2-video-stage {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 1rem;
	overflow: hidden;
	background: #0a1628;
	box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.35);
}

.mr2-video-poster,
.mr2-video-iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	object-fit: cover;
}

.mr2-video-playbtn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 22, 40, 0.25);
	border: 0;
	cursor: pointer;
	transition: background 0.3s ease;
}

.mr2-video-playbtn:hover {
	background: rgba(10, 22, 40, 0.42);
}

.mr2-video-playicon {
	width: 5rem;
	height: 5rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.95);
	color: rgb(37, 99, 235);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 0.35rem;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	transition: transform 0.3s ease;
}

.mr2-video-playbtn:hover .mr2-video-playicon {
	transform: scale(1.08);
}

.mr2-video-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.25rem;
}

.mr2-video-title {
	flex: 1 1 auto;
	max-width: 44ch;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
	color: rgb(30, 41, 59);
}

.mr2-video-nav {
	flex: 0 0 auto;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 9999px;
	border: 1px solid rgb(191, 219, 254);
	background: #fff;
	color: rgb(37, 99, 235);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mr2-video-nav:hover {
	background: rgb(239, 246, 255);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
	transform: translateY(-1px);
}

.mr2-video-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.mr2-video-thumbs {
		grid-template-columns: repeat(8, 1fr);
	}
}

.mr2-video-thumb {
	position: relative;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 0.5rem;
	overflow: hidden;
	cursor: pointer;
	background: #0a1628;
	aspect-ratio: 16 / 9;
	opacity: 0.65;
	transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.mr2-video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mr2-video-thumb:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.mr2-video-thumb-active {
	opacity: 1;
	border-color: rgb(37, 99, 235);
}

/* ---- Hero ambient motion ---- */
/* Gated on no-preference so reduced-motion users get a static hero. */
@media (prefers-reduced-motion: no-preference) {
	.mr2-hero {
		background-size: 200% 200%;
		animation: mr2-hero-shift 24s ease-in-out infinite;
	}

	.mr2-blob,
	.mr2-float {
		will-change: transform;
	}

	.mr2-blob-1 { animation: mr2-blob-1 27s ease-in-out infinite; }
	.mr2-blob-2 { animation: mr2-blob-2 33s ease-in-out infinite; }
	.mr2-blob-3 { animation: mr2-blob-3 30s ease-in-out infinite; }

	.mr2-drift-1 { animation: mr2-drift-1 13s ease-in-out infinite; }
	.mr2-drift-2 { animation: mr2-drift-2 17s ease-in-out infinite; }
	.mr2-drift-3 { animation: mr2-drift-3 15s ease-in-out infinite 1s; }
	.mr2-drift-4 { animation: mr2-drift-4 19s ease-in-out infinite; }

	.mr2-diamond-1 { animation: mr2-diamond-1 16s ease-in-out infinite; }
	.mr2-diamond-2 { animation: mr2-diamond-2 21s ease-in-out infinite 1.5s; }
}

@keyframes mr2-hero-shift {
	0%, 100% { background-position: 0% 0%; }
	50% { background-position: 100% 100%; }
}

@keyframes mr2-blob-1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-42px, 34px) scale(1.06); }
}
@keyframes mr2-blob-2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(38px, -30px) scale(1.08); }
}
@keyframes mr2-blob-3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-30px, -36px) scale(1.05); }
}

@keyframes mr2-drift-1 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(14px, -18px); }
}
@keyframes mr2-drift-2 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-16px, 12px); }
}
@keyframes mr2-drift-3 {
	0%, 100% { transform: translate(0, 0); }
	33% { transform: translate(12px, 14px); }
	66% { transform: translate(-10px, 8px); }
}
@keyframes mr2-drift-4 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(18px, 16px); }
}

/* Diamonds keep their baked 45deg orientation while drifting + gently wobbling. */
@keyframes mr2-diamond-1 {
	0%, 100% { transform: rotate(45deg) translate(0, 0); }
	50% { transform: rotate(52deg) translate(12px, 10px); }
}
@keyframes mr2-diamond-2 {
	0%, 100% { transform: rotate(45deg) translate(0, 0); }
	50% { transform: rotate(38deg) translate(-10px, 12px); }
}

/* ---- Full-width stats band (below hero) ---- */
.mr2-statbar {
	background: rgb(248, 250, 252);
	border-top: 1px solid rgb(226, 232, 240);
	padding: 3.5rem 1.5rem;
}

.mr2-statbar__inner {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem 1rem;
}

.mr2-stat {
	position: relative;
	text-align: center;
	padding: 0 0.5rem;
}

.mr2-stat__num {
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: rgb(0, 102, 204);
	font-size: clamp(2.75rem, 7vw, 4.25rem);
	font-variant-numeric: tabular-nums;
}

.mr2-stat__label {
	margin-top: 0.65rem;
	font-weight: 600;
	color: rgb(71, 85, 105);
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

@media (min-width: 768px) {
	.mr2-statbar {
		padding: 4.5rem 1.5rem;
	}
	.mr2-statbar__inner {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
	.mr2-stat + .mr2-stat::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 1px;
		height: 3.25rem;
		background: rgb(226, 232, 240);
	}
	.mr2-stat__label {
		font-size: 1.05rem;
	}
}

/* ---- Homepage lead form (Request a Consultation) ---- */
.mr2-leadform {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, rgb(248, 250, 252) 100%);
	border-top: 1px solid rgb(241, 245, 249);
	padding: 5rem 1.5rem;
}

.mr2-leadform::before {
	content: "";
	position: absolute;
	top: -20%;
	left: 50%;
	width: 60rem;
	max-width: 120%;
	height: 60rem;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 60%);
	pointer-events: none;
}

.mr2-leadform__inner {
	position: relative;
	z-index: 1;
	max-width: 46rem;
	margin: 0 auto;
}

.mr2-leadform__head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.mr2-leadform__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	background: linear-gradient(90deg, rgb(239, 246, 255), rgb(236, 254, 255));
	border: 1px solid rgba(37, 99, 235, 0.18);
	color: rgb(37, 99, 235);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.mr2-leadform__eyebrow::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background: rgb(37, 99, 235);
}

.mr2-leadform__title {
	margin: 0 0 1rem;
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: rgb(15, 23, 42);
}

.mr2-leadform__sub {
	max-width: 36rem;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgb(71, 85, 105);
}

.mr2-leadform__card {
	padding: 2rem;
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1.25rem;
	box-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.18);
}

.mr2-leadform__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.mr2-field {
	display: flex;
	flex-direction: column;
}

.mr2-field--full {
	grid-column: 1 / -1;
}

.mr2-field label {
	margin-bottom: 0.4rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: rgb(51, 65, 85);
}

.mr2-field label .mr2-req {
	color: rgb(37, 99, 235);
}

.mr2-field input,
.mr2-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.75rem 0.9rem;
	font-size: 1rem;
	font-family: inherit;
	color: rgb(15, 23, 42);
	background: rgb(248, 250, 252);
	border: 1px solid rgb(226, 232, 240);
	border-radius: 0.6rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mr2-field textarea {
	min-height: 7rem;
	resize: vertical;
}

.mr2-field input::placeholder,
.mr2-field textarea::placeholder {
	color: rgb(148, 163, 184);
}

.mr2-field input:focus,
.mr2-field textarea:focus {
	outline: none;
	background: #ffffff;
	border-color: rgb(37, 99, 235);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.mr2-leadform__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9rem;
	margin-top: 1.75rem;
}

.mr2-leadform__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.95rem 2rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(90deg, rgb(37, 99, 235), rgb(29, 78, 216));
	border: none;
	border-radius: 9999px;
	cursor: pointer;
	box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.5);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mr2-leadform__submit:hover {
	background: linear-gradient(90deg, rgb(29, 78, 216), rgb(30, 64, 175));
	box-shadow: 0 14px 30px -8px rgba(37, 99, 235, 0.55);
	transform: translateY(-1px);
}

.mr2-leadform__submit svg {
	width: 1.15rem;
	height: 1.15rem;
	transition: transform 0.2s ease;
}

.mr2-leadform__submit:hover svg {
	transform: translateX(3px);
}

.mr2-leadform__note {
	margin: 0;
	font-size: 0.85rem;
	color: rgb(100, 116, 139);
	text-align: center;
}

/* Honeypot — hidden from real users, ready to catch bots when wired up */
.mr2-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (min-width: 640px) {
	.mr2-leadform__card {
		padding: 2.5rem;
	}
	.mr2-leadform__grid {
		grid-template-columns: 1fr 1fr;
	}
	.mr2-leadform__submit {
		width: auto;
		min-width: 16rem;
	}
}

/* ============================================================
   PHASE 2 — Leadership layouts
   ============================================================ */

/* ---- Page intro header ---- */
.mr2-pageintro {
	position: relative;
	overflow: hidden;
	padding: 6rem 1.5rem;
	text-align: left;
	background: linear-gradient(135deg, #0a1628, #0f2847 55%, #102a52);
}
.mr2-pageintro::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.22), transparent 45%);
}
.mr2-pageintro__inner {
	position: relative;
	z-index: 1;
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-pageintro__eyebrow {
	display: inline-block;
	margin-bottom: 1.25rem;
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgb(191, 219, 254);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.mr2-pageintro__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: #ffffff;
}
.mr2-pageintro__sub {
	max-width: 44rem;
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(219, 234, 254, 0.85);
}
/* When the intro is the first section, pull it up to cover the <main class="pt-20">
   header clearance so the dark band meets the fixed header with no seam, then add
   top padding to clear the bar. */
main > .mr2-pageintro:first-child {
	margin-top: -5rem;
	padding-top: 9rem;
}

/* ---- Page Hero (light, left-aligned, two buttons — TBaaS-style) ---- */
.mr2-herolite {
	position: relative;
	overflow: hidden;
	padding: 6rem 1.5rem;
	text-align: left;
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff 55%, rgb(239, 246, 255));
}
.mr2-herolite::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.1), transparent 50%);
}
main > .mr2-herolite:first-child {
	margin-top: -5rem;
	padding-top: 9rem;
}
.mr2-herolite__inner {
	position: relative;
	z-index: 1;
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-herolite__eyebrow {
	display: inline-block;
	margin-bottom: 1.5rem;
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	background: linear-gradient(90deg, rgb(239, 246, 255), rgb(236, 254, 255));
	border: 1px solid rgba(37, 99, 235, 0.18);
	color: rgb(37, 99, 235);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.mr2-herolite__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: rgb(15, 23, 42);
}
.mr2-herolite__sub {
	max-width: 40rem;
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.7;
	color: rgb(71, 85, 105);
}
.mr2-herolite__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.25rem;
}
.mr2-herolite__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 2rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
	color: #ffffff;
	background: linear-gradient(90deg, rgb(37, 99, 235), rgb(29, 78, 216));
	box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.5);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.mr2-herolite__btn svg {
	width: 1.1rem;
	height: 1.1rem;
	transition: transform 0.2s ease;
}
.mr2-herolite__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px -8px rgba(37, 99, 235, 0.6);
}
.mr2-herolite__btn:hover svg {
	transform: translateX(3px);
}
.mr2-herolite__btn--ghost {
	color: rgb(30, 58, 138);
	background: #ffffff;
	border: 1px solid rgb(191, 219, 254);
	box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.1);
}
.mr2-herolite__btn--ghost:hover {
	background: rgb(239, 246, 255);
	border-color: rgb(147, 197, 253);
	box-shadow: none;
}

/* ---- Content (rich text) section ---- */
.mr2-content {
	padding: 4rem 1.5rem;
	background: #ffffff;
}
.mr2-content__inner {
	max-width: 52rem;
	margin: 0 auto;
}
.mr2-content__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.6rem, 3.5vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-prose {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgb(51, 65, 85);
}
.mr2-prose > *:first-child {
	margin-top: 0;
}
.mr2-prose h2 {
	margin: 2.25rem 0 1rem;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: rgb(15, 23, 42);
}
.mr2-prose h3 {
	margin: 1.75rem 0 0.6rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-prose h4 {
	margin: 1.5rem 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: rgb(30, 41, 59);
}
.mr2-prose p {
	margin: 0 0 1.1rem;
}
.mr2-prose ul {
	margin: 0 0 1.25rem;
	padding-left: 0;
	list-style: none;
}
.mr2-prose ul li {
	position: relative;
	margin-bottom: 0.5rem;
	padding-left: 1.6rem;
}
.mr2-prose ul li::before {
	content: "";
	position: absolute;
	left: 0.15rem;
	top: 0.62em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background: rgb(37, 99, 235);
}
.mr2-prose ol {
	margin: 0 0 1.25rem;
	padding-left: 1.5rem;
}
.mr2-prose ol li {
	margin-bottom: 0.5rem;
}
.mr2-prose a {
	color: rgb(37, 99, 235);
	text-decoration: underline;
}
.mr2-prose strong {
	font-weight: 700;
	color: rgb(15, 23, 42);
}

/* ---- Simple CTA ---- */
.mr2-ctasimple {
	padding: 5rem 1.5rem;
	text-align: center;
	background: linear-gradient(135deg, rgb(239, 246, 255), rgb(236, 254, 255));
}
.mr2-ctasimple__inner {
	max-width: 42rem;
	margin: 0 auto;
}
.mr2-ctasimple__title {
	margin: 0 0 1rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-ctasimple__text {
	margin: 0 0 2rem;
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgb(71, 85, 105);
}
.mr2-ctasimple__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.9rem 2rem;
	border-radius: 9999px;
	background: linear-gradient(90deg, rgb(37, 99, 235), rgb(29, 78, 216));
	color: #ffffff;
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
	box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.5);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mr2-ctasimple__btn svg {
	width: 1.15rem;
	height: 1.15rem;
	transition: transform 0.2s ease;
}
.mr2-ctasimple__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px -8px rgba(37, 99, 235, 0.55);
}
.mr2-ctasimple__btn:hover svg {
	transform: translateX(3px);
}

/* ---- Team grid ---- */
.mr2-team {
	padding: 5rem 1.5rem;
	background: #ffffff;
}
.mr2-team__inner {
	max-width: 80rem;
	margin: 0 auto;
}
.mr2-team__head {
	margin: 0 0 3rem;
	text-align: center;
}
.mr2-team__title {
	margin: 0;
	font-size: clamp(1.6rem, 3.5vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-team__sub {
	max-width: 42rem;
	margin: 1rem auto 0;
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgb(71, 85, 105);
}
.mr2-team__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
	.mr2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.mr2-team--founders .mr2-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 60rem;
		margin: 0 auto;
	}
	.mr2-team--core .mr2-team__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.mr2-team--advisory .mr2-team__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.mr2-team-card {
	padding: 2rem;
	text-align: center;
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.2);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mr2-team-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.28);
	border-color: rgb(191, 219, 254);
}
.mr2-team-card__photo {
	display: block;
	width: 10rem;
	height: 10rem;
	margin: 0 auto 1.25rem;
	border-radius: 9999px;
	object-fit: cover;
	border: 3px solid #ffffff;
	box-shadow: 0 6px 18px -6px rgba(15, 23, 42, 0.3);
}
.mr2-team-card__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10rem;
	height: 10rem;
	margin: 0 auto 1.25rem;
	border-radius: 9999px;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: linear-gradient(135deg, rgb(37, 99, 235), rgb(14, 116, 144));
}
.mr2-team-card__name {
	margin: 0 0 0.25rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-team-card__title {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgb(37, 99, 235);
}
.mr2-team-card__bio {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-team-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
	margin-bottom: 1.25rem;
}
.mr2-team-card__tag {
	padding: 0.25rem 0.7rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	color: rgb(51, 65, 85);
	background: rgb(241, 245, 249);
}
.mr2-team-card__linkedin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	color: rgb(37, 99, 235);
	background: rgb(239, 246, 255);
	transition: background 0.2s ease, color 0.2s ease;
}
.mr2-team-card__linkedin:hover {
	background: rgb(37, 99, 235);
	color: #ffffff;
}
.mr2-team--advisory .mr2-team-card {
	padding: 1.5rem 1rem;
}
.mr2-team--advisory .mr2-team-card__avatar {
	width: 6rem;
	height: 6rem;
	font-size: 1.6rem;
}
.mr2-team--advisory .mr2-team-card__name {
	font-size: 1rem;
}
.mr2-team--advisory .mr2-team-card__title {
	margin-bottom: 0;
}
.mr2-team--founders .mr2-team-card__photo,
.mr2-team--founders .mr2-team-card__avatar {
	width: 12rem;
	height: 12rem;
}
.mr2-team--founders .mr2-team-card__avatar {
	font-size: 3rem;
}

/* ============================================================
   PHASE 3 — Case Studies layouts
   ============================================================ */

/* ---- Stat hero (dark) ---- */
.mr2-stathero {
	position: relative;
	overflow: hidden;
	padding: 7rem 1.5rem 5rem;
	text-align: center;
	color: #ffffff;
	background: linear-gradient(135deg, rgb(15, 23, 42), rgb(30, 58, 138) 60%, rgb(30, 27, 75));
}
.mr2-stathero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.25), transparent 45%), radial-gradient(circle at 75% 80%, rgba(6, 182, 212, 0.18), transparent 45%);
}
.mr2-stathero__inner {
	position: relative;
	z-index: 1;
	max-width: 64rem;
	margin: 0 auto;
}
.mr2-stathero__eyebrow {
	display: inline-block;
	margin-bottom: 1.25rem;
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgb(191, 219, 254);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.mr2-stathero__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}
.mr2-stathero__sub {
	max-width: 42rem;
	margin: 0 auto 3.5rem;
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(219, 234, 254, 0.85);
}
.mr2-stathero__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem 1rem;
}
@media (min-width: 768px) {
	.mr2-stathero__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.mr2-stathero__num {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	background: linear-gradient(90deg, #ffffff, rgb(191, 219, 254), rgb(165, 243, 252));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.mr2-stathero__label {
	margin-top: 0.6rem;
	font-size: 1rem;
	font-weight: 600;
	color: rgba(191, 219, 254, 0.9);
}

/* ---- Video testimonials ---- */
.mr2-vt {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, #ffffff, rgb(248, 250, 252));
}
.mr2-vt__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-vt__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-vt__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-vt__sub {
	max-width: 36rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-vt__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) {
	.mr2-vt__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.mr2-vt-card {
	display: block;
	color: inherit;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.2);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mr2-vt-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px -22px rgba(15, 23, 42, 0.3);
}
.mr2-vt-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgb(10, 22, 40), rgb(15, 40, 71));
	background-size: cover;
	background-position: center;
}
.mr2-vt-card__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	padding-left: 0.2rem;
	border-radius: 9999px;
	color: rgb(37, 99, 235);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	transition: transform 0.25s ease;
}
.mr2-vt-card:hover .mr2-vt-card__play {
	transform: scale(1.08);
}
.mr2-vt-card__body {
	padding: 1.5rem;
}
.mr2-vt-card__company {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-vt-card__desc {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}

/* ---- Case study cards ---- */
.mr2-cs {
	padding: 5rem 1.5rem;
	background: #ffffff;
}
.mr2-cs__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-cs__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-cs__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-cs__sub {
	max-width: 38rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-cs__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) {
	.mr2-cs__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.mr2-cscard {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	background: linear-gradient(180deg, #ffffff, rgb(248, 250, 252));
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mr2-cscard:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px -22px rgba(15, 23, 42, 0.28);
	border-color: rgb(191, 219, 254);
}
.mr2-cscard__industry {
	align-self: flex-start;
	margin-bottom: 1rem;
	padding: 0.3rem 0.85rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: rgb(29, 78, 216);
	background: rgb(219, 234, 254);
}
.mr2-cscard__title {
	margin: 0 0 0.6rem;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.25;
	color: rgb(15, 23, 42);
}
.mr2-cscard__client {
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
	color: rgb(71, 85, 105);
}
.mr2-cscard__link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	color: rgb(37, 99, 235);
	text-decoration: none;
}
.mr2-cscard__link svg {
	width: 1rem;
	height: 1rem;
	transition: transform 0.2s ease;
}
.mr2-cscard__link:hover svg {
	transform: translateX(3px);
}

/* ============================================================
   PHASE 4 — TBaaS layouts
   ============================================================ */

/* ---- Challenge cards ---- */
.mr2-challenge {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff);
}
.mr2-challenge__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-challenge__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-challenge__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-challenge__sub {
	max-width: 38rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-challenge__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) {
	.mr2-challenge__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.mr2-challenge-card {
	padding: 2.5rem 2rem;
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-top: 4px solid rgb(37, 99, 235);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
}
.mr2-challenge-card__stat {
	margin-bottom: 1rem;
	font-size: clamp(2.5rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: rgb(37, 99, 235);
}
.mr2-challenge-card__title {
	margin: 0 0 0.6rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-challenge-card__desc {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}

/* ---- Comparison table ---- */
.mr2-compare {
	padding: 5rem 1.5rem;
	background: #ffffff;
}
.mr2-compare__inner {
	max-width: 64rem;
	margin: 0 auto;
}
.mr2-compare__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-compare__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-compare__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-compare__table {
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.25);
}
.mr2-compare__row {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	align-items: stretch;
}
.mr2-compare__row + .mr2-compare__row {
	border-top: 1px solid rgb(226, 232, 240);
}
.mr2-compare__cell {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 1.25rem;
	font-size: 0.95rem;
}
.mr2-compare__cell--label {
	font-weight: 600;
	color: rgb(15, 23, 42);
	background: rgb(248, 250, 252);
}
.mr2-compare__cell--left {
	color: rgb(100, 116, 139);
}
.mr2-compare__cell--right {
	font-weight: 600;
	color: rgb(15, 23, 42);
	background: rgb(239, 246, 255);
}
.mr2-compare__row--head .mr2-compare__cell {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.mr2-compare__row--head .mr2-compare__cell--right {
	color: rgb(29, 78, 216);
}
.mr2-compare__x,
.mr2-compare__check {
	display: inline-flex;
	flex: 0 0 auto;
	width: 1.1rem;
	height: 1.1rem;
}
.mr2-compare__x {
	color: rgb(148, 163, 184);
}
.mr2-compare__check {
	color: rgb(22, 163, 74);
}
.mr2-compare__x svg,
.mr2-compare__check svg {
	width: 100%;
	height: 100%;
}
@media (max-width: 640px) {
	.mr2-compare__row {
		grid-template-columns: 1fr 1fr;
	}
	.mr2-compare__cell--label {
		grid-column: 1 / -1;
		background: rgb(241, 245, 249);
	}
	.mr2-compare__row--head .mr2-compare__cell--label {
		display: none;
	}
}

/* ---- Portfolio categories (dark) ---- */
.mr2-portfolio {
	padding: 5rem 1.5rem;
	color: #ffffff;
	background: linear-gradient(135deg, rgb(15, 23, 42), rgb(30, 58, 138));
}
.mr2-portfolio__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-portfolio__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-portfolio__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}
.mr2-portfolio__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(219, 234, 254, 0.85);
}
.mr2-portfolio__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.mr2-portfolio__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.mr2-portfolio__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.mr2-portfolio-card {
	padding: 1.75rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1rem;
}
.mr2-portfolio-card__name {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
}
.mr2-portfolio-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.mr2-portfolio-card__chip {
	padding: 0.3rem 0.8rem;
	border-radius: 9999px;
	font-size: 0.8rem;
	font-weight: 500;
	color: rgb(191, 219, 254);
	background: rgba(37, 99, 235, 0.25);
	border: 1px solid rgba(96, 165, 250, 0.3);
}

/* ---- Pillars ---- */
.mr2-pillars {
	padding: 5rem 1.5rem;
	background: #ffffff;
}
.mr2-pillars__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-pillars__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-pillars__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-pillars__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-pillars__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) {
	.mr2-pillars__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.mr2-pillar {
	padding: 2.5rem 2rem;
	background: linear-gradient(180deg, #ffffff, rgb(248, 250, 252));
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1.25rem;
	box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.2);
}
.mr2-pillar__stat {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: rgb(37, 99, 235);
}
.mr2-pillar__name {
	margin: 0.75rem 0 0.25rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-pillar__desc {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgb(100, 116, 139);
}
.mr2-pillar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.mr2-pillar__list li {
	position: relative;
	padding-left: 1.6rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgb(51, 65, 85);
}
.mr2-pillar__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 9999px;
	background: rgb(37, 99, 235);
}

/* ---- Use cases ---- */
.mr2-usecases {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff);
}
.mr2-usecases__inner {
	max-width: 76rem;
	margin: 0 auto;
}
.mr2-usecases__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-usecases__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-usecases__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-usecases__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.mr2-usecases__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.mr2-usecases__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.mr2-uccard {
	padding: 2rem;
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-left: 4px solid rgb(37, 99, 235);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
}
.mr2-uccard__persona {
	margin: 0 0 0.25rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-uccard__roles {
	margin: 0 0 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: rgb(37, 99, 235);
}
.mr2-uccard__pain {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	line-height: 1.6;
	font-style: italic;
	color: rgb(71, 85, 105);
}
.mr2-uccard__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.mr2-uccard__list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.9rem;
	color: rgb(51, 65, 85);
}
.mr2-uccard__list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	font-weight: 700;
	color: rgb(22, 163, 74);
}

/* ---- Benefit cards ---- */
.mr2-benefits {
	padding: 5rem 1.5rem;
	background: #ffffff;
}
.mr2-benefits__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-benefits__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-benefits__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-benefits__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-benefits__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.mr2-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.mr2-benefits__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.mr2-benefit-card {
	padding: 2rem;
	text-align: center;
	background: linear-gradient(180deg, #ffffff, rgb(248, 250, 252));
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.16);
}
.mr2-benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: 9999px;
	color: #ffffff;
	background: linear-gradient(135deg, rgb(37, 99, 235), rgb(14, 116, 144));
}
.mr2-benefit-card__icon svg {
	width: 1.4rem;
	height: 1.4rem;
}
.mr2-benefit-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-benefit-card__desc {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}

/* ---- Process steps ---- */
.mr2-steps {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, #ffffff, rgb(248, 250, 252));
}
.mr2-steps__inner {
	max-width: 76rem;
	margin: 0 auto;
}
.mr2-steps__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-steps__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-steps__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-steps__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.mr2-steps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.mr2-steps__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.mr2-step {
	position: relative;
	padding: 2rem;
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.16);
}
.mr2-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: 1rem;
	border-radius: 9999px;
	font-size: 1.2rem;
	font-weight: 800;
	color: #ffffff;
	background: linear-gradient(135deg, rgb(37, 99, 235), rgb(29, 78, 216));
	box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.6);
}
.mr2-step__name {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-step__desc {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}


/* ============================================================
   EXTRA SECTIONS — contact info, partner logos, full FAQ,
   newsletter, events list  (orbit hero reuses hero classes)
   ============================================================ */

/* ---- Contact info ---- */
.mr2-contactinfo { padding: 5rem 1.5rem; background: #fff; }
.mr2-contactinfo__inner { max-width: 72rem; margin: 0 auto; }
.mr2-contactinfo__head { text-align: center; margin-bottom: 3rem; }
.mr2-contactinfo__title { margin: 0 0 0.75rem; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: rgb(15, 23, 42); }
.mr2-contactinfo__sub { max-width: 38rem; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; color: rgb(71, 85, 105); }
.mr2-contactinfo__grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 640px) { .mr2-contactinfo__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.mr2-contactinfo__card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; border: 1px solid rgb(226, 232, 240); border-radius: 1rem; background: rgb(248, 250, 252); }
.mr2-contactinfo__icon { flex: 0 0 auto; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: 0.75rem; background: linear-gradient(135deg, #2563eb, #0ea5e9); color: #fff; }
.mr2-contactinfo__body { display: flex; flex-direction: column; gap: 0.2rem; }
.mr2-contactinfo__label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: rgb(100, 116, 139); }
.mr2-contactinfo__value { font-size: 1.05rem; font-weight: 600; color: rgb(15, 23, 42); text-decoration: none; line-height: 1.45; }
a.mr2-contactinfo__value:hover { color: rgb(37, 99, 235); }

/* ---- Partner logos ---- */
.mr2-logos { padding: 5rem 1.5rem; background: linear-gradient(180deg, #fff, rgb(248, 250, 252)); }
.mr2-logos__inner { max-width: 72rem; margin: 0 auto; }
.mr2-logos__head { text-align: center; margin-bottom: 3rem; }
.mr2-logos__title { margin: 0 0 0.75rem; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: rgb(15, 23, 42); }
.mr2-logos__sub { max-width: 38rem; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; color: rgb(71, 85, 105); }
.mr2-logos__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 640px) { .mr2-logos__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .mr2-logos__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.mr2-logos__item { display: flex; align-items: center; justify-content: center; min-height: 5rem; padding: 1rem; border: 1px solid rgb(226, 232, 240); border-radius: 0.75rem; background: #fff; text-decoration: none; transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.mr2-logos__item:hover { box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08); transform: translateY(-2px); border-color: rgb(191, 219, 254); }
.mr2-logos__item img { max-height: 2.5rem; max-width: 100%; object-fit: contain; }
.mr2-logos__name { font-weight: 700; color: rgb(51, 65, 85); text-align: center; }

/* ---- Full FAQ accordion ---- */
.mr2-faqfull { padding: 5rem 1.5rem; background: #fff; }
.mr2-faqfull__inner { max-width: 48rem; margin: 0 auto; }
.mr2-faqfull__head { text-align: center; margin-bottom: 2.5rem; }
.mr2-faqfull__title { margin: 0 0 0.75rem; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: rgb(15, 23, 42); }
.mr2-faqfull__sub { font-size: 1.1rem; line-height: 1.6; color: rgb(71, 85, 105); }

/* ---- Plan tiers (pricing cards) ---- */
.mr2-plans {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff);
}
.mr2-plans__inner { max-width: 76rem; margin: 0 auto; }
.mr2-plans__head { text-align: center; margin-bottom: 3rem; }
.mr2-plans__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgb(37, 99, 235);
}
.mr2-plans__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-plans__sub {
	max-width: 42rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-plans__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
}
@media (min-width: 900px) {
	.mr2-plans__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.mr2-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2rem 1.75rem;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.25);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mr2-plan:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.3);
}
.mr2-plan--featured {
	border-color: rgb(37, 99, 235);
	border-width: 2px;
	box-shadow: 0 18px 44px -20px rgba(37, 99, 235, 0.45);
}
.mr2-plan__badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: rgb(37, 99, 235);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
}
.mr2-plan__head {
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgb(226, 232, 240);
}
.mr2-plan__name {
	margin: 0 0 0.9rem;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
	color: rgb(15, 23, 42);
}
.mr2-plan__price {
	margin: 0 0 0.35rem;
	font-size: clamp(1.9rem, 3.5vw, 2.35rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: rgb(37, 99, 235);
}
.mr2-plan__terms {
	margin: 0 0 0.35rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: rgb(15, 23, 42);
}
.mr2-plan__note {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: rgb(100, 116, 139);
}
.mr2-plan__path {
	margin: 1.25rem 0 0;
	padding: 0.9rem 1rem;
	border-left: 3px solid rgb(37, 99, 235);
	border-radius: 0 0.5rem 0.5rem 0;
	background: rgb(239, 246, 255);
	font-size: 0.95rem;
	font-style: italic;
	line-height: 1.5;
	color: rgb(29, 78, 216);
}
.mr2-plan__ideal { margin-top: 1.25rem; }
.mr2-plan__ideal-intro {
	margin: 0 0 0.6rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgb(100, 116, 139);
}
.mr2-plan__list { margin: 0; padding: 0; list-style: none; }
.mr2-plan__item {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgb(71, 85, 105);
}
.mr2-plan__item + .mr2-plan__item { margin-top: 0.55rem; }
.mr2-plan__tick {
	display: inline-flex;
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
	margin-top: 0.15rem;
	color: rgb(22, 163, 74);
}
.mr2-plan__tick svg { width: 100%; height: 100%; }
.mr2-plan__pos {
	margin: 1.25rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid rgb(226, 232, 240);
	font-size: 0.88rem;
	line-height: 1.6;
	color: rgb(100, 116, 139);
}
.mr2-plan__cta {
	display: block;
	margin-top: 1.5rem;
	padding: 0.8rem 1.25rem;
	border-radius: 0.6rem;
	background: rgb(241, 245, 249);
	color: rgb(15, 23, 42);
	font-size: 0.92rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.mr2-plan__cta:hover { background: rgb(226, 232, 240); }
.mr2-plan--featured .mr2-plan__cta {
	background: rgb(37, 99, 235);
	color: #ffffff;
}
.mr2-plan--featured .mr2-plan__cta:hover { background: rgb(29, 78, 216); }
/* Once the cards sit side by side, push each CTA to the bottom so they align
   across the row regardless of how much copy sits above them. */
@media (min-width: 900px) {
	.mr2-plan__cta { margin-top: auto; }
	.mr2-plan__pos { margin-bottom: 1.5rem; }
}

/* ---- Plan matrix (3-column capabilities) ---- */
.mr2-matrix { padding: 5rem 1.5rem; background: #ffffff; }
.mr2-matrix__inner { max-width: 76rem; margin: 0 auto; }
.mr2-matrix__head { text-align: center; margin-bottom: 3rem; }
.mr2-matrix__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-matrix__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-matrix__scroll {
	overflow-x: auto;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.25);
}
.mr2-matrix__table {
	width: 100%;
	min-width: 56rem;
	border-collapse: collapse;
	background: #ffffff;
}
.mr2-matrix__caption {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.mr2-matrix__cap-head,
.mr2-matrix__col-head {
	position: sticky;
	top: 0;
	z-index: 1;
	padding: 1rem 1.25rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	vertical-align: bottom;
	background: rgb(248, 250, 252);
	border-bottom: 1px solid rgb(226, 232, 240);
	color: rgb(15, 23, 42);
}
.mr2-matrix__col-head.is-highlight {
	background: rgb(239, 246, 255);
	color: rgb(29, 78, 216);
}
.mr2-matrix__cap {
	width: 18%;
	padding: 1rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-align: left;
	vertical-align: top;
	background: rgb(248, 250, 252);
	color: rgb(15, 23, 42);
}
.mr2-matrix__table tbody tr { border-top: 1px solid rgb(226, 232, 240); }
.mr2-matrix__cell {
	display: table-cell;
	width: 27.3%;
	padding: 1rem 1.25rem;
	font-size: 0.88rem;
	line-height: 1.55;
	vertical-align: top;
	color: rgb(71, 85, 105);
}
.mr2-matrix__cell.is-highlight { background: rgb(239, 246, 255); }
.mr2-matrix__cell.is-off { color: rgb(148, 163, 184); }
.mr2-matrix__icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
	margin-right: 0.45rem;
	vertical-align: -0.15rem;
	color: rgb(22, 163, 74);
}
.mr2-matrix__cell.is-off .mr2-matrix__icon { color: rgb(203, 213, 225); }
.mr2-matrix__icon svg { width: 100%; height: 100%; }
.mr2-matrix__foot {
	margin: 1.25rem 0 0;
	font-size: 0.78rem;
	text-align: center;
	color: rgb(148, 163, 184);
}

/* Stack the matrix into per-tier cards on small screens rather than forcing a
   56rem table through a 20rem viewport. */
@media (max-width: 780px) {
	.mr2-matrix__scroll { overflow-x: visible; border: 0; border-radius: 0; box-shadow: none; }
	.mr2-matrix__table { min-width: 0; }
	.mr2-matrix__table thead { display: none; }
	.mr2-matrix__table tbody,
	.mr2-matrix__table tr { display: block; }
	.mr2-matrix__table tbody tr {
		margin-bottom: 1rem;
		border: 1px solid rgb(226, 232, 240);
		border-radius: 0.75rem;
		overflow: hidden;
	}
	.mr2-matrix__cap {
		display: block;
		width: auto;
		border-bottom: 1px solid rgb(226, 232, 240);
	}
	.mr2-matrix__cell {
		display: block;
		width: auto;
		padding: 0.85rem 1.25rem;
	}
	.mr2-matrix__cell + .mr2-matrix__cell { border-top: 1px solid rgb(241, 245, 249); }
	.mr2-matrix__cell::before {
		display: block;
		margin-bottom: 0.3rem;
		content: attr(data-label);
		font-size: 0.7rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		color: rgb(100, 116, 139);
	}
}
.mr2-faqfull__list { display: flex; flex-direction: column; gap: 0.75rem; }
.mr2-faqfull__item { border: 1px solid rgb(226, 232, 240); border-radius: 0.75rem; background: #fff; overflow: hidden; }
.mr2-faqfull__item[open] { border-color: rgb(191, 219, 254); box-shadow: 0 6px 18px rgba(37, 99, 235, 0.06); }
.mr2-faqfull__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.25rem; font-weight: 600; color: rgb(15, 23, 42); cursor: pointer; list-style: none; }
.mr2-faqfull__q::-webkit-details-marker { display: none; }
.mr2-faqfull__chev { flex: 0 0 auto; color: rgb(148, 163, 184); transition: transform 0.2s ease; }
.mr2-faqfull__item[open] .mr2-faqfull__chev { transform: rotate(180deg); }
.mr2-faqfull__a { padding: 0 1.25rem 1.25rem; color: rgb(71, 85, 105); line-height: 1.65; }

/* ---- Newsletter ---- */
.mr2-newsletter { padding: 4.5rem 1.5rem; background: linear-gradient(135deg, #0a1628, #0f2847 55%, #102a52); }
.mr2-newsletter__inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.mr2-newsletter__title { margin: 0 0 0.6rem; font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; color: #fff; }
.mr2-newsletter__sub { margin: 0 0 1.75rem; font-size: 1.05rem; line-height: 1.6; color: rgba(219, 234, 254, 0.85); }
.mr2-newsletter__form { display: flex; gap: 0.6rem; max-width: 30rem; margin: 0 auto; flex-wrap: wrap; }
.mr2-newsletter__srlabel { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.mr2-newsletter__input { flex: 1 1 14rem; min-width: 0; padding: 0.85rem 1rem; border-radius: 0.6rem; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 1rem; }
.mr2-newsletter__input::placeholder { color: rgba(219, 234, 254, 0.6); }
.mr2-newsletter__btn { flex: 0 0 auto; padding: 0.85rem 1.6rem; border-radius: 0.6rem; border: none; background: #fff; color: rgb(15, 23, 42); font-weight: 700; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.mr2-newsletter__btn:hover { background: rgb(239, 246, 255); transform: translateY(-1px); }
.mr2-newsletter__note { margin: 1rem 0 0; font-size: 0.85rem; color: rgba(219, 234, 254, 0.6); }

/* ---- Events list ---- */
.mr2-events { padding: 5rem 1.5rem; background: linear-gradient(180deg, rgb(248, 250, 252), #fff); }
.mr2-events__inner { max-width: 72rem; margin: 0 auto; }
.mr2-events__head { text-align: center; margin-bottom: 3rem; }
.mr2-events__title { margin: 0 0 0.75rem; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: rgb(15, 23, 42); }
.mr2-events__sub { max-width: 38rem; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; color: rgb(71, 85, 105); }
.mr2-events__empty { text-align: center; color: rgb(100, 116, 139); font-size: 1.05rem; }
.mr2-events__grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 768px) { .mr2-events__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.mr2-event { display: flex; flex-direction: column; gap: 0.7rem; padding: 1.75rem; border: 1px solid rgb(226, 232, 240); border-radius: 1rem; background: #fff; box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04); }
.mr2-event.is-past { opacity: 0.8; }
.mr2-event__type { align-self: flex-start; padding: 0.25rem 0.7rem; border-radius: 9999px; background: rgb(239, 246, 255); color: rgb(37, 99, 235); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.mr2-event__name { margin: 0; font-size: 1.25rem; font-weight: 700; color: rgb(15, 23, 42); }
.mr2-event__meta { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.mr2-event__meta li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgb(71, 85, 105); }
.mr2-event__meta svg { color: rgb(37, 99, 235); flex: 0 0 auto; }
.mr2-event__desc { margin: 0; font-size: 0.95rem; line-height: 1.55; color: rgb(71, 85, 105); }
.mr2-event__btn { margin-top: auto; align-self: flex-start; padding: 0.6rem 1.2rem; border-radius: 9999px; background: linear-gradient(90deg, #2563eb, #1d4ed8); color: #fff; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.mr2-event__btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25); }
.mr2-event__status { margin-top: auto; align-self: flex-start; font-size: 0.85rem; font-weight: 600; color: rgb(100, 116, 139); }


/* ---- Careers list ---- */
.mr2-careers { padding: 5rem 1.5rem; background: #fff; }
.mr2-careers__inner { max-width: 60rem; margin: 0 auto; }
.mr2-careers__head { text-align: center; margin-bottom: 3rem; }
.mr2-careers__title { margin: 0 0 0.75rem; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: rgb(15, 23, 42); }
.mr2-careers__sub { max-width: 38rem; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; color: rgb(71, 85, 105); }
.mr2-careers__empty { text-align: center; color: rgb(100, 116, 139); font-size: 1.05rem; }
.mr2-careers__empty a { color: rgb(37, 99, 235); }
.mr2-careers__list { display: flex; flex-direction: column; gap: 1rem; }
.mr2-careers__job { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 1.75rem; border: 1px solid rgb(226, 232, 240); border-radius: 1rem; background: rgb(248, 250, 252); transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; flex-wrap: wrap; }
.mr2-careers__job:hover { box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07); transform: translateY(-2px); border-color: rgb(191, 219, 254); }
.mr2-careers__main { flex: 1 1 22rem; min-width: 0; }
.mr2-careers__top { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.mr2-careers__name { margin: 0; font-size: 1.25rem; font-weight: 700; color: rgb(15, 23, 42); }
.mr2-careers__type { padding: 0.2rem 0.65rem; border-radius: 9999px; background: rgb(239, 246, 255); color: rgb(37, 99, 235); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.mr2-careers__meta { list-style: none; margin: 0 0 0.5rem; padding: 0; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.mr2-careers__meta li { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: rgb(100, 116, 139); }
.mr2-careers__meta svg { color: rgb(37, 99, 235); }
.mr2-careers__desc { margin: 0; font-size: 0.95rem; line-height: 1.55; color: rgb(71, 85, 105); }
.mr2-careers__apply { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.4rem; border-radius: 9999px; background: linear-gradient(90deg, #2563eb, #1d4ed8); color: #fff; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.mr2-careers__apply:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25); }
.mr2-careers__apply svg { transition: transform 0.2s ease; }
.mr2-careers__apply:hover svg { transform: translateX(3px); }


/* ---- Mobile menu — hierarchical slide-in panel ---- */
.mr2-mobile-overlay { position: fixed; inset: 0; z-index: 110; background: rgba(15, 23, 42, 0.45); opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease; }
.mr2-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.mr2-mobile-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 420px); background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -8px 0 40px rgba(15, 23, 42, 0.18); }
.mr2-mobile-overlay.is-open .mr2-mobile-panel { transform: translateX(0); }
.mr2-mobile-panel__head { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid rgb(229, 231, 235); }
.mr2-mobile-panel__head img { height: 2.25rem; width: auto; object-fit: contain; }
.mr2-mobile-close { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.6rem; border: none; background: rgb(243, 244, 246); color: rgb(55, 65, 81); cursor: pointer; transition: background 0.15s ease; }
.mr2-mobile-close:hover { background: rgb(229, 231, 235); }
.mr2-mobile-panel__nav { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mr2-mobile-group { padding: 1rem 1.5rem; border-bottom: 1px solid rgb(243, 244, 246); }
.mr2-mobile-group__top { display: block; font-size: 1.2rem; font-weight: 700; color: rgb(15, 23, 42); text-decoration: none; line-height: 1.4; }
.mr2-mobile-group__top:hover { color: rgb(37, 99, 235); }
.mr2-mobile-group .mr2-mobile-group__child:first-of-type { margin-top: 0.5rem; }
.mr2-mobile-group__child { display: block; padding: 0.3rem 0; font-size: 0.95rem; color: rgb(71, 85, 105); text-decoration: none; }
.mr2-mobile-group__child:hover { color: rgb(37, 99, 235); }
.mr2-mobile-panel__foot { flex: 0 0 auto; padding: 1.25rem 1.5rem; border-top: 1px solid rgb(229, 231, 235); }
.mr2-mobile-panel__cta { display: block; text-align: center; padding: 0.9rem 1.5rem; border-radius: 9999px; background: linear-gradient(90deg, #2563eb, #1d4ed8); color: #fff; font-weight: 600; text-decoration: none; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25); transition: filter 0.15s ease; }
.mr2-mobile-panel__cta:hover { filter: brightness(1.07); }
body.mr2-mobile-locked { overflow: hidden; }


/* Mega dropdown (long menus like Services) — multi-column, short & wide.
   Centered under the trigger so a wider panel fits on both sides without
   running off the right edge. */
.mr2-mega > .mr2-submenu {
	left: 50%;
	min-width: 0;
	max-width: calc(100vw - 2rem);
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(5, auto);
	grid-auto-columns: minmax(300px, 1fr);
	gap: 0.05rem 1.5rem;
	max-height: calc(100vh - 7rem);
	overflow-y: auto;
	white-space: nowrap;
	transform: translateX(-50%) translateY(6px);
}
.mr2-mega:hover > .mr2-submenu,
.mr2-mega > .mr2-submenu:hover {
	transform: translateX(-50%) translateY(0);
}
.mr2-mega .mr2-submenu__desc {
	white-space: normal;
}


/* In-page (#anchor) linking: every flexible-content section carries a unique
   id (see mr2_render_sections). Offset the scroll target so the ~6rem fixed
   header doesn't cover the top of the section it lands on. */
main > [id] { scroll-margin-top: 7rem; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ============================================================
   BLOG — index / archive / search / single / 404 / comments
   Shares the theme's herolite gradient, card language, and
   blue-on-slate palette. Reveal is gated on html.mr2-js.
   ============================================================ */

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* ---- Blog / archive / single / 404 header ---- */
.mr2-bloghead {
	position: relative;
	overflow: hidden;
	padding: 5.5rem 1.5rem 3.5rem;
	text-align: center;
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff 60%, rgb(239, 246, 255));
}
.mr2-bloghead::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 82% 15%, rgba(37, 99, 235, 0.1), transparent 52%);
}
main > .mr2-bloghead:first-child { margin-top: -5rem; padding-top: 8.5rem; }
.mr2-bloghead__inner {
	position: relative;
	z-index: 1;
	max-width: 48rem;
	margin: 0 auto;
}
.mr2-bloghead__eyebrow {
	display: inline-block;
	margin-bottom: 1.25rem;
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	background: linear-gradient(90deg, rgb(239, 246, 255), rgb(236, 254, 255));
	border: 1px solid rgba(37, 99, 235, 0.18);
	color: rgb(37, 99, 235);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
}
a.mr2-bloghead__eyebrow--link:hover { background: rgb(219, 234, 254); }
.mr2-bloghead__title {
	margin: 0 0 1rem;
	font-size: clamp(2.1rem, 5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.12;
	color: rgb(15, 23, 42);
}
.mr2-bloghead__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgb(71, 85, 105);
}
.mr2-bloghead__search { margin-top: 2rem; }
.mr2-bloghead--post { padding-bottom: 2.5rem; text-align: left; }
.mr2-bloghead--post .mr2-single__head { max-width: 48rem; margin: 0 auto; }

/* ---- Listing wrapper + card grid ---- */
.mr2-bloglist { padding: 4rem 1.5rem 5.5rem; background: #ffffff; }
.mr2-bloglist__inner { max-width: 72rem; margin: 0 auto; }
.mr2-postgrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}
@media (min-width: 640px) { .mr2-postgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .mr2-postgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.mr2-postcard {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.mr2-postcard:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px -18px rgba(15, 23, 42, 0.28);
	border-color: rgb(191, 219, 254);
}
.mr2-postcard__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, rgb(30, 58, 138), rgb(37, 99, 235));
}
.mr2-postcard__img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.mr2-postcard:hover .mr2-postcard__img { transform: scale(1.04); }
.mr2-postcard__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.9);
}
.mr2-postcard__body {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	padding: 1.5rem;
	flex: 1 1 auto;
}
.mr2-postcard__cat {
	align-self: flex-start;
	padding: 0.25rem 0.7rem;
	border-radius: 9999px;
	background: rgb(239, 246, 255);
	color: rgb(37, 99, 235);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-decoration: none;
}
.mr2-postcard__cat:hover { background: rgb(219, 234, 254); }
.mr2-postcard__title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.35;
	color: rgb(15, 23, 42);
}
.mr2-postcard__title a { color: inherit; text-decoration: none; }
.mr2-postcard__title a:hover { color: rgb(37, 99, 235); }
.mr2-postcard__excerpt {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-postcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 0.5rem;
}
.mr2-postcard__date { font-size: 0.82rem; color: rgb(148, 163, 184); }
.mr2-postcard__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: rgb(37, 99, 235);
}
.mr2-postcard__more svg { width: 0.95rem; height: 0.95rem; transition: transform 0.2s ease; }
.mr2-postcard:hover .mr2-postcard__more svg { transform: translateX(3px); }

/* ---- Empty state ---- */
.mr2-empty { max-width: 34rem; margin: 2rem auto; text-align: center; }
.mr2-empty__title { margin: 0 0 0.6rem; font-size: 1.6rem; font-weight: 800; color: rgb(15, 23, 42); }
.mr2-empty__text { margin: 0 0 1.5rem; font-size: 1.05rem; line-height: 1.6; color: rgb(71, 85, 105); }

/* ---- Pagination ---- */
.mr2-pagination { margin-top: 3.5rem; }
.mr2-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}
.mr2-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0 0.9rem;
	border-radius: 0.6rem;
	border: 1px solid rgb(226, 232, 240);
	background: #ffffff;
	color: rgb(51, 65, 85);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.mr2-pagination a.page-numbers:hover {
	border-color: rgb(147, 197, 253);
	background: rgb(239, 246, 255);
	color: rgb(29, 78, 216);
}
.mr2-pagination .page-numbers.current {
	background: linear-gradient(90deg, rgb(37, 99, 235), rgb(29, 78, 216));
	border-color: transparent;
	color: #ffffff;
}
.mr2-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* ---- Single post ---- */
.mr2-single__title { margin-bottom: 1.25rem; }
.mr2-single__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.95rem;
	color: rgb(100, 116, 139);
}
.mr2-single__author { font-weight: 700; color: rgb(15, 23, 42); }
.mr2-single__dot { color: rgb(203, 213, 225); }
.mr2-single__featured {
	max-width: 70rem;
	margin: 0 auto 3rem;
	padding: 0 1.5rem;
}
.mr2-single__featured-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1.25rem;
	box-shadow: 0 24px 60px -30px rgba(15, 23, 42, 0.4);
}
/* Two-column reading layout: article + sticky TOC/CTA sidebar. */
.mr2-single__layout {
	max-width: 70rem;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem;
}
.mr2-single__main { min-width: 0; }
.mr2-single__aside { min-width: 0; }
@media (min-width: 1000px) {
	.mr2-single__layout { grid-template-columns: minmax(0, 1fr) 17rem; }
}
.mr2-single__sticky {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
@media (min-width: 1000px) {
	.mr2-single__sticky { position: sticky; top: 7rem; }
}

/* ---- Table of contents ---- */
.mr2-toc {
	padding: 1.4rem 1.5rem;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	background: rgb(248, 250, 252);
}
.mr2-toc__label {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgb(100, 116, 139);
}
.mr2-toc__list { margin: 0; padding: 0; list-style: none; counter-reset: none; }
.mr2-toc__item { margin: 0; }
.mr2-toc__item--h3 { padding-left: 0.9rem; }
.mr2-toc__link {
	display: block;
	padding: 0.35rem 0;
	border-left: 2px solid transparent;
	padding-left: 0.75rem;
	margin-left: -0.75rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgb(71, 85, 105);
	text-decoration: none;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.mr2-toc__item--h3 .mr2-toc__link { font-size: 0.85rem; color: rgb(100, 116, 139); }
.mr2-toc__link:hover { color: rgb(37, 99, 235); }
.mr2-toc__link.is-active {
	color: rgb(29, 78, 216);
	border-left-color: rgb(37, 99, 235);
	font-weight: 600;
}

/* Heading anchors clear the fixed header when reached from a TOC link. */
.mr2-prose h2[id], .mr2-prose h3[id] { scroll-margin-top: 7rem; }

/* ---- Sidebar CTA widget ---- */
.mr2-ctawidget {
	padding: 1.6rem 1.5rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgb(15, 23, 42), rgb(30, 58, 138));
	color: #ffffff;
}
.mr2-ctawidget__title {
	margin: 0 0 0.6rem;
	font-size: 1.15rem;
	font-weight: 800;
	color: #ffffff;
}
.mr2-ctawidget__text {
	margin: 0 0 1.25rem;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(219, 234, 254, 0.85);
}
.mr2-ctawidget__btn {
	display: block;
	padding: 0.75rem 1.25rem;
	border-radius: 0.6rem;
	background: #ffffff;
	color: rgb(30, 58, 138);
	font-weight: 700;
	font-size: 0.92rem;
	text-align: center;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.15s ease;
}
.mr2-ctawidget__btn { color: rgb(30, 58, 138); }
.mr2-ctawidget__btn:hover { background: rgb(239, 246, 255); color: rgb(30, 58, 138); transform: translateY(-1px); }
/* Common core-widget elements dropped into the CTA area stay legible on the dark
   card — but never restyle the solid button (keep its dark text on white). */
.mr2-ctawidget a:not(.mr2-ctawidget__btn) { color: #ffffff; }
.mr2-ctawidget ul { margin: 0; padding: 0; list-style: none; }
.mr2-ctawidget li { padding: 0.3rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }

/* ---- Prose (post body typography) ---- */
.mr2-prose { font-size: 1.12rem; line-height: 1.8; color: rgb(51, 65, 85); }
.mr2-prose > * + * { margin-top: 1.5rem; }
.mr2-prose h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: 1.9rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.25; color: rgb(15, 23, 42); }
.mr2-prose h3 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.45rem; font-weight: 700; line-height: 1.3; color: rgb(15, 23, 42); }
.mr2-prose h4 { margin-top: 2rem; margin-bottom: 0.5rem; font-size: 1.2rem; font-weight: 700; color: rgb(15, 23, 42); }
.mr2-prose p { margin: 0; }
.mr2-prose a { color: rgb(37, 99, 235); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.mr2-prose a:hover { color: rgb(29, 78, 216); }
.mr2-prose strong { color: rgb(15, 23, 42); font-weight: 700; }
.mr2-prose ul, .mr2-prose ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.mr2-prose li { margin: 0.5rem 0; }
.mr2-prose ul > li { list-style: disc; }
.mr2-prose ol > li { list-style: decimal; }
.mr2-prose li::marker { color: rgb(37, 99, 235); }
.mr2-prose blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid rgb(37, 99, 235);
	border-radius: 0 0.75rem 0.75rem 0;
	background: rgb(239, 246, 255);
	font-size: 1.15rem;
	font-style: italic;
	color: rgb(30, 58, 138);
}
.mr2-prose blockquote p { margin: 0; }
.mr2-prose img, .mr2-prose figure { max-width: 100%; height: auto; border-radius: 0.75rem; }
.mr2-prose figure { margin: 2rem 0; }
.mr2-prose figcaption { margin-top: 0.6rem; font-size: 0.88rem; text-align: center; color: rgb(148, 163, 184); }
.mr2-prose code {
	padding: 0.15em 0.4em;
	border-radius: 0.3rem;
	background: rgb(241, 245, 249);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9em;
	color: rgb(30, 41, 59);
}
.mr2-prose pre {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-radius: 0.75rem;
	background: rgb(15, 23, 42);
	color: rgb(226, 232, 240);
	overflow-x: auto;
	font-size: 0.92rem;
	line-height: 1.6;
}
.mr2-prose pre code { padding: 0; background: transparent; color: inherit; }
.mr2-prose hr { margin: 3rem 0; border: 0; border-top: 1px solid rgb(226, 232, 240); }
.mr2-prose table { width: 100%; margin: 2rem 0; border-collapse: collapse; font-size: 0.98rem; }
.mr2-prose th, .mr2-prose td { padding: 0.75rem 1rem; border: 1px solid rgb(226, 232, 240); text-align: left; }
.mr2-prose th { background: rgb(248, 250, 252); font-weight: 700; color: rgb(15, 23, 42); }
.mr2-single__pagelinks { margin-top: 2rem; font-weight: 600; color: rgb(71, 85, 105); }
.mr2-single__pagelinks a { color: rgb(37, 99, 235); }

/* ---- Tags ---- */
.mr2-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgb(226, 232, 240);
}
.mr2-single__tag {
	padding: 0.35rem 0.85rem;
	border-radius: 9999px;
	background: rgb(248, 250, 252);
	border: 1px solid rgb(226, 232, 240);
	color: rgb(71, 85, 105);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.mr2-single__tag:hover { background: rgb(239, 246, 255); color: rgb(29, 78, 216); border-color: rgb(191, 219, 254); }

/* ---- Author box ---- */
.mr2-authorbox {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	margin-top: 3rem;
	padding: 1.75rem;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	background: rgb(248, 250, 252);
}
.mr2-authorbox__img { border-radius: 9999px; }
.mr2-authorbox__body { flex: 1 1 auto; }
.mr2-authorbox__label { margin: 0 0 0.15rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgb(148, 163, 184); }
.mr2-authorbox__name { margin: 0 0 0.5rem; font-size: 1.2rem; font-weight: 700; color: rgb(15, 23, 42); }
.mr2-authorbox__bio { margin: 0; font-size: 0.98rem; line-height: 1.6; color: rgb(71, 85, 105); }

/* ---- Prev / next ---- */
.mr2-postnav { max-width: 62rem; margin: 3.5rem auto 0; padding: 0 1.5rem; }
.mr2-postnav__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.mr2-postnav__link {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.25rem 1.5rem;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	background: #ffffff;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.mr2-postnav__link:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.3); border-color: rgb(191, 219, 254); }
.mr2-postnav__link--next { text-align: right; align-items: flex-end; }
.mr2-postnav__dir { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgb(37, 99, 235); }
.mr2-postnav__ttl { font-size: 1rem; font-weight: 600; line-height: 1.4; color: rgb(15, 23, 42); }
@media (max-width: 640px) {
	.mr2-postnav__inner { grid-template-columns: 1fr; }
	.mr2-postnav__link--next { text-align: left; align-items: flex-start; }
}

/* ---- Closing CTA band ---- */
.mr2-blogcta { margin-top: 4.5rem; padding: 4.5rem 1.5rem; background: linear-gradient(135deg, rgb(15, 23, 42), rgb(30, 58, 138)); }
.mr2-blogcta__inner { max-width: 44rem; margin: 0 auto; text-align: center; }
.mr2-blogcta__title { margin: 0 0 0.75rem; font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 800; letter-spacing: -0.01em; color: #ffffff; }
.mr2-blogcta__text { margin: 0 0 1.75rem; font-size: 1.1rem; line-height: 1.6; color: rgba(219, 234, 254, 0.85); }
.mr2-blogcta .mr2-herolite__btn { background: #ffffff; color: rgb(30, 58, 138); }
.mr2-blogcta .mr2-herolite__btn:hover { background: rgb(239, 246, 255); }

/* ---- Search form ---- */
.mr2-searchform {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	max-width: 32rem;
	margin: 0 auto;
	padding: 0.4rem 0.4rem 0.4rem 2.9rem;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 9999px;
	background: #ffffff;
	box-shadow: 0 6px 18px -10px rgba(15, 23, 42, 0.2);
}
.mr2-searchform__icon {
	position: absolute;
	left: 1.1rem;
	width: 1.15rem; height: 1.15rem;
	color: rgb(148, 163, 184);
	pointer-events: none;
}
.mr2-searchform__input {
	flex: 1 1 auto;
	min-width: 0;
	border: none;
	background: transparent;
	font-size: 1rem;
	color: rgb(15, 23, 42);
	outline: none;
}
.mr2-searchform__input::placeholder { color: rgb(148, 163, 184); }
.mr2-searchform__btn {
	flex: 0 0 auto;
	padding: 0.6rem 1.4rem;
	border: none;
	border-radius: 9999px;
	background: linear-gradient(90deg, rgb(37, 99, 235), rgb(29, 78, 216));
	color: #ffffff;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: filter 0.15s ease;
}
.mr2-searchform__btn:hover { filter: brightness(1.07); }

/* ---- 404 ---- */
.mr2-404__code {
	display: block;
	margin-bottom: 0.5rem;
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	background: linear-gradient(90deg, rgb(37, 99, 235), rgb(6, 182, 212));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.mr2-404__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }

/* ---- Comments ---- */
.mr2-comments { max-width: 46rem; margin: 3.5rem auto 0; padding: 2.5rem 1.5rem 0; border-top: 1px solid rgb(226, 232, 240); }
.mr2-comments__title { margin: 0 0 1.75rem; font-size: 1.5rem; font-weight: 800; color: rgb(15, 23, 42); }
.mr2-comments__list { margin: 0 0 2rem; padding: 0; list-style: none; }
.mr2-comments__list ol { list-style: none; }
.mr2-comments__list .children { margin: 1.25rem 0 0 1.5rem; padding: 0; list-style: none; }
.mr2-comments__list li { list-style: none; }
.mr2-comments__list .comment-body {
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.25rem;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	background: rgb(248, 250, 252);
}
.mr2-comments__list .comment-author { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; color: rgb(15, 23, 42); }
.mr2-comments__list .comment-author .avatar { border-radius: 9999px; }
.mr2-comments__list .comment-author .says { display: none; }
.mr2-comments__list .comment-metadata { margin: 0.15rem 0 0.75rem; font-size: 0.82rem; color: rgb(148, 163, 184); }
.mr2-comments__list .comment-metadata a { color: inherit; text-decoration: none; }
.mr2-comments__list .comment-content { font-size: 0.98rem; line-height: 1.65; color: rgb(71, 85, 105); }
.mr2-comments__list .comment-content p { margin: 0 0 0.75rem; }
.mr2-comments__list .reply { margin-top: 0.5rem; }
.mr2-comments__list .comment-reply-link {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	border-radius: 9999px;
	background: rgb(239, 246, 255);
	color: rgb(37, 99, 235);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
}
.mr2-comments__list .comment-reply-link:hover { background: rgb(219, 234, 254); }
.mr2-comments__closed { font-size: 0.9rem; color: rgb(148, 163, 184); }
.mr2-comments__reply-title { margin: 0 0 1rem; font-size: 1.25rem; font-weight: 800; color: rgb(15, 23, 42); }
.mr2-comments .comment-respond { margin-top: 2rem; }
.mr2-comments .comment-form { display: flex; flex-direction: column; gap: 1rem; }
.mr2-comments .comment-form p { margin: 0; }
.mr2-comments .comment-form label { display: block; margin-bottom: 0.35rem; font-size: 0.85rem; font-weight: 600; color: rgb(51, 65, 85); }
.mr2-comments .comment-form input[type="text"],
.mr2-comments .comment-form input[type="email"],
.mr2-comments .comment-form input[type="url"],
.mr2-comments .comment-form textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 0.6rem;
	background: #ffffff;
	font-size: 1rem;
	color: rgb(15, 23, 42);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mr2-comments .comment-form input:focus,
.mr2-comments .comment-form textarea:focus {
	outline: none;
	border-color: rgb(147, 197, 253);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.mr2-comments .comment-form textarea { min-height: 8rem; resize: vertical; }
.mr2-comments .comment-form .comment-notes,
.mr2-comments .comment-form .comment-form-cookies-consent label { font-size: 0.82rem; font-weight: 400; color: rgb(148, 163, 184); }
.mr2-comments .form-submit .submit { cursor: pointer; border: none; }

/* ---------- vendor partners grid (vendor_partners block) ---------- */
.mr2-vp__tools { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin: 0 0 1.5rem; }
.mr2-vp__search { flex: 1 1 16rem; max-width: 24rem; padding: 0.7rem 1rem; font: inherit; font-size: 0.95rem; color: rgb(15, 23, 42); background: #fff; border: 1px solid rgb(226, 232, 240); border-radius: 0.75rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.mr2-vp__search:focus { outline: none; border-color: rgb(59, 130, 246); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }
.mr2-vp__count { font-size: 0.9rem; font-weight: 700; color: rgb(100, 116, 139); }
.mr2-vp__empty { text-align: center; font-weight: 700; color: rgb(100, 116, 139); margin: 2rem 0 0; }
.mr2-vp .mr2-logos__item[hidden] { display: none; }
.mr2-vp .mr2-logos__item img { max-height: 3.25rem; }

/* ---------- logo fader strip (logo_fader block) ---------- */
.mr2-fader { padding: 4rem 1.5rem; background: linear-gradient(180deg, rgb(248, 250, 252), #fff); }
.mr2-fader__head { text-align: center; margin-bottom: 2rem; }
.mr2-fader__title { margin: 0 0 0.5rem; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; color: rgb(15, 23, 42); }
.mr2-fader__row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
.mr2-fader__item { min-height: 5.5rem; }
.mr2-fader__item img { max-height: 2.75rem; max-width: 100%; object-fit: contain; transition: opacity 0.5s ease; }
.mr2-fader__item img.is-fading { opacity: 0; }
.mr2-fader__more { text-align: center; margin: 1.75rem 0 0; }
.mr2-fader__link { font-weight: 700; color: rgb(37, 99, 235); text-decoration: none; }
.mr2-fader__link:hover { text-decoration: underline; }
@media (max-width: 900px) { .mr2-fader__row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .mr2-fader__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Fader tiles: borderless, larger logos. */
.mr2-fader__item, .mr2-fader__item:hover { border: 0; background: transparent; box-shadow: none; transform: none; }
.mr2-fader__item { min-height: 6rem; padding: 0.5rem; }
.mr2-fader__item img { max-height: 4rem; }

/* ============================================================
   Focus Areas Orbit (focus_orbit) — wheel + legend cards
   ============================================================ */
.mr2-forbit {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, #ffffff, rgb(248, 250, 252));
}
.mr2-forbit__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-forbit__head {
	text-align: center;
	margin-bottom: 2.5rem;
}
.mr2-forbit__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-forbit__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-forbit__orbit {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}
/* The orbit partial sizes itself; give it room on large screens. */
.mr2-forbit__orbit > div {
	width: 100%;
	max-width: 36rem;
}
.mr2-forbit__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.25rem;
}
@media (min-width: 640px) {
	.mr2-forbit__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.mr2-forbit__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.mr2-forbit-card {
	display: block;
	padding: 1.5rem 1.5rem 1.4rem;
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.mr2-forbit-card:hover {
	transform: translateY(-3px);
	border-color: rgb(147, 197, 253);
	box-shadow: 0 16px 36px -18px rgba(37, 99, 235, 0.35);
}
.mr2-forbit-card__top {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.6rem;
}
.mr2-forbit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, rgb(37, 99, 235), rgb(29, 78, 216));
	color: #ffffff;
	box-shadow: 0 6px 14px -6px rgba(37, 99, 235, 0.55);
}
.mr2-forbit-card__icon svg {
	width: 1.25rem;
	height: 1.25rem;
}
.mr2-forbit-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
	line-height: 1.3;
}
.mr2-forbit-card__detail {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.55;
	color: rgb(100, 116, 139);
}

/* Focus orbit — blue band variant (full-width dark blue, white text). */
.mr2-forbit--blue {
	background: linear-gradient(135deg, rgb(30, 58, 138) 0%, rgb(29, 78, 216) 55%, rgb(37, 99, 235) 100%);
}
.mr2-forbit--blue .mr2-forbit__title {
	color: #ffffff;
}
.mr2-forbit--blue .mr2-forbit__sub {
	color: rgb(191, 219, 254);
}
.mr2-forbit--blue .mr2-forbit-card {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 10px 30px -18px rgba(2, 6, 23, 0.5);
	backdrop-filter: blur(4px);
}
.mr2-forbit--blue a.mr2-forbit-card:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.45);
	box-shadow: 0 16px 36px -16px rgba(2, 6, 23, 0.6);
}
.mr2-forbit--blue .mr2-forbit-card__title {
	color: #ffffff;
}
.mr2-forbit--blue .mr2-forbit-card__detail {
	color: rgb(191, 219, 254);
}
.mr2-forbit--blue .mr2-forbit-card__icon {
	background: #ffffff;
	color: rgb(29, 78, 216);
	box-shadow: 0 6px 14px -6px rgba(2, 6, 23, 0.5);
}
/* Corner decorations of the orbit card read better in white on the band. */
.mr2-forbit--blue .border-blue-400\/40 {
	border-color: rgba(255, 255, 255, 0.4);
}

/* Blue band: the orbit wheel itself goes frosted-on-blue with inverted nodes. */
.mr2-forbit--blue .mr2-forbit__orbit .bg-white {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(4px);
	box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.45);
}
.mr2-forbit--blue .mr2-orbit-disc {
	background: #ffffff;
	box-shadow: 0 10px 15px -3px rgba(2, 6, 23, 0.4);
}
.mr2-forbit--blue .mr2-orbit-disc svg {
	color: rgb(29, 78, 216);
}
.mr2-forbit--blue .mr2-orbit-label {
	color: #ffffff;
}
.mr2-forbit--blue .mr2-orbit > svg circle {
	stroke: #ffffff;
	opacity: 0.3;
}
.mr2-forbit--blue .mr2-orbit > svg line {
	stroke: #ffffff;
	opacity: 0.18;
}
/* Center logo disc: stronger white ring so it separates from the band. */
.mr2-forbit--blue .mr2-orbit-center > .relative {
	border-color: rgba(255, 255, 255, 0.6);
}

/* Focus orbit v2: frameless wheel with side item lists (like the source graphic). */
/* Kill the card frame, border, and corner accents around the wheel. */
.mr2-forbit .mr2-forbit__orbit [class*="rounded-tl-3xl"],
.mr2-forbit .mr2-forbit__orbit [class*="rounded-br-3xl"] {
	display: none;
}
.mr2-forbit .mr2-forbit__orbit .rounded-2xl,
.mr2-forbit--blue .mr2-forbit__orbit .bg-white {
	background: transparent;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
	overflow: visible;
}

/* Three-column layout: list | wheel | list (lists stack alone below lg). */
.mr2-forbit__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.75rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.mr2-forbit__layout {
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		gap: 1rem;
	}
}
.mr2-forbit__col {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}
@media (min-width: 1024px) {
	.mr2-forbit__col--left {
		text-align: right;
	}
	.mr2-forbit__col--left .mr2-forbit-item__detail {
		margin-left: auto;
	}
}
.mr2-forbit-item {
	display: block;
	text-decoration: none;
}
.mr2-forbit-item__title {
	margin: 0 0 0.3rem;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.25;
	color: rgb(15, 23, 42);
	transition: color 0.2s ease;
}
.mr2-forbit-item__detail {
	margin: 0;
	max-width: 22rem;
	font-size: 0.8rem;
	line-height: 1.55;
	color: rgb(100, 116, 139);
}
a.mr2-forbit-item:hover .mr2-forbit-item__title {
	color: rgb(37, 99, 235);
}
/* Blue band colors for the side lists. */
.mr2-forbit--blue .mr2-forbit-item__title {
	color: #ffffff;
}
.mr2-forbit--blue .mr2-forbit-item__detail {
	color: rgb(191, 219, 254);
}
.mr2-forbit--blue a.mr2-forbit-item:hover .mr2-forbit-item__title {
	color: rgb(147, 197, 253);
}

/* Focus orbit: more breathing room around the wheel. */
.mr2-forbit__orbit {
	margin: 0.75rem 0;
}
@media (min-width: 1024px) {
	.mr2-forbit__layout {
		gap: 3.5rem;
	}
	.mr2-forbit__orbit {
		padding: 0 0.75rem;
		margin: 0;
	}
}

/* ============================================================
   Versus cards (versus_cards) — RFP vs TBaaS paired comparison
   ============================================================ */
.mr2-versus {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff);
}
.mr2-versus__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-versus__head {
	text-align: center;
	margin-bottom: 3rem;
}
.mr2-versus__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-versus__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-versus__cols {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.mr2-versus__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
	}
}
.mr2-versus-card {
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-top: 4px solid rgb(148, 163, 184);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
	padding: 1.75rem 1.75rem 0.75rem;
}
.mr2-versus-card--new {
	border-top-color: rgb(37, 99, 235);
}
.mr2-versus-card__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.1rem;
}
.mr2-versus-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 9999px;
	background: rgb(241, 245, 249);
	color: rgb(100, 116, 139);
}
.mr2-versus-card--new .mr2-versus-card__badge {
	background: rgb(37, 99, 235);
	color: #ffffff;
}
.mr2-versus-card__badge svg {
	width: 1.1rem;
	height: 1.1rem;
}
.mr2-versus-card__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	color: rgb(15, 23, 42);
}
.mr2-versus-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mr2-versus-card__item {
	display: flex;
	gap: 0.75rem;
	padding: 1rem 0;
	border-top: 1px solid rgb(241, 245, 249);
}
.mr2-versus-card__dot {
	flex-shrink: 0;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	margin-top: 0.45rem;
	background: rgb(148, 163, 184);
}
.mr2-versus-card--new .mr2-versus-card__dot {
	background: rgb(37, 99, 235);
}
.mr2-versus-card__text {
	margin: 0 0 0.2rem;
	font-size: 0.98rem;
	font-weight: 600;
	color: rgb(15, 23, 42);
	line-height: 1.4;
}
.mr2-versus-card__stat {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.45;
	color: rgb(220, 38, 38);
}
.mr2-versus-card--new .mr2-versus-card__stat {
	color: rgb(22, 163, 74);
}
.mr2-versus-card__tag {
	font-size: 0.7rem;
	font-weight: 500;
	color: rgb(148, 163, 184);
	margin-left: 0.15rem;
}

/* ============================================================
   Events calendar (events_calendar) + 2-column events list
   ============================================================ */
.mr2-events__grid--2 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
	.mr2-events__grid--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

.mr2-ecal {
	padding: 4rem 1.5rem 3rem;
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff);
}
.mr2-ecal__inner {
	max-width: 72rem;
	margin: 0 auto;
}
.mr2-ecal__head {
	text-align: center;
	margin-bottom: 2rem;
}
.mr2-ecal__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-ecal__sub {
	max-width: 40rem;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgb(71, 85, 105);
}
.mr2-ecal__widget {
	background: #ffffff;
	border: 1px solid rgb(226, 232, 240);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.18);
	overflow: hidden;
}
.mr2-ecal__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgb(226, 232, 240);
	background: linear-gradient(90deg, rgb(30, 58, 138), rgb(37, 99, 235));
}
.mr2-ecal__month {
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.01em;
}
.mr2-ecal__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border: 0;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	cursor: pointer;
	transition: background 0.2s ease;
}
.mr2-ecal__nav:hover {
	background: rgba(255, 255, 255, 0.3);
}
.mr2-ecal__nav svg {
	width: 1.1rem;
	height: 1.1rem;
}
.mr2-ecal__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}
.mr2-ecal__dow {
	padding: 0.6rem 0.5rem;
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgb(100, 116, 139);
	background: rgb(248, 250, 252);
	border-bottom: 1px solid rgb(226, 232, 240);
}
.mr2-ecal__cell {
	min-height: 6.5rem;
	padding: 0.4rem;
	border-bottom: 1px solid rgb(241, 245, 249);
	border-right: 1px solid rgb(241, 245, 249);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.mr2-ecal__cell:nth-child(7n) {
	border-right: 0;
}
.mr2-ecal__cell.is-other {
	background: rgb(248, 250, 252);
}
.mr2-ecal__cell.is-today {
	background: rgb(239, 246, 255);
}
.mr2-ecal__cell.is-today .mr2-ecal__daynum {
	background: rgb(37, 99, 235);
	color: #ffffff;
}
.mr2-ecal__daynum {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 9999px;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgb(71, 85, 105);
}
.mr2-ecal__chip {
	display: block;
	padding: 0.3rem 0.45rem;
	border-radius: 0.45rem;
	background: rgb(37, 99, 235);
	color: #ffffff;
	text-decoration: none;
	line-height: 1.25;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mr2-ecal__chip:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px -6px rgba(37, 99, 235, 0.6);
}
.mr2-ecal__chip.is-past {
	background: rgb(226, 232, 240);
	color: rgb(71, 85, 105);
}
.mr2-ecal__chip-title {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.mr2-ecal__chip-time {
	display: block;
	font-size: 0.65rem;
	opacity: 0.85;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 640px) {
	.mr2-ecal__cell {
		min-height: 4.2rem;
		padding: 0.25rem;
	}
	.mr2-ecal__chip-time {
		display: none;
	}
	.mr2-ecal__chip-title {
		-webkit-line-clamp: 3;
		font-size: 0.62rem;
	}
}

/* "Registration opens soon" pill on upcoming events without a link yet. */
.mr2-event__status--soon {
	background: rgb(239, 246, 255);
	color: rgb(37, 99, 235);
	border: 1px solid rgb(191, 219, 254);
}

/* ============================================================
   Pillar deep dive (pillar_detail) + process-steps footnote
   ============================================================ */
.mr2-pillard {
	padding: 5rem 1.5rem;
}
.mr2-pillard:nth-of-type(odd) {
	background: linear-gradient(180deg, rgb(248, 250, 252), #ffffff);
}
.mr2-pillard__inner {
	max-width: 50rem;
	margin: 0 auto;
}
.mr2-pillard__head {
	text-align: center;
	margin-bottom: 2rem;
}
.mr2-pillard__eyebrow {
	display: inline-block;
	padding: 0.3rem 1rem;
	border-radius: 9999px;
	background: rgb(239, 246, 255);
	border: 1px solid rgb(191, 219, 254);
	color: rgb(37, 99, 235);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}
.mr2-pillard__title {
	margin: 0;
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: rgb(15, 23, 42);
}
.mr2-pillard__body p {
	margin: 0 0 1.1rem;
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgb(51, 65, 85);
}
.mr2-pillard__bheading {
	margin: 1.75rem 0 1rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: rgb(15, 23, 42);
}
.mr2-pillard__bullets {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.65rem 2rem;
}
@media (min-width: 640px) {
	.mr2-pillard__bullets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.mr2-pillard__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.5;
	color: rgb(51, 65, 85);
}
.mr2-pillard__check {
	display: inline-flex;
	flex-shrink: 0;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.15rem;
	color: rgb(37, 99, 235);
}
.mr2-pillard__check svg {
	width: 100%;
	height: 100%;
}
.mr2-pillard__outro {
	margin: 1.5rem 0 0;
	padding: 1.1rem 1.4rem;
	border-left: 4px solid rgb(37, 99, 235);
	border-radius: 0 0.75rem 0.75rem 0;
	background: rgb(239, 246, 255);
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgb(30, 58, 138);
}
.mr2-steps__foot {
	max-width: 44rem;
	margin: 2.5rem auto 0;
	padding: 1.1rem 1.4rem;
	border-left: 4px solid rgb(37, 99, 235);
	border-radius: 0 0.75rem 0.75rem 0;
	background: rgb(239, 246, 255);
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgb(30, 58, 138);
}
