:root {
	--mpx-ink: #102a43;
	--mpx-ink-2: #243b53;
	--mpx-muted: #5f7185;
	--mpx-blue: #0170b9;
	--mpx-sky: #21a3ff;
	--mpx-teal: #16c7b7;
	--mpx-amber: #f3a81b;
	--mpx-coral: #d96d56;
	--mpx-cream: #f8f5ee;
	--mpx-mist: #eef7f8;
	--mpx-white: #ffffff;
	--mpx-border: #d8e2eb;
	--mpx-shadow: 0 18px 48px rgba(16, 42, 67, 0.13);
	--mpx-radius: 8px;
	--mpx-container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--mpx-ink);
	background: var(--mpx-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--mpx-blue);
}

p {
	margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 1rem;
	color: var(--mpx-ink);
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 5.4rem);
	max-width: 11ch;
}

h2 {
	font-size: clamp(2rem, 3vw, 3.5rem);
	max-width: 13ch;
}

h3 {
	font-size: 1.25rem;
	line-height: 1.25;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -5rem;
	z-index: 100;
	padding: 0.75rem 1rem;
	border-radius: var(--mpx-radius);
	background: var(--mpx-ink);
	color: var(--mpx-white);
}

.skip-link:focus {
	top: 1rem;
}

.container {
	width: min(100% - 2rem, var(--mpx-container));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(216, 226, 235, 0.9);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem;
	align-items: center;
	width: min(100% - 2rem, var(--mpx-container));
	min-height: 78px;
	margin-inline: auto;
}

.brand {
	display: inline-flex;
	gap: 0.75rem;
	align-items: center;
	min-width: 0;
	color: var(--mpx-ink);
}

.brand img {
	width: 52px;
	height: 52px;
	border-radius: 8px;
	object-fit: contain;
	background: var(--mpx-white);
}

.brand .custom-logo {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.brand strong,
.site-footer__brand strong {
	display: block;
	font-size: 1rem;
	line-height: 1.1;
}

.brand small {
	display: block;
	max-width: 250px;
	color: var(--mpx-muted);
	font-size: 0.78rem;
	line-height: 1.25;
}

.primary-nav__list,
.footer-nav {
	display: flex;
	gap: 1.3rem;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	color: var(--mpx-ink-2);
	font-size: 0.95rem;
	font-weight: 650;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--mpx-blue);
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: 0.4rem;
	border: 1px solid var(--mpx-border);
	border-radius: var(--mpx-radius);
	background: var(--mpx-white);
	color: var(--mpx-ink);
	padding: 0.55rem 0.7rem;
	font: inherit;
	font-size: 0.86rem;
}

.nav-toggle span {
	display: block;
	width: 14px;
	height: 2px;
	background: currentColor;
}

.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.82rem 1.1rem;
	border: 1px solid var(--mpx-blue);
	border-radius: var(--mpx-radius);
	background: var(--mpx-blue);
	color: var(--mpx-white);
	font-weight: 750;
	line-height: 1.1;
	text-align: center;
	box-shadow: 0 10px 22px rgba(1, 112, 185, 0.2);
}

.button:hover {
	transform: translateY(-1px);
	background: #075f99;
	color: var(--mpx-white);
}

.button--small {
	min-height: 40px;
	padding: 0.64rem 0.85rem;
	font-size: 0.88rem;
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.12);
	color: var(--mpx-white);
	box-shadow: none;
}

.button--ghost:hover,
.button--light {
	border-color: var(--mpx-white);
	background: var(--mpx-white);
	color: var(--mpx-ink);
}

.button--ghost-dark {
	border-color: var(--mpx-border);
	background: var(--mpx-white);
	color: var(--mpx-ink);
	box-shadow: none;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--mpx-blue);
	font-weight: 750;
}

.text-link::after {
	content: "";
	width: 1.4rem;
	height: 1px;
	background: currentColor;
}

.hero {
	position: relative;
	min-height: 720px;
	display: grid;
	align-items: end;
	isolation: isolate;
	background-image: var(--hero-image);
	background-size: cover;
	background-position: center;
	color: var(--mpx-white);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(8, 23, 38, 0.86) 0%, rgba(8, 23, 38, 0.55) 54%, rgba(8, 23, 38, 0.22) 100%),
		linear-gradient(0deg, rgba(8, 23, 38, 0.74) 0%, rgba(8, 23, 38, 0) 42%);
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 420px);
	gap: 2rem;
	align-items: end;
	padding: 8rem 0 4rem;
}

.hero h1,
.hero h2,
.hero h3 {
	color: var(--mpx-white);
}

.hero__lead {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.hero__panel {
	display: grid;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--mpx-radius);
	background: rgba(255, 255, 255, 0.13);
	backdrop-filter: blur(14px);
}

.stat {
	padding: 1rem;
	border-radius: var(--mpx-radius);
	background: rgba(255, 255, 255, 0.16);
}

.stat strong {
	display: block;
	color: var(--mpx-white);
	font-size: 1.4rem;
	line-height: 1.1;
}

.stat span {
	display: block;
	margin-top: 0.35rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	line-height: 1.35;
}

.eyebrow {
	margin: 0 0 0.85rem;
	color: var(--mpx-coral);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero .eyebrow,
.section--ink .eyebrow,
.section--blue .eyebrow {
	color: var(--mpx-amber);
}

.section {
	padding: 5.5rem 0;
}

.section--cream {
	background: var(--mpx-cream);
}

.section--ink {
	background: #102a43;
	color: rgba(255, 255, 255, 0.86);
}

.section--ink h2,
.section--ink h3,
.section--blue h2,
.section--blue h3 {
	color: var(--mpx-white);
}

.section--blue {
	background: #0b5f8f;
	color: rgba(255, 255, 255, 0.9);
}

.section--cta {
	background: var(--mpx-mist);
}

.section-head {
	margin-bottom: 2rem;
}

.section-head h2 {
	max-width: 720px;
}

.section-head--row {
	display: flex;
	gap: 1rem;
	align-items: end;
	justify-content: space-between;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}

.split--center {
	align-items: center;
}

.body-copy {
	color: var(--mpx-ink-2);
	font-size: 1.08rem;
}

.section--blue .body-copy,
.section--ink .body-copy {
	color: rgba(255, 255, 255, 0.86);
}

.feature-grid,
.content-grid,
.steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.feature-card,
.content-card,
.step-card,
.quote-block,
.info-panel,
.sidebar-panel,
.cta-panel {
	border: 1px solid var(--mpx-border);
	border-radius: var(--mpx-radius);
	background: var(--mpx-white);
	box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.feature-card,
.content-card,
.step-card {
	padding: 1.25rem;
}

.feature-card__marker {
	display: block;
	width: 2.4rem;
	height: 0.34rem;
	margin-bottom: 1.1rem;
	border-radius: 999px;
	background: var(--mpx-teal);
}

.feature-card:nth-child(2) .feature-card__marker {
	background: var(--mpx-amber);
}

.feature-card:nth-child(3) .feature-card__marker {
	background: var(--mpx-coral);
}

.feature-card p,
.content-card p,
.step-card p {
	color: var(--mpx-muted);
}

.resource-meta {
	margin-top: -0.35rem;
	color: var(--mpx-ink-2) !important;
	font-size: 0.9rem;
	font-weight: 700;
}

.content-card h2,
.content-card h3,
.step-card h2,
.step-card h3 {
	font-size: 1.25rem;
	line-height: 1.25;
}

.media-block {
	overflow: hidden;
	border-radius: var(--mpx-radius);
	box-shadow: var(--mpx-shadow);
}

.media-block img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.check-list {
	display: grid;
	gap: 0.7rem;
	margin: 1.4rem 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.7rem;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 2px;
	background: var(--mpx-teal);
}

.step-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	margin-bottom: 1rem;
	border-radius: var(--mpx-radius);
	background: var(--mpx-mist);
	color: var(--mpx-blue);
	font-weight: 850;
}

.tag {
	display: inline-flex;
	margin: 0 0 0.8rem;
	padding: 0.25rem 0.55rem;
	border: 1px solid #d9edf2;
	border-radius: 999px;
	background: #f3fbfc;
	color: var(--mpx-blue);
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.content-card__image {
	display: block;
	overflow: hidden;
	margin: -1.25rem -1.25rem 1.25rem;
	border-radius: var(--mpx-radius) var(--mpx-radius) 0 0;
}

.content-card__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.quote-block {
	align-self: stretch;
	padding: 2rem;
	background: var(--mpx-white);
}

.quote-block p {
	color: var(--mpx-ink);
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 750;
	line-height: 1.2;
}

.quote-block span {
	color: var(--mpx-muted);
	font-weight: 700;
}

.faq-list {
	display: grid;
	gap: 0.75rem;
}

.faq-list details {
	border: 1px solid var(--mpx-border);
	border-radius: var(--mpx-radius);
	background: var(--mpx-white);
}

.faq-list summary {
	cursor: pointer;
	padding: 1rem 1.15rem;
	color: var(--mpx-ink);
	font-weight: 800;
}

.faq-list details p {
	margin: 0;
	padding: 0 1.15rem 1.15rem;
	color: var(--mpx-muted);
}

.cta-panel {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
	padding: clamp(1.5rem, 4vw, 3rem);
	background: var(--mpx-white);
}

.cta-panel h2 {
	max-width: 660px;
}

.page-hero {
	padding: 6rem 0 3rem;
	background: var(--mpx-mist);
}

.page-hero p {
	max-width: 720px;
	color: var(--mpx-muted);
	font-size: 1.08rem;
}

.page-hero--university {
	background: var(--mpx-cream);
}

.prose {
	max-width: 790px;
}

.prose > * + * {
	margin-top: 1rem;
}

.prose a {
	color: var(--mpx-blue);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.featured-image {
	width: 100%;
	margin-bottom: 2rem;
	border-radius: var(--mpx-radius);
}

.info-panel,
.sidebar-panel {
	padding: 1.25rem;
}

.info-panel p,
.sidebar-panel p {
	display: grid;
	gap: 0.25rem;
	margin: 0 0 1rem;
	color: var(--mpx-muted);
}

.info-panel strong,
.sidebar-panel strong {
	color: var(--mpx-ink);
}

.sidebar-panel h2 {
	margin: 1.4rem 0 0.55rem;
	font-size: 1.05rem;
}

.sidebar-panel h2:first-child {
	margin-top: 0;
}

.notice-box {
	padding: 1rem;
	border: 1px solid var(--mpx-border);
	border-radius: var(--mpx-radius);
	background: var(--mpx-cream);
	color: var(--mpx-ink-2);
}

.resource-filters {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
	gap: 0.85rem;
	align-items: end;
	margin-bottom: 1.5rem;
	padding: 1rem;
	border: 1px solid var(--mpx-border);
	border-radius: var(--mpx-radius);
	background: var(--mpx-white);
	box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.resource-filters label {
	display: grid;
	gap: 0.35rem;
	color: var(--mpx-ink);
	font-size: 0.86rem;
	font-weight: 800;
}

.resource-filters select {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--mpx-border);
	border-radius: var(--mpx-radius);
	background: var(--mpx-white);
	color: var(--mpx-ink);
	font: inherit;
}

.child-resource-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.site-footer {
	border-top: 1px solid var(--mpx-border);
	background: #0c2033;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
	width: min(100% - 2rem, var(--mpx-container));
	margin-inline: auto;
	padding: 3rem 0 2rem;
}

.site-footer__brand {
	display: flex;
	gap: 1rem;
	max-width: 560px;
}

.site-footer__brand img {
	width: 58px;
	height: 58px;
	border-radius: var(--mpx-radius);
	background: var(--mpx-white);
}

.site-footer__brand strong,
.site-footer h2 {
	color: var(--mpx-white);
}

.site-footer__columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
	gap: 2rem;
	margin-top: 2rem;
}

.site-footer h2 {
	margin-bottom: 0.8rem;
	font-size: 1rem;
}

.footer-nav {
	display: grid;
	justify-content: start;
	gap: 0.45rem;
}

.site-footer a:hover {
	color: var(--mpx-sky);
}

.site-footer__bottom {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.85rem;
}

.site-footer__bottom p {
	max-width: 780px;
	margin: 0;
}

@media (max-width: 980px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.nav-toggle {
		display: inline-grid;
	}

	.primary-nav {
		grid-column: 1 / -1;
		display: none;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav__list {
		display: grid;
		justify-content: stretch;
		padding: 0.5rem 0 1rem;
	}

	.primary-nav a {
		display: block;
		padding: 0.7rem 0;
	}

	.site-header__cta {
		display: none;
	}

	.hero__inner,
	.split,
	.site-footer__columns {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: 680px;
	}

	.hero__inner {
		padding-top: 7rem;
	}

	.feature-grid,
	.content-grid,
	.steps,
	.resource-filters,
	.child-resource-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 2rem;
	}

	.section {
		padding: 4rem 0;
	}

	.hero {
		min-height: 760px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding-bottom: 2rem;
	}

	.hero__actions,
	.cta-panel,
	.section-head--row,
	.site-footer__bottom {
		align-items: stretch;
		flex-direction: column;
	}

	.hero__actions .button,
	.cta-panel .button {
		width: 100%;
	}

	.feature-grid,
	.content-grid,
	.steps,
	.resource-filters,
	.child-resource-grid {
		grid-template-columns: 1fr;
	}

	.brand small {
		display: none;
	}
}
