:root {
	--ink: #160f18;
	--ink-soft: #544b56;
	--aubergine: #2b0d32;
	--aubergine-deep: #16071a;
	--purple: #780981;
	--magenta: #d60fe3;
	--magenta-soft: #f6d8f8;
	--paper: #fbf9fb;
	--paper-2: #f3edf4;
	--white: #ffffff;
	--line: rgba(43, 13, 50, .14);
	--line-light: rgba(255, 255, 255, .16);
	--shadow: 0 30px 90px rgba(31, 7, 36, .15);
	--container: min(1240px, calc(100% - 48px));
	--header: 92px;
	--radius: 2px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header) + 22px);
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.68;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

::selection {
	color: var(--white);
	background: var(--purple);
}

.container {
	width: var(--container);
	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: 1000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	color: var(--white);
	background: var(--aubergine);
	transform: translateY(-160%);
	transition: transform .2s ease;
}

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

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px;
	color: var(--purple);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .18em;
	line-height: 1.35;
	text-transform: uppercase;
}

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

.eyebrow-light {
	color: var(--magenta-soft);
}

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

h1,
h2,
h3 {
	font-family: Manrope, Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
	font-weight: 520;
	letter-spacing: -.046em;
	line-height: 1.04;
}

h2 {
	margin-bottom: 28px;
	font-size: clamp(2.45rem, 4.7vw, 5rem);
}

h3 {
	margin-bottom: 17px;
	font-size: clamp(1.45rem, 2.1vw, 2rem);
	line-height: 1.14;
}

.lead {
	color: var(--ink-soft);
	font-size: clamp(1.06rem, 1.5vw, 1.25rem);
	line-height: 1.76;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 23px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .09em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button::after {
	content: "↗";
	font-size: 1rem;
	font-weight: 400;
	transition: transform .25s ease;
}

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

.button-primary {
	color: var(--white);
	background: var(--magenta);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--purple);
}

.button-light {
	color: var(--white);
	border-color: rgba(255, 255, 255, .45);
	background: rgba(255, 255, 255, .06);
}

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

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--purple);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link::after {
	content: "→";
	font-size: 1.15rem;
	transition: transform .2s ease;
}

.text-link:hover::after {
	transform: translateX(5px);
}

/* Header */
.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	height: var(--header);
	border-bottom: 1px solid transparent;
	background: rgba(251, 249, 251, .91);
	backdrop-filter: blur(18px);
	transition: height .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
	height: 78px;
	border-color: var(--line);
	box-shadow: 0 10px 34px rgba(43, 13, 50, .06);
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.brand {
	display: inline-flex;
	width: 195px;
	flex: 0 0 195px;
	flex-direction: column;
	align-items: flex-end;
	color: var(--aubergine);
	text-decoration: none;
}

.brand-image {
	display: block;
	width: 195px;
}

.brand-logo {
	width: 100%;
	height: auto;
}

.brand-suffix {
	margin-top: -10px;
	margin-right: 5px;
	color: var(--purple);
	font-size: .46rem;
	font-weight: 800;
	letter-spacing: .24em;
	line-height: 1;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 30px);
	margin-left: auto;
}

.main-nav a {
	position: relative;
	color: var(--aubergine);
	font-size: .75rem;
	font-weight: 750;
	letter-spacing: .055em;
	text-decoration: none;
	text-transform: uppercase;
}

.main-nav a:not(.nav-contact)::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	content: "";
	background: var(--magenta);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .24s ease;
}

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

.main-nav .nav-contact {
	padding: 11px 17px;
	color: var(--white);
	background: var(--aubergine);
}

.main-nav .nav-contact:hover,
.main-nav .nav-contact:focus-visible {
	background: var(--purple);
}

.header-tools {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 16px;
}

.language-switch {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #8a7e8d;
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .08em;
}

.language-button {
	padding: 6px 2px;
	border: 0;
	color: #948a96;
	background: transparent;
	font-size: inherit;
	font-weight: inherit;
	cursor: pointer;
}

.language-button.is-active {
	color: var(--purple);
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7px;
	padding: 0;
	border: 1px solid var(--line);
	background: transparent;
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 19px;
	height: 1px;
	background: var(--aubergine);
	transition: transform .2s ease;
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	min-height: 830px;
	align-items: center;
	overflow: hidden;
	padding-top: var(--header);
	color: var(--white);
	background: var(--aubergine-deep);
}

.hero::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(22, 7, 26, .98) 0%, rgba(43, 13, 50, .94) 40%, rgba(43, 13, 50, .42) 69%, rgba(22, 7, 26, .12) 100%);
}

.hero-image {
	position: absolute;
	inset: 0 0 0 38%;
	background: url("../images/hero-port.webp") center / cover no-repeat;
}

.hero-image::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(22, 7, 26, .03), rgba(22, 7, 26, .55));
}

.hero-glow {
	position: absolute;
	z-index: 1;
	top: 2%;
	left: 42%;
	width: 430px;
	height: 580px;
	opacity: .28;
	background: linear-gradient(155deg, var(--magenta), transparent 70%);
	clip-path: polygon(49% 0, 100% 100%, 72% 100%, 49% 46%, 25% 100%, 0 100%);
	filter: blur(2px);
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	align-items: end;
	gap: 50px;
	grid-template-columns: minmax(0, 1fr) 290px;
}

.hero-copy {
	max-width: 860px;
	padding: 120px 0 150px;
}

.hero .eyebrow {
	color: var(--magenta-soft);
}

.hero h1 {
	max-width: 880px;
	margin: 0 0 32px;
	font-size: clamp(3.7rem, 7vw, 7.4rem);
	letter-spacing: -.064em;
}

.hero h1 span,
.hero h1 strong {
	display: block;
}

.hero h1 strong {
	color: var(--magenta-soft);
	font-weight: 500;
}

.hero-lead {
	max-width: 700px;
	margin-bottom: 38px;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(1.04rem, 1.6vw, 1.28rem);
	line-height: 1.78;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-note {
	margin-bottom: 120px;
	padding: 26px 0 0 25px;
	border-top: 1px solid rgba(255, 255, 255, .28);
	border-left: 1px solid rgba(255, 255, 255, .28);
	color: rgba(255, 255, 255, .8);
	font-size: .82rem;
	line-height: 1.65;
}

.hero-note-index {
	display: block;
	margin-bottom: 36px;
	color: var(--magenta);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .15em;
}

.hero-note strong {
	display: block;
	margin-top: 22px;
	color: var(--white);
	font-size: .67rem;
	letter-spacing: .15em;
}

.scroll-cue {
	position: absolute;
	z-index: 2;
	bottom: 31px;
	left: 50%;
	display: flex;
	align-items: center;
	gap: 13px;
	color: rgba(255, 255, 255, .64);
	font-size: .64rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-decoration: none;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.scroll-cue i {
	position: relative;
	display: block;
	width: 40px;
	height: 1px;
	background: rgba(255, 255, 255, .42);
}

.scroll-cue i::after {
	position: absolute;
	top: -2px;
	right: 0;
	width: 5px;
	height: 5px;
	border-right: 1px solid rgba(255, 255, 255, .7);
	border-bottom: 1px solid rgba(255, 255, 255, .7);
	content: "";
	transform: rotate(-45deg);
}

/* Trust rail */
.trust-rail {
	position: relative;
	z-index: 4;
	background: var(--white);
	box-shadow: 0 22px 65px rgba(31, 7, 36, .08);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
	display: grid;
	min-height: 155px;
	align-items: start;
	gap: 18px;
	padding: 34px 30px;
	border-right: 1px solid var(--line);
	grid-template-columns: auto 1fr;
}

.trust-grid article:last-child {
	border-right: 0;
}

.trust-grid article > span {
	color: var(--magenta);
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .08em;
}

.trust-grid strong {
	display: block;
	margin-bottom: 8px;
	color: var(--aubergine);
	font-size: .82rem;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.trust-grid p {
	margin: 0;
	color: var(--ink-soft);
	font-size: .78rem;
	line-height: 1.55;
}

/* Shared section layouts */
.section {
	padding: clamp(95px, 10vw, 150px) 0;
}

.section-heading {
	display: grid;
	align-items: end;
	gap: clamp(45px, 8vw, 115px);
	margin-bottom: 65px;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}

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

.section-heading .lead {
	margin-bottom: 7px;
}

.reveal-ready .reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .72s ease, transform .72s cubic-bezier(.2, .8, .2, 1);
}

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

/* Company */
.company {
	background: var(--paper);
}

.company-grid {
	display: grid;
	align-items: center;
	gap: clamp(55px, 9vw, 135px);
	grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
}

.section-copy h2 {
	max-width: 690px;
}

.section-copy > p:not(.eyebrow) {
	max-width: 690px;
	color: var(--ink-soft);
}

.section-copy .text-link {
	margin-top: 16px;
}

.corporate-card {
	position: relative;
	overflow: hidden;
	padding: 42px;
	color: var(--white);
	background: linear-gradient(145deg, var(--aubergine), var(--purple));
	box-shadow: var(--shadow);
}

.corporate-card::after {
	position: absolute;
	right: -75px;
	bottom: -100px;
	width: 270px;
	height: 330px;
	content: "";
	background: linear-gradient(160deg, rgba(214, 15, 227, .8), rgba(255, 255, 255, .04));
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.corporate-card-head {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 38px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.corporate-card-head p,
.corporate-card-head span {
	margin: 0;
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.corporate-card-head span {
	color: var(--magenta-soft);
}

.corporate-card dl {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 26px 28px;
	margin: 0;
	grid-template-columns: repeat(2, 1fr);
}

.corporate-card dl > div {
	min-width: 0;
}

.corporate-card dl .wide {
	grid-column: 1 / -1;
}

.corporate-card dt {
	margin-bottom: 6px;
	color: rgba(255, 255, 255, .58);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.corporate-card dd {
	margin: 0;
	color: var(--white);
	font-size: .91rem;
	line-height: 1.55;
}

/* Products */
.products {
	background: var(--white);
}

.product-layout {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(12, 1fr);
}

.product-card {
	position: relative;
	display: flex;
	min-height: 320px;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding: clamp(34px, 4vw, 58px);
}

.product-card a {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 10px;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-decoration: none;
	text-transform: uppercase;
}

.product-card a::after {
	content: "→";
	font-size: 1rem;
}

.product-number {
	position: absolute;
	top: 30px;
	right: 34px;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.product-kicker {
	margin-bottom: 18px;
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.product-card h3 {
	font-size: clamp(2.6rem, 4.8vw, 5.25rem);
}

.product-card p:not(.product-kicker) {
	max-width: 600px;
	font-size: .93rem;
	line-height: 1.7;
}

.product-main {
	min-height: 670px;
	grid-column: 1 / 8;
	grid-row: 1 / 3;
	color: var(--white);
	background: linear-gradient(145deg, var(--aubergine-deep), var(--aubergine) 70%);
}

.product-main::after {
	position: absolute;
	right: -95px;
	bottom: -150px;
	width: 390px;
	height: 500px;
	opacity: .68;
	content: "";
	background: linear-gradient(160deg, var(--magenta), transparent 85%);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.product-main > * {
	position: relative;
	z-index: 2;
}

.product-main .product-number,
.product-main .product-kicker {
	color: var(--magenta-soft);
}

.product-main p:not(.product-kicker) {
	color: rgba(255, 255, 255, .72);
}

.product-secondary {
	grid-column: 8 / 13;
	color: var(--aubergine);
	background: var(--paper-2);
}

.product-secondary .product-number,
.product-secondary .product-kicker,
.product-secondary a {
	color: var(--purple);
}

.product-secondary h3 {
	font-size: clamp(2.5rem, 4vw, 4.3rem);
}

.product-secondary p:not(.product-kicker) {
	color: var(--ink-soft);
}

.product-visual {
	position: relative;
	min-height: 330px;
	margin: 0;
	overflow: hidden;
	grid-column: 8 / 13;
}

.product-visual::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 50%, rgba(22, 7, 26, .72));
}

.product-visual img {
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
}

.product-visual figcaption {
	position: absolute;
	z-index: 2;
	right: 25px;
	bottom: 22px;
	left: 25px;
	color: rgba(255, 255, 255, .84);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.capacity-note {
	display: grid;
	align-items: start;
	gap: 30px;
	margin-top: 48px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
	grid-template-columns: 240px minmax(0, 1fr);
}

.capacity-note span {
	color: var(--purple);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.capacity-note p {
	max-width: 840px;
	margin: 0;
	color: var(--ink-soft);
}

/* Process */
.process-section {
	position: relative;
	overflow: hidden;
	color: var(--white);
	background: var(--aubergine-deep);
}

.process-section::before {
	position: absolute;
	top: -250px;
	right: -250px;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(214, 15, 227, .22);
	border-radius: 50%;
	content: "";
	box-shadow: 0 0 0 85px rgba(214, 15, 227, .035), 0 0 0 170px rgba(214, 15, 227, .025);
}

.process-intro {
	position: relative;
	display: grid;
	align-items: end;
	gap: 80px;
	margin-bottom: 70px;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.process-intro .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: -45px;
}

.process-intro h2 {
	margin: 0;
	font-size: clamp(2.7rem, 5vw, 5.45rem);
}

.process-intro > p:last-child {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, .66);
}

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

.process-list li {
	display: grid;
	gap: 35px;
	padding: 34px 0;
	border-top: 1px solid var(--line-light);
	grid-template-columns: 78px minmax(0, 1fr);
}

.process-list li:last-child {
	border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
	color: var(--magenta);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.process-list h3 {
	margin-bottom: 8px;
	color: var(--white);
	font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.process-list p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, .62);
}

.bank-panel {
	display: grid;
	align-items: center;
	gap: 50px;
	margin-top: 50px;
	padding: 38px 42px;
	border: 1px solid rgba(214, 15, 227, .36);
	background: linear-gradient(105deg, rgba(120, 9, 129, .3), rgba(255, 255, 255, .03));
	grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.panel-label {
	margin-bottom: 10px;
	color: var(--magenta-soft);
	font-size: .66rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.bank-panel h3 {
	margin: 0;
	color: var(--white);
	font-size: clamp(2rem, 3.4vw, 3.55rem);
}

.bank-panel > p {
	margin: 0;
	color: rgba(255, 255, 255, .68);
}

/* Markets */
.markets {
	background: var(--paper-2);
}

.markets-grid {
	display: grid;
	align-items: center;
	gap: clamp(55px, 9vw, 120px);
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
}

.markets-visual {
	position: relative;
	min-height: 660px;
}

.markets-visual::before {
	position: absolute;
	z-index: 2;
	top: -30px;
	right: -30px;
	width: 150px;
	height: 150px;
	border-top: 1px solid var(--magenta);
	border-right: 1px solid var(--magenta);
	content: "";
}

.markets-visual img {
	width: 100%;
	height: 660px;
	object-fit: cover;
}

.visual-marker {
	position: absolute;
	z-index: 3;
	right: -32px;
	bottom: 42px;
	width: min(320px, 75%);
	padding: 28px 30px;
	color: var(--white);
	background: var(--aubergine);
	box-shadow: var(--shadow);
}

.visual-marker span {
	display: block;
	margin-bottom: 9px;
	color: var(--magenta);
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .13em;
}

.visual-marker strong {
	font-size: .76rem;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.markets-copy h2 {
	max-width: 570px;
}

.region-list {
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.region-list li {
	display: grid;
	gap: 23px;
	padding: 23px 0;
	border-top: 1px solid var(--line);
	grid-template-columns: 32px minmax(0, 1fr);
}

.region-list li:last-child {
	border-bottom: 1px solid var(--line);
}

.region-list li > span {
	color: var(--magenta);
	font-size: .65rem;
	font-weight: 800;
}

.region-list strong {
	display: block;
	margin-bottom: 5px;
	color: var(--aubergine);
	font-size: .83rem;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.region-list p {
	margin: 0;
	color: var(--ink-soft);
	font-size: .85rem;
}

/* Compliance */
.compliance {
	background: var(--white);
}

.compliance-grid {
	display: grid;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	grid-template-columns: repeat(4, 1fr);
}

.compliance-grid article {
	min-height: 340px;
	padding: 34px;
	background: var(--white);
	transition: color .25s ease, background .25s ease;
}

.compliance-grid article:hover {
	color: var(--white);
	background: var(--aubergine);
}

.line-icon {
	display: block;
	width: 38px;
	height: 38px;
	margin-bottom: 68px;
	border: 1px solid var(--purple);
	border-radius: 50%;
	transition: border-color .25s ease;
}

.line-icon::before,
.line-icon::after {
	display: block;
	width: 14px;
	height: 1px;
	margin: 13px auto 0;
	content: "";
	background: var(--magenta);
}

.line-icon::after {
	margin-top: 6px;
	transform: rotate(90deg);
}

.card-index {
	margin-bottom: 13px;
	color: var(--magenta);
	font-size: .63rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.compliance-grid h3 {
	font-size: 1.45rem;
}

.compliance-grid article > p:last-child {
	margin: 0;
	color: var(--ink-soft);
	font-size: .85rem;
	transition: color .25s ease;
}

.compliance-grid article:hover h3,
.compliance-grid article:hover > p:last-child {
	color: var(--white);
}

.compliance-grid article:hover .line-icon {
	border-color: var(--magenta-soft);
}

/* Contact */
.contact-section {
	padding-top: 0;
	background: var(--white);
}

.contact-panel {
	display: grid;
	overflow: hidden;
	background: var(--paper);
	box-shadow: var(--shadow);
	grid-template-columns: .92fr 1.08fr;
}

.contact-intro {
	position: relative;
	display: flex;
	min-height: 700px;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding: clamp(42px, 5.7vw, 76px);
	color: var(--white);
	background:
		linear-gradient(145deg, rgba(120, 9, 129, .95), rgba(43, 13, 50, .97)),
		url("../images/hero-port.webp") center / cover no-repeat;
}

.contact-intro::after {
	position: absolute;
	right: -95px;
	bottom: -130px;
	width: 360px;
	height: 450px;
	opacity: .9;
	content: "";
	background: linear-gradient(155deg, var(--magenta), rgba(255, 255, 255, .04));
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.contact-intro > * {
	position: relative;
	z-index: 2;
}

.contact-intro h2 {
	max-width: 600px;
	color: var(--white);
	font-size: clamp(3rem, 5vw, 5.55rem);
}

.contact-intro > div:first-child > p:last-child {
	max-width: 570px;
	color: rgba(255, 255, 255, .72);
}

.contact-direct > p {
	margin-bottom: 12px;
	color: var(--magenta-soft);
	font-size: .66rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.contact-direct > a {
	display: inline-block;
	margin-bottom: 13px;
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, .42);
	color: var(--white);
	font-size: clamp(1rem, 1.7vw, 1.25rem);
	text-decoration: none;
}

.contact-direct div {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 25px;
}

.contact-direct div a {
	color: rgba(255, 255, 255, .78);
	font-size: .87rem;
	text-decoration: none;
}

.contact-form {
	display: grid;
	align-content: center;
	padding: clamp(42px, 6vw, 82px);
}

.field-grid {
	display: grid;
	gap: 24px 22px;
	grid-template-columns: repeat(2, 1fr);
}

.field-grid label {
	display: grid;
	gap: 7px;
}

.field-grid label.wide {
	grid-column: 1 / -1;
}

.field-grid label > span {
	color: var(--aubergine);
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(43, 13, 50, .25);
	border-radius: 0;
	outline: 0;
	color: var(--ink);
	background: transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.field-grid input,
.field-grid select {
	height: 48px;
}

.field-grid textarea {
	min-height: 110px;
	padding: 10px 0;
	resize: vertical;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
	border-color: var(--magenta);
	box-shadow: 0 1px 0 var(--magenta);
}

.form-note {
	margin: 25px 0;
	color: #766c78;
	font-size: .72rem;
	line-height: 1.55;
}

.form-status {
	min-height: 24px;
	margin: 13px 0 0;
	color: var(--purple);
	font-size: .8rem;
	font-weight: 700;
}

/* Footer */
.site-footer {
	padding: 72px 0 30px;
	color: rgba(255, 255, 255, .66);
	background: #100713;
}

.footer-main {
	display: grid;
	gap: 45px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, .13);
	grid-template-columns: 1.35fr .7fr .9fr 1fr;
}

.footer-brand {
	display: inline-flex;
	width: 205px;
	flex-direction: column;
	align-items: flex-end;
	margin-bottom: 24px;
	color: var(--white);
	text-decoration: none;
}

.footer-brand img {
	width: 205px;
	height: auto;
	filter: brightness(0) invert(1);
}

.footer-brand span {
	margin-top: -10px;
	margin-right: 3px;
	color: var(--magenta-soft);
	font-size: .47rem;
	font-weight: 800;
	letter-spacing: .24em;
}

.footer-identity p {
	max-width: 330px;
	margin: 0;
	font-size: .82rem;
}

.footer-column {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}

.footer-column h2 {
	margin-bottom: 12px;
	color: var(--white);
	font-family: inherit;
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.footer-column a {
	font-size: .79rem;
	text-decoration: none;
}

.footer-column a:hover {
	color: var(--magenta-soft);
}

.footer-column p {
	margin: 0 0 5px;
	font-size: .76rem;
	line-height: 1.75;
}

.footer-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-top: 27px;
	font-size: .68rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-disclaimer {
	max-width: 820px;
	line-height: 1.6;
}

/* Basic content templates */
.content-page {
	min-height: 72vh;
	padding: calc(var(--header) + 90px) 0 100px;
}

.prose {
	max-width: 850px;
}

.prose h1 {
	font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.prose p,
.prose li {
	color: var(--ink-soft);
}

.error-page {
	text-align: center;
}

.error-page .eyebrow {
	justify-content: center;
}

/* Responsive */
@media (max-width: 1100px) {
	:root {
		--header: 82px;
	}

	.brand {
		width: 170px;
		flex-basis: 170px;
	}

	.brand-image {
		width: 170px;
	}

	.main-nav {
		gap: 17px;
	}

	.main-nav a {
		font-size: .67rem;
	}

	.hero-inner {
		grid-template-columns: minmax(0, 1fr) 235px;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-grid article:nth-child(2) {
		border-right: 0;
	}

	.trust-grid article:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.compliance-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-main {
		grid-template-columns: 1.2fr .8fr 1fr;
	}

	.footer-registry {
		grid-column: 2 / 4;
	}
}

@media (max-width: 920px) {
	:root {
		--container: min(100% - 36px, 760px);
	}

	.menu-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		z-index: 120;
		top: var(--header);
		right: 18px;
		left: 18px;
		display: flex;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 18px;
		background: var(--white);
		box-shadow: var(--shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity .2s ease, transform .2s ease;
	}

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

	.main-nav a {
		padding: 16px 12px;
		border-bottom: 1px solid var(--line);
		font-size: .75rem;
	}

	.main-nav a::after {
		display: none;
	}

	.main-nav .nav-contact {
		margin-top: 12px;
		border-bottom: 0;
		text-align: center;
	}

	.menu-open .menu-toggle > span:nth-last-child(2) {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-open .menu-toggle > span:last-child {
		transform: translateY(-4px) rotate(-45deg);
	}

	.hero {
		min-height: 780px;
	}

	.hero-image {
		inset: 0;
		opacity: .5;
	}

	.hero::before {
		background: linear-gradient(90deg, rgba(22, 7, 26, .97), rgba(43, 13, 50, .83) 66%, rgba(43, 13, 50, .6));
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		padding: 110px 0 195px;
	}

	.hero-note {
		position: absolute;
		right: 0;
		bottom: 55px;
		width: min(320px, 62vw);
		margin: 0;
	}

	.scroll-cue {
		left: 18px;
		transform: none;
	}

	.company-grid,
	.section-heading,
	.process-intro,
	.markets-grid,
	.contact-panel {
		grid-template-columns: 1fr;
	}

	.company-grid {
		gap: 65px;
	}

	.section-heading {
		gap: 28px;
	}

	.product-main {
		min-height: 590px;
		grid-column: 1 / 13;
		grid-row: auto;
	}

	.product-secondary,
	.product-visual {
		grid-column: span 6;
	}

	.process-intro {
		gap: 25px;
	}

	.process-intro .eyebrow {
		grid-column: auto;
		margin-bottom: 0;
	}

	.markets-grid {
		gap: 80px;
	}

	.markets-visual,
	.markets-visual img {
		min-height: 540px;
		height: 540px;
	}

	.visual-marker {
		right: 20px;
	}

	.contact-intro {
		min-height: 560px;
	}

	.footer-main {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-registry {
		grid-column: auto;
	}
}

@media (max-width: 620px) {
	:root {
		--container: calc(100% - 30px);
		--header: 76px;
	}

	body {
		font-size: 15px;
	}

	.site-header.is-scrolled {
		height: 70px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.brand {
		width: 146px;
		flex-basis: 146px;
	}

	.brand-image {
		width: 146px;
	}

	.brand-suffix {
		margin-top: -8px;
		font-size: .39rem;
	}

	.header-inner {
		gap: 12px;
	}

	.header-tools {
		gap: 9px;
	}

	.language-switch {
		font-size: .6rem;
	}

	.menu-toggle {
		width: 38px;
		height: 38px;
	}

	.hero {
		min-height: 760px;
	}

	.hero-copy {
		padding: 100px 0 220px;
	}

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

	.hero-note {
		bottom: 66px;
		width: calc(100% - 55px);
	}

	.hero-note-index {
		margin-bottom: 14px;
	}

	.scroll-cue {
		display: none;
	}

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

	.hero-actions .button {
		width: 100%;
	}

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

	.trust-grid article {
		min-height: auto;
		padding: 26px 22px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.trust-grid article:last-child {
		border-bottom: 0;
	}

	.section {
		padding: 88px 0;
	}

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

	.corporate-card {
		padding: 30px 24px;
	}

	.corporate-card dl {
		grid-template-columns: 1fr;
	}

	.corporate-card dl .wide {
		grid-column: auto;
	}

	.product-main,
	.product-secondary,
	.product-visual {
		grid-column: 1 / 13;
	}

	.product-main {
		min-height: 530px;
	}

	.product-secondary {
		min-height: 400px;
	}

	.product-visual {
		min-height: 290px;
	}

	.product-visual img {
		min-height: 290px;
	}

	.capacity-note {
		gap: 14px;
		grid-template-columns: 1fr;
	}

	.process-list li {
		gap: 20px;
		grid-template-columns: 42px minmax(0, 1fr);
	}

	.bank-panel {
		gap: 25px;
		padding: 30px 24px;
		grid-template-columns: 1fr;
	}

	.markets-visual,
	.markets-visual img {
		min-height: 440px;
		height: 440px;
	}

	.markets-visual::before {
		top: -16px;
		right: -6px;
		width: 90px;
		height: 90px;
	}

	.visual-marker {
		right: 12px;
		bottom: 20px;
	}

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

	.compliance-grid article {
		min-height: auto;
	}

	.line-icon {
		margin-bottom: 42px;
	}

	.contact-panel {
		width: 100%;
	}

	.contact-intro {
		min-height: 530px;
	}

	.contact-form {
		padding: 42px 24px;
	}

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

	.field-grid label.wide {
		grid-column: auto;
	}

	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}
}

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

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

	.reveal-ready .reveal {
		opacity: 1;
		transform: none;
	}
}
