:root {
	--midnight: #050f1d;
	--navy-950: #061426;
	--navy-900: #081a31;
	--navy-800: #0c2c53;
	--navy-700: #153e6f;
	--gold: #c79a45;
	--gold-light: #e8c77c;
	--gold-dark: #8d6728;
	--sand: #ede7dc;
	--sand-light: #f6f2eb;
	--ink: #111923;
	--muted: #64707c;
	--white: #fff;
	--line-light: rgba(255, 255, 255, 0.13);
	--line-dark: rgba(10, 33, 60, 0.14);
	--shadow: 0 30px 80px rgba(3, 14, 28, 0.15);
	--shell: min(1180px, calc(100% - 48px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: "Manrope", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

p {
	margin: 0 0 1.25rem;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(3.75rem, 7.2vw, 7rem);
}

h2 {
	font-size: clamp(2.75rem, 5vw, 5.1rem);
}

h3 {
	font-size: clamp(1.7rem, 2vw, 2.2rem);
}

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

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

.skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	background: var(--white);
	color: var(--navy-950);
	transform: translateY(-150%);
	transition: transform 0.2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 22px;
	color: var(--gold-light);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.21em;
	line-height: 1.4;
	text-transform: uppercase;
}

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

.eyebrow--dark {
	color: var(--gold-dark);
}

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

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

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

.button--gold:hover,
.button--gold:focus-visible {
	background: var(--white);
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.33);
	color: var(--white);
}

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

.button--navy {
	background: var(--navy-900);
	color: var(--white);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--gold);
	color: var(--navy-900);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.text-link span {
	font-size: 1.15rem;
	transition: transform 0.2s ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

/* Header */
.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	border-bottom: 1px solid transparent;
	color: var(--white);
	transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
	border-bottom-color: var(--line-light);
	background: rgba(5, 15, 29, 0.92);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 92px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	color: var(--white);
}

.brand__monogram {
	padding-right: 15px;
	border-right: 1px solid rgba(232, 199, 124, 0.55);
	color: var(--gold-light);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1;
}

.brand__descriptor {
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.45;
	text-transform: uppercase;
}

.brand .custom-logo-link {
	display: block;
}

.brand .custom-logo {
	width: auto;
	max-height: 58px;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 38px;
}

.primary-nav .menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav .menu a {
	position: relative;
	padding-block: 12px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.73rem;
	font-weight: 600;
	letter-spacing: 0.065em;
	text-transform: uppercase;
}

.primary-nav .menu a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 1px;
	background: var(--gold);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}

.primary-nav .menu a:hover::after,
.primary-nav .menu a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-cta {
	padding: 12px 18px;
	border: 1px solid rgba(232, 199, 124, 0.55);
	color: var(--gold-light);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 1px;
	margin: 6px 0;
	background: currentColor;
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	min-height: 820px;
	align-items: center;
	overflow: hidden;
	background-color: var(--navy-950);
	background-image: var(--hero-image);
	background-position: center center;
	background-size: cover;
	color: var(--white);
}

.hero::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 13, 25, 0.62) 0%, rgba(4, 13, 25, 0.24) 47%, rgba(4, 13, 25, 0) 77%),
		linear-gradient(0deg, rgba(4, 13, 25, 0.36), transparent 34%);
	content: "";
}

.hero__overlay {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: radial-gradient(circle at 29% 40%, rgba(18, 64, 112, 0.16), transparent 36%);
}

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

.hero__content {
	width: min(660px, 58%);
	padding-top: 78px;
}

.hero h1 {
	max-width: 780px;
	text-wrap: balance;
}

.hero__lead {
	max-width: 610px;
	margin: 27px 0 38px;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(1.05rem, 1.45vw, 1.25rem);
	line-height: 1.75;
}

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

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

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

.hero__scroll {
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.hero__scroll i {
	width: 1px;
	height: 55px;
	background: linear-gradient(var(--gold), transparent);
}

.signal-strip {
	border-bottom: 1px solid var(--line-dark);
	background: var(--white);
}

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

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

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

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

.signal-strip span {
	color: var(--navy-800);
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Sections */
.section {
	padding: 130px 0;
}

.section--light {
	background: var(--white);
}

.section--navy {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 20%, rgba(21, 62, 111, 0.28), transparent 32%),
		linear-gradient(145deg, var(--navy-950), #071a30);
	color: var(--white);
}

.section--navy::after {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
	background-size: 60px 60px;
	content: "";
	pointer-events: none;
}

.section--sand {
	background: var(--sand-light);
}

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

.about h2 {
	color: var(--navy-950);
}

.about__copy {
	padding-top: 15px;
}

.about__copy .large-copy {
	color: var(--navy-800);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(1.55rem, 2vw, 2rem);
	line-height: 1.4;
}

.about__copy > p:not(.large-copy) {
	color: var(--muted);
}

.section-heading {
	max-width: 800px;
	margin-bottom: 60px;
}

.section-heading--split {
	display: grid;
	max-width: none;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 90px;
	align-items: end;
}

.section-heading--split > p {
	max-width: 440px;
	margin: 0 0 8px;
	color: rgba(255, 255, 255, 0.62);
}

.cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line-light);
	border-left: 1px solid var(--line-light);
}

.service-card {
	position: relative;
	min-height: 530px;
	padding: 48px 38px 42px;
	border-right: 1px solid var(--line-light);
	border-bottom: 1px solid var(--line-light);
	background: rgba(255, 255, 255, 0.018);
	transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
	z-index: 2;
	background: rgba(18, 55, 96, 0.5);
	transform: translateY(-8px);
}

.service-card__number {
	position: absolute;
	top: 30px;
	right: 30px;
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.service-card__mark {
	display: grid;
	width: 82px;
	height: 82px;
	margin: 28px 0 60px;
	border: 1px solid rgba(232, 199, 124, 0.58);
	color: var(--gold-light);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2.6rem;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	place-items: center;
}

.service-card h3 {
	margin-bottom: 18px;
}

.service-card p {
	color: rgba(255, 255, 255, 0.62);
}

.service-card ul {
	padding: 22px 0 0;
	margin: 24px 0 0;
	border-top: 1px solid var(--line-light);
	list-style: none;
}

.service-card li {
	position: relative;
	padding: 6px 0 6px 17px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
}

.service-card li::before {
	position: absolute;
	top: 15px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
	content: "";
}

.ecosystem .section-heading h2 {
	color: var(--navy-950);
}

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

.ecosystem-card {
	position: relative;
	display: flex;
	min-height: 420px;
	flex-direction: column;
	padding: 38px;
	overflow: hidden;
	border: 1px solid rgba(10, 33, 60, 0.12);
	background: rgba(255, 255, 255, 0.65);
}

.ecosystem-card::after {
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 200px;
	height: 200px;
	border: 1px solid rgba(199, 154, 69, 0.22);
	border-radius: 50%;
	content: "";
}

.ecosystem-card--featured {
	background: var(--navy-900);
	color: var(--white);
}

.ecosystem-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: auto;
}

.ecosystem-card__top > span {
	color: var(--gold-dark);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.ecosystem-card--featured .ecosystem-card__top > span {
	color: var(--gold-light);
}

.ecosystem-card__top strong {
	color: rgba(10, 33, 60, 0.11);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 4rem;
	line-height: 0.8;
}

.ecosystem-card--featured .ecosystem-card__top strong {
	color: rgba(255, 255, 255, 0.12);
}

.ecosystem-card h3 {
	margin: 55px 0 18px;
	color: var(--navy-950);
	font-family: "Manrope", Arial, sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.ecosystem-card--featured h3 {
	color: var(--gold-light);
}

.ecosystem-card p {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	color: var(--muted);
}

.ecosystem-card--featured p {
	color: rgba(255, 255, 255, 0.67);
}

.ecosystem-card__meta {
	position: relative;
	z-index: 1;
	display: block;
	padding-top: 22px;
	margin-top: 25px;
	border-top: 1px solid var(--line-light);
	color: var(--gold-light);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.process__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 110px;
}

.process__intro {
	position: sticky;
	top: 140px;
	align-self: start;
}

.process__intro h2 {
	color: var(--navy-950);
}

.process__intro > p:last-child {
	max-width: 440px;
	margin-top: 28px;
	color: var(--muted);
}

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

.process-list li {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 25px;
	padding: 35px 0;
	border-bottom: 1px solid var(--line-dark);
}

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

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

.process-list h3 {
	margin-bottom: 8px;
	color: var(--navy-900);
}

.process-list p {
	max-width: 580px;
	margin: 0;
	color: var(--muted);
}

.contact-panel {
	position: relative;
	padding: 130px 0;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(5, 15, 29, 0.9), rgba(5, 15, 29, 0.82)),
		url("../images/mbn-hero.png") center/cover;
	color: var(--white);
	text-align: center;
}

.contact-panel__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 620px;
	height: 620px;
	border: 1px solid rgba(232, 199, 124, 0.11);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.contact-panel__glow::before,
.contact-panel__glow::after {
	position: absolute;
	inset: 70px;
	border: 1px solid rgba(232, 199, 124, 0.08);
	border-radius: inherit;
	content: "";
}

.contact-panel__glow::after {
	inset: 150px;
}

.contact-panel__inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

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

.contact-panel h2 {
	margin-bottom: 25px;
}

.contact-panel p:not(.eyebrow) {
	max-width: 640px;
	margin: 0 auto 35px;
	color: rgba(255, 255, 255, 0.68);
}

/* Content templates */
.content-area {
	min-height: 70vh;
	padding-top: 92px;
	padding-bottom: 120px;
}

.page-hero {
	padding-top: 105px;
	padding-bottom: 65px;
}

.page-hero h1 {
	max-width: 950px;
	color: var(--navy-950);
	font-size: clamp(3.2rem, 6vw, 6rem);
}

.page-hero--article h1 {
	max-width: 980px;
}

.entry-content {
	max-width: 780px;
}

.entry-content > * {
	margin-block: 1.5em;
}

.entry-content h2,
.entry-content h3 {
	color: var(--navy-900);
}

.featured-image {
	margin-bottom: 55px;
}

.featured-image img {
	width: 100%;
	max-height: 650px;
	object-fit: cover;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.post-card {
	border: 1px solid var(--line-dark);
	background: var(--white);
	box-shadow: var(--shadow);
}

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

.post-card__body {
	padding: 35px;
}

.post-card__meta {
	color: var(--gold-dark);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.post-card h2 {
	margin-bottom: 16px;
	color: var(--navy-900);
	font-size: 2rem;
}

.not-found {
	min-height: 75vh;
	padding-top: 210px;
	padding-bottom: 120px;
}

.not-found h1 {
	max-width: 750px;
	margin-bottom: 28px;
	color: var(--navy-950);
	font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.not-found p:not(.eyebrow) {
	margin-bottom: 35px;
	color: var(--muted);
}

/* Ready-made inner pages */
.inner-page {
	overflow: hidden;
}

.inner-hero {
	position: relative;
	display: flex;
	min-height: 650px;
	align-items: flex-end;
	overflow: hidden;
	padding: 185px 0 105px;
	background:
		linear-gradient(90deg, rgba(5, 15, 29, 0.28), rgba(5, 15, 29, 0.78)),
		url("../images/mbn-hero.png") center / cover;
	color: var(--white);
}

.inner-hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(5, 15, 29, 0.95), transparent 60%),
		radial-gradient(circle at 25% 42%, rgba(21, 62, 111, 0.3), transparent 42%);
	content: "";
}

.inner-hero::after {
	position: absolute;
	right: -180px;
	bottom: -310px;
	width: 720px;
	height: 720px;
	border: 1px solid rgba(232, 199, 124, 0.16);
	border-radius: 50%;
	box-shadow: 0 0 0 70px rgba(232, 199, 124, 0.025), 0 0 0 145px rgba(232, 199, 124, 0.018);
	content: "";
}

.inner-hero__glow {
	position: absolute;
	top: 20%;
	right: 18%;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(199, 154, 69, 0.09);
	filter: blur(80px);
}

.inner-hero__content {
	position: relative;
	z-index: 2;
}

.inner-hero__content h1 {
	max-width: 980px;
	font-size: clamp(3.8rem, 7vw, 7rem);
	text-wrap: balance;
}

.inner-hero__content > p:last-child {
	max-width: 680px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.split-section h2 {
	color: var(--navy-950);
}

.split-section--light h2 {
	color: var(--white);
}

.split-section--light .prose,
.split-section--light .prose p {
	color: rgba(255, 255, 255, 0.65);
}

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

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

.split-section--light .prose .large-copy {
	color: var(--gold-light);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--line-dark);
	border-left: 1px solid var(--line-dark);
}

.value-grid article {
	min-height: 315px;
	padding: 38px;
	border-right: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
	background: rgba(255, 255, 255, 0.45);
}

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

.value-grid h3 {
	margin: 75px 0 15px;
	color: var(--navy-900);
}

.value-grid p {
	margin: 0;
	color: var(--muted);
}

.value-grid--partners article {
	min-height: 355px;
}

.solution-stack {
	border-top: 1px solid var(--line-dark);
}

.solution-row {
	display: grid;
	grid-template-columns: 90px minmax(260px, 0.85fr) minmax(300px, 1.15fr);
	gap: 55px;
	padding: 68px 0;
	border-bottom: 1px solid var(--line-dark);
}

.solution-row__number {
	padding-top: 10px;
	color: var(--gold);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.5rem;
}

.solution-row h2 {
	color: var(--navy-950);
	font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.feature-list {
	display: grid;
	gap: 10px;
	padding: 22px 0 0;
	margin: 24px 0 0;
	border-top: 1px solid var(--line-dark);
	list-style: none;
}

.feature-list li {
	position: relative;
	padding-left: 18px;
	color: var(--navy-800);
	font-size: 0.82rem;
	font-weight: 600;
}

.feature-list li::before {
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
	content: "";
}

.ecosystem-page-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.brand-panel {
	position: relative;
	display: flex;
	min-height: 420px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 42px;
	overflow: hidden;
	border: 1px solid var(--line-dark);
	background: rgba(255, 255, 255, 0.65);
}

.brand-panel::after {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 270px;
	height: 270px;
	border: 1px solid rgba(199, 154, 69, 0.2);
	border-radius: 50%;
	content: "";
}

.brand-panel > span {
	position: absolute;
	top: 38px;
	left: 42px;
	color: var(--gold-dark);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.brand-panel h2 {
	position: relative;
	z-index: 1;
	color: var(--navy-900);
	font-family: "Manrope", Arial, sans-serif;
	font-size: clamp(2rem, 4vw, 3.6rem);
	letter-spacing: 0.13em;
}

.brand-panel p {
	position: relative;
	z-index: 1;
	max-width: 560px;
	margin: 20px 0 0;
	color: var(--muted);
}

.brand-panel small {
	position: relative;
	z-index: 1;
	margin-top: 20px;
	color: var(--gold-dark);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.brand-panel--mbn {
	grid-column: span 2;
	min-height: 500px;
	background:
		linear-gradient(90deg, rgba(5, 15, 29, 0.98), rgba(5, 15, 29, 0.68)),
		url("../images/mbn-hero.png") center / cover;
}

.brand-panel--mbn h2 {
	color: var(--gold-light);
}

.brand-panel--mbn p {
	color: rgba(255, 255, 255, 0.68);
}

.brand-panel--mbn > span,
.brand-panel--kainexia > span {
	color: var(--gold-light);
}

.brand-panel--kainexia {
	background: var(--navy-900);
}

.brand-panel--kainexia h2 {
	color: var(--white);
}

.brand-panel--kainexia p {
	color: rgba(255, 255, 255, 0.64);
}

.brand-panel--kainexia small {
	color: var(--gold-light);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
	gap: 110px;
	align-items: start;
}

.contact-layout__intro h2 {
	color: var(--navy-950);
}

.contact-layout__intro > p:last-child {
	max-width: 570px;
	margin-top: 28px;
	color: var(--muted);
}

.contact-card {
	padding: 45px;
	background: var(--navy-950);
	box-shadow: var(--shadow);
	color: var(--white);
}

.contact-card > span {
	display: block;
	margin: 25px 0 7px;
	color: var(--gold-light);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.contact-card > span:first-child {
	margin-top: 0;
}

.contact-card > a {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.contact-card > p {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.7rem;
}

.contact-card__note {
	padding-top: 24px;
	margin-top: 30px;
	border-top: 1px solid var(--line-light);
	color: rgba(255, 255, 255, 0.46);
	font-size: 0.75rem;
}

.page-cta {
	position: relative;
	padding: 95px 0;
	overflow: hidden;
	background: var(--navy-950);
	color: var(--white);
}

.page-cta::after {
	position: absolute;
	top: -260px;
	right: -100px;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(232, 199, 124, 0.1);
	border-radius: 50%;
	content: "";
}

.page-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
}

.page-cta h2 {
	max-width: 780px;
	font-size: clamp(2.6rem, 4vw, 4.25rem);
}

/* Page transition */
.page-transition {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	background:
		radial-gradient(circle at center, rgba(20, 61, 107, 0.98), rgba(5, 15, 29, 1) 62%),
		var(--navy-950);
	clip-path: circle(0 at 50% 50%);
	opacity: 0;
	pointer-events: none;
	place-items: center;
	transition: clip-path 0.62s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.18s ease;
}

.page-transition__core {
	display: grid;
	gap: 10px;
	color: var(--white);
	opacity: 0;
	text-align: center;
	transform: scale(0.72);
	transition: opacity 0.25s ease 0.12s, transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.page-transition__core span {
	color: var(--gold-light);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
}

.page-transition__core small {
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

body.is-page-leaving .page-transition {
	clip-path: circle(150% at 50% 50%);
	opacity: 1;
	pointer-events: auto;
}

body.is-page-leaving .page-transition__core {
	opacity: 1;
	transform: scale(1);
}

.js body.page-entering main,
.js body.page-entering .site-footer {
	opacity: 0;
	transform: scale(1.018);
}

body main,
body .site-footer {
	transition: opacity 0.52s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	transform-origin: center top;
}

/* Footer */
.site-footer {
	position: relative;
	overflow: hidden;
	padding: 90px 0 25px;
	background: #040d19;
	color: var(--white);
}

.site-footer__glow {
	position: absolute;
	top: -250px;
	left: 20%;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: rgba(18, 55, 96, 0.2);
	filter: blur(120px);
}

.site-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.5fr 0.7fr 0.8fr;
	gap: 80px;
	padding-bottom: 70px;
}

.brand--footer {
	margin-bottom: 25px;
}

.site-footer__intro {
	max-width: 430px;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__column h3,
.footer-widget__title {
	margin-bottom: 24px;
	color: var(--gold-light);
	font-family: "Manrope", Arial, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column p {
	display: block;
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.85rem;
}

.footer-menu {
	display: block;
}

.site-footer__bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 25px;
	border-top: 1px solid var(--line-light);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.67rem;
	letter-spacing: 0.06em;
}

/* Motion */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

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

@media (max-width: 1080px) {
	.primary-nav {
		gap: 22px;
	}

	.primary-nav .menu {
		gap: 18px;
	}

	.nav-cta {
		display: none;
	}

	.hero {
		min-height: 760px;
		background-position: 58% center;
	}

	.hero__content {
		width: 62%;
	}

	.about__grid,
	.process__grid {
		gap: 70px;
	}

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

	.ecosystem-card--featured {
		grid-column: span 2;
	}
}

@media (max-width: 820px) {
	:root {
		--shell: min(100% - 36px, 720px);
	}

	.site-header__inner {
		min-height: 76px;
	}

	.menu-toggle {
		display: block;
	}

	.primary-nav {
		position: fixed;
		top: 76px;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		padding: 45px 18px;
		background: rgba(5, 15, 29, 0.98);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 0.25s ease, transform 0.25s ease;
	}

	.primary-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-nav .menu {
		display: flex;
		width: var(--shell);
		flex-direction: column;
		align-items: flex-start;
		gap: 7px;
		margin-inline: auto;
	}

	.primary-nav .menu a {
		font-family: "Cormorant Garamond", Georgia, serif;
		font-size: 2.1rem;
		font-weight: 600;
		letter-spacing: 0;
		text-transform: none;
	}

	.hero {
		min-height: 720px;
		background-position: 60% center;
	}

	.hero::after {
		background: linear-gradient(90deg, rgba(4, 13, 25, 0.82), rgba(4, 13, 25, 0.34) 70%, rgba(4, 13, 25, 0.2));
	}

	.hero__content {
		width: 72%;
	}

	.hero__signature {
		display: none;
	}

	.signal-strip__grid {
		grid-template-columns: 1fr;
	}

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

	.section {
		padding: 95px 0;
	}

	.about__grid,
	.section-heading--split,
	.process__grid,
	.split-section,
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.solution-row {
		grid-template-columns: 55px 1fr;
		gap: 32px;
	}

	.solution-row .prose {
		grid-column: 2;
	}

	.value-grid {
		grid-template-columns: 1fr;
	}

	.value-grid article {
		min-height: 260px;
	}

	.ecosystem-page-grid {
		grid-template-columns: 1fr;
	}

	.brand-panel--mbn {
		grid-column: auto;
	}

	.page-cta__inner {
		grid-template-columns: 1fr;
	}

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

	.service-card {
		min-height: auto;
	}

	.process__intro {
		position: static;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__grid > div:first-child {
		grid-column: span 2;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 580px) {
	:root {
		--shell: calc(100% - 28px);
	}

	.brand__descriptor {
		display: none;
	}

	.brand__monogram {
		padding-right: 0;
		border-right: 0;
	}

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

	.hero::after {
		background:
			linear-gradient(90deg, rgba(4, 13, 25, 0.9), rgba(4, 13, 25, 0.48)),
			linear-gradient(0deg, rgba(4, 13, 25, 0.5), transparent);
	}

	.hero__content {
		width: 100%;
		padding-top: 60px;
	}

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

	.hero__lead {
		font-size: 0.98rem;
	}

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

	.hero__scroll {
		display: none;
	}

	.section {
		padding: 78px 0;
	}

	.inner-hero {
		min-height: 610px;
		padding: 155px 0 75px;
		background-position: 58% center;
	}

	.inner-hero__content h1 {
		font-size: clamp(3.1rem, 14vw, 4.4rem);
	}

	.solution-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.solution-row .prose {
		grid-column: auto;
	}

	.brand-panel {
		min-height: 380px;
		padding: 32px;
	}

	.brand-panel > span {
		top: 30px;
		left: 32px;
	}

	.contact-card {
		padding: 32px;
	}

	.section-heading {
		margin-bottom: 42px;
	}

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

	.ecosystem-card--featured {
		grid-column: auto;
	}

	.ecosystem-card {
		min-height: 370px;
		padding: 30px;
	}

	.process-list li {
		grid-template-columns: 50px 1fr;
	}

	.contact-panel {
		padding: 95px 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.site-footer__grid > div:first-child {
		grid-column: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.page-transition {
		display: none;
	}

	.js body.page-entering main,
	.js body.page-entering .site-footer {
		opacity: 1;
		transform: none;
	}
}
