.mbnh {
	--mbnh-midnight: #050f1d;
	--mbnh-navy: #0b284a;
	--mbnh-gold: #c79a45;
	--mbnh-gold-light: #e5c477;
	--mbnh-sand: #f4f0e9;
	--mbnh-ink: #101923;
	--mbnh-muted: #63707c;
	--mbnh-line: rgba(7, 31, 57, 0.14);
	--mbnh-shell: min(1180px, calc(100% - 48px));
	background: #fff;
	color: var(--mbnh-ink);
	font-family: "Manrope", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	overflow: hidden;
}

.mbnh *,
.mbnh *::before,
.mbnh *::after {
	box-sizing: border-box;
}

.mbnh h1,
.mbnh h2,
.mbnh h3,
.mbnh p {
	margin-top: 0;
}

.mbnh h1,
.mbnh h2,
.mbnh h3 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 600;
	line-height: 1.03;
	letter-spacing: -0.025em;
}

.mbnh h1 {
	font-size: clamp(3.8rem, 7.3vw, 7rem);
}

.mbnh h2 {
	font-size: clamp(2.7rem, 5vw, 5rem);
}

.mbnh h3 {
	font-size: clamp(1.65rem, 2vw, 2.15rem);
}

.mbnh a {
	text-decoration: none;
}

.mbnh-shell {
	width: var(--mbnh-shell);
	margin-inline: auto;
}

.mbnh-eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 22px;
	color: var(--mbnh-gold-light);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.mbnh-eyebrow::before {
	width: 38px;
	height: 1px;
	background: currentColor;
	content: "";
}

.mbnh-eyebrow--dark {
	color: #916a2b;
}

.mbnh-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 13px 25px;
	border: 1px solid transparent;
	color: inherit;
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mbnh-button:hover,
.mbnh-button:focus-visible {
	transform: translateY(-2px);
}

.mbnh-button--gold {
	background: linear-gradient(135deg, var(--mbnh-gold-light), var(--mbnh-gold));
	box-shadow: 0 12px 35px rgba(199, 154, 69, 0.2);
	color: var(--mbnh-midnight);
}

.mbnh-button--gold:hover,
.mbnh-button--gold:focus-visible {
	background: #fff;
	color: var(--mbnh-midnight);
}

.mbnh-button--ghost {
	border-color: rgba(255, 255, 255, 0.32);
	color: #fff;
}

.mbnh-button--ghost:hover,
.mbnh-button--ghost:focus-visible {
	border-color: var(--mbnh-gold-light);
	color: var(--mbnh-gold-light);
}

.mbnh-hero {
	position: relative;
	display: flex;
	min-height: 820px;
	align-items: center;
	overflow: hidden;
	background-color: var(--mbnh-midnight);
	background-image: var(--mbnh-hero);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.mbnh-hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 13, 25, 0.65), rgba(4, 13, 25, 0.18) 55%, transparent 78%),
		linear-gradient(0deg, rgba(4, 13, 25, 0.42), transparent 38%);
	content: "";
}

.mbnh-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: inherit;
	align-items: center;
}

.mbnh-hero__copy {
	width: min(650px, 58%);
	padding-top: 80px;
}

.mbnh-hero h1 {
	max-width: 770px;
	color: #fff;
	text-wrap: balance;
}

.mbnh-lead {
	max-width: 600px;
	margin: 28px 0 38px;
	color: rgba(255, 255, 255, 0.73);
	font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.mbnh-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.mbnh-signature {
	position: absolute;
	right: 0;
	bottom: 48px;
	display: flex;
	align-items: center;
	gap: 11px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.mbnh-signature i {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--mbnh-gold);
}

.mbnh-strip {
	border-bottom: 1px solid var(--mbnh-line);
	background: #fff;
}

.mbnh-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.mbnh-strip__grid > div {
	display: flex;
	min-height: 105px;
	align-items: center;
	gap: 18px;
	padding: 22px 34px;
	border-right: 1px solid var(--mbnh-line);
}

.mbnh-strip__grid > div:first-child {
	border-left: 1px solid var(--mbnh-line);
}

.mbnh-strip strong {
	color: var(--mbnh-gold);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.35rem;
}

.mbnh-strip span {
	color: var(--mbnh-navy);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.095em;
	text-transform: uppercase;
}

.mbnh-section {
	padding: 125px 0;
}

.mbnh-split {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(70px, 10vw, 145px);
	align-items: start;
}

.mbnh-about h2,
.mbnh-ecosystem h2,
.mbnh-process h2 {
	color: var(--mbnh-midnight);
}

.mbnh-prose {
	color: var(--mbnh-muted);
}

.mbnh-large {
	color: var(--mbnh-navy);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(1.55rem, 2.1vw, 2.05rem);
	line-height: 1.42;
}

.mbnh-solutions {
	position: relative;
	background:
		radial-gradient(circle at 82% 20%, rgba(20, 62, 111, 0.3), transparent 34%),
		linear-gradient(145deg, var(--mbnh-midnight), #071a30);
	color: #fff;
}

.mbnh-heading {
	max-width: 800px;
	margin-bottom: 58px;
}

.mbnh-heading h2 {
	color: inherit;
}

.mbnh-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.mbnh-cards article {
	position: relative;
	min-height: 430px;
	padding: 42px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	background: rgba(255, 255, 255, 0.018);
}

.mbnh-cards article > span {
	position: absolute;
	top: 28px;
	right: 28px;
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.65rem;
}

.mbnh-cards b {
	display: grid;
	width: 76px;
	height: 76px;
	margin: 30px 0 70px;
	border: 1px solid rgba(229, 196, 119, 0.6);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	color: var(--mbnh-gold-light);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2.3rem;
	font-weight: 600;
	place-items: center;
}

.mbnh-cards h3 {
	color: #fff;
}

.mbnh-cards p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.62);
}

.mbnh-ecosystem {
	background: var(--mbnh-sand);
}

.mbnh-ecosystem__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr;
	gap: 20px;
}

.mbnh-ecosystem__grid article {
	display: flex;
	min-height: 390px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px;
	border: 1px solid var(--mbnh-line);
	background: rgba(255, 255, 255, 0.66);
}

.mbnh-ecosystem__grid article.is-featured {
	background: var(--mbnh-navy);
	color: #fff;
}

.mbnh-ecosystem__grid small {
	margin-bottom: auto;
	color: #916a2b;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.mbnh-ecosystem__grid .is-featured small {
	color: var(--mbnh-gold-light);
}

.mbnh-ecosystem__grid h3 {
	color: var(--mbnh-midnight);
	font-family: "Manrope", Arial, sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.14em;
}

.mbnh-ecosystem__grid .is-featured h3 {
	color: var(--mbnh-gold-light);
}

.mbnh-ecosystem__grid p {
	margin-bottom: 0;
	color: var(--mbnh-muted);
}

.mbnh-ecosystem__grid .is-featured p {
	color: rgba(255, 255, 255, 0.64);
}

.mbnh-process ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mbnh-process li {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 22px;
	padding: 28px 0;
	border-bottom: 1px solid var(--mbnh-line);
}

.mbnh-process li:first-child {
	border-top: 1px solid var(--mbnh-line);
}

.mbnh-process li > span {
	color: var(--mbnh-gold);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.4rem;
}

.mbnh-process h3 {
	margin-bottom: 7px;
	color: var(--mbnh-navy);
}

.mbnh-process li p {
	margin-bottom: 0;
	color: var(--mbnh-muted);
}

.mbnh-contact {
	position: relative;
	padding: 125px 0;
	background:
		linear-gradient(90deg, rgba(5, 15, 29, 0.9), rgba(5, 15, 29, 0.82)),
		url("mbn-hero.png") center / cover;
	color: #fff;
	text-align: center;
}

.mbnh-contact .mbnh-shell {
	max-width: 850px;
}

.mbnh-contact .mbnh-eyebrow {
	justify-content: center;
}

.mbnh-contact h2 {
	color: #fff;
}

.mbnh-contact > .mbnh-shell > p:not(.mbnh-eyebrow) {
	max-width: 630px;
	margin: 24px auto 34px;
	color: rgba(255, 255, 255, 0.67);
}

.mbnh [data-mbnh-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.mbnh [data-mbnh-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 950px) {
	.mbnh-hero {
		min-height: 750px;
		background-position: 58% center;
	}

	.mbnh-hero__copy {
		width: 66%;
	}

	.mbnh-split {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.mbnh-ecosystem__grid {
		grid-template-columns: 1fr 1fr;
	}

	.mbnh-ecosystem__grid .is-featured {
		grid-column: span 2;
	}
}

@media (max-width: 720px) {
	.mbnh {
		--mbnh-shell: min(100% - 34px, 640px);
	}

	.mbnh-hero {
		min-height: 700px;
		background-position: 62% center;
	}

	.mbnh-hero::before {
		background: linear-gradient(90deg, rgba(4, 13, 25, 0.88), rgba(4, 13, 25, 0.34));
	}

	.mbnh-hero__copy {
		width: 82%;
	}

	.mbnh-signature {
		display: none;
	}

	.mbnh-strip__grid,
	.mbnh-cards {
		grid-template-columns: 1fr;
	}

	.mbnh-strip__grid > div,
	.mbnh-strip__grid > div:first-child {
		min-height: 78px;
		border-left: 1px solid var(--mbnh-line);
		border-bottom: 1px solid var(--mbnh-line);
	}

	.mbnh-section {
		padding: 90px 0;
	}

	.mbnh-cards article {
		min-height: 340px;
	}
}

@media (max-width: 520px) {
	.mbnh {
		--mbnh-shell: calc(100% - 28px);
	}

	.mbnh-hero {
		min-height: 680px;
	}

	.mbnh-hero__copy {
		width: 100%;
		padding-top: 55px;
	}

	.mbnh-hero h1 {
		font-size: clamp(3.1rem, 16vw, 4.4rem);
	}

	.mbnh-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.mbnh-ecosystem__grid {
		grid-template-columns: 1fr;
	}

	.mbnh-ecosystem__grid .is-featured {
		grid-column: auto;
	}

	.mbnh-ecosystem__grid article {
		min-height: 340px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mbnh *,
	.mbnh *::before,
	.mbnh *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.mbnh [data-mbnh-reveal] {
		opacity: 1;
		transform: none;
	}
}

