:root {
	--ink: #182a2a;
	--ink-soft: #526463;
	--paper: #f5f6f1;
	--white: #ffffff;
	--mint: #dcefe3;
	--mint-bright: #b6e3cc;
	--coral: #f17a5a;
	--line: #d7ded8;
	--dark: #102322;
	--dark-muted: #9cadab;
	--serif: Georgia, 'Times New Roman', serif;
	--sans: 'DM Sans', 'Segoe UI', sans-serif;
	--display: 'Manrope', 'Segoe UI', sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.5;
}

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

button {
	color: inherit;
	font: inherit;
}

.container {
	width: min(1180px, calc(100% - 64px));
	margin: 0 auto;
}

.topline {
	color: #d8e8dd;
	background: var(--dark);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.topline__inner,
.topline__meta,
.site-header__inner,
.header-actions,
.hero__bottomline,
.site-footer__bottom {
	align-items: center;
	display: flex;
}

.topline__inner {
	justify-content: space-between;
	min-height: 34px;
}

.topline p {
	margin: 0;
}

.topline__meta {
	gap: 12px;
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--mint-bright);
	box-shadow: 0 0 0 4px rgba(182, 227, 204, .12);
}

.topline__separator {
	width: 1px;
	height: 12px;
	background: #55706a;
}

.site-header {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	justify-content: space-between;
	min-height: 86px;
	gap: 28px;
}

.brand {
	align-items: center;
	display: inline-flex;
	flex-shrink: 0;
	gap: 10px;
}

.brand__mark {
	align-items: center;
	background: var(--coral);
	color: var(--white);
	display: inline-flex;
	font-family: var(--serif);
	font-size: 25px;
	font-weight: 700;
	height: 38px;
	justify-content: center;
	line-height: 1;
	position: relative;
	width: 38px;
}

.brand__mark::after {
	border: 1px solid rgba(255, 255, 255, .55);
	content: '';
	inset: 4px;
	position: absolute;
}

.brand__name {
	color: var(--ink);
	font-family: var(--display);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .06em;
	line-height: 1;
}

.brand__name small {
	display: block;
	font-family: var(--sans);
	font-size: 7px;
	font-weight: 600;
	letter-spacing: .18em;
	margin-top: 5px;
}

.main-nav {
	display: flex;
	gap: clamp(18px, 3vw, 42px);
	margin-left: auto;
	margin-right: 24px;
}

.main-nav a,
.footer-email {
	color: var(--ink-soft);
	font-size: 13px;
	transition: color .2s ease;
}

.main-nav a:hover,
.footer-email:hover {
	color: var(--coral);
}

.header-actions {
	gap: 18px;
}

.language-switcher {
	border: 1px solid var(--line);
	display: flex;
	padding: 3px;
}

.language-switcher__option {
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	padding: 6px 7px;
}

.language-switcher__option.is-active {
	background: var(--mint);
}

.button {
	align-items: center;
	border: 1px solid transparent;
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	gap: 16px;
	justify-content: center;
	letter-spacing: .02em;
	padding: 15px 20px;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

.button--small {
	padding: 11px 15px;
}

.button--large {
	padding: 18px 23px;
}

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

.button--dark:hover {
	background: var(--coral);
}

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

.button--primary:hover {
	background: #d96245;
}

.button--outline {
	border-color: #78918b;
	color: var(--white);
}

.button--outline:hover {
	background: var(--mint-bright);
	border-color: var(--mint-bright);
	color: var(--dark);
}

.hero {
	background: var(--paper);
	overflow: hidden;
	padding: 78px 0 26px;
}

.hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(46px, 7vw, 100px);
	grid-template-columns: minmax(0, .92fr) minmax(400px, 1.08fr);
}

.eyebrow {
	align-items: center;
	color: var(--coral);
	display: flex;
	font-size: 10px;
	font-weight: 700;
	gap: 10px;
	letter-spacing: .17em;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.eyebrow__line {
	background: currentColor;
	height: 1px;
	width: 28px;
}

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

h1,
h2 {
	font-family: var(--display);
	letter-spacing: -.045em;
}

h1 {
	font-size: clamp(48px, 6.2vw, 82px);
	line-height: .98;
	margin-bottom: 28px;
	max-width: 620px;
}

h1 em {
	color: var(--coral);
	font-family: var(--serif);
	font-weight: 400;
}

.hero__intro {
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 480px;
}

.hero__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.text-link,
.card-link {
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
}

.text-link span,
.card-link span {
	color: var(--coral);
	font-size: 17px;
	margin-left: 7px;
}

.hero__trust {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-top: 60px;
}

.trust-avatars {
	display: flex;
}

.trust-avatars span {
	align-items: center;
	background: var(--mint-bright);
	border: 2px solid var(--paper);
	border-radius: 50%;
	color: var(--dark);
	display: flex;
	font-size: 8px;
	font-weight: 700;
	height: 31px;
	justify-content: center;
	margin-left: -7px;
	width: 31px;
}

.trust-avatars span:first-child {
	background: var(--coral);
	color: var(--white);
	margin-left: 0;
}

.trust-avatars span:nth-child(2) {
	background: #c3d5cf;
}

.hero__trust p {
	color: var(--ink-soft);
	font-size: 11px;
	line-height: 1.35;
	margin: 0;
}

.hero__trust strong {
	color: var(--ink);
}

.hero__visual {
	min-height: 570px;
	overflow: hidden;
	position: relative;
}

.hero__image {
	background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=85');
	background-position: center;
	background-size: cover;
	inset: 0 0 0 12%;
	position: absolute;
}

.visual-shade {
	background: linear-gradient(90deg, var(--paper) 0%, rgba(245, 246, 241, .12) 31%, rgba(16, 35, 34, .06) 100%);
	inset: 0;
	position: absolute;
}

.security-card,
.market-card {
	background: rgba(255, 255, 255, .93);
	box-shadow: 0 18px 40px rgba(16, 35, 34, .15);
	position: absolute;
}

.security-card {
	align-items: center;
	bottom: 106px;
	display: flex;
	gap: 12px;
	left: 0;
	padding: 14px 20px 14px 14px;
}

.security-card__icon {
	align-items: center;
	background: var(--mint);
	color: var(--dark);
	display: flex;
	font-size: 23px;
	height: 39px;
	justify-content: center;
	width: 39px;
}

.security-card strong,
.security-card span {
	display: block;
}

.security-card strong {
	font-size: 12px;
}

.security-card span {
	color: var(--ink-soft);
	font-size: 10px;
	margin-top: 3px;
}

.market-card {
	right: 0;
	top: 52px;
	padding: 20px;
	width: 165px;
}

.market-card__label,
.market-card__trend {
	color: var(--ink-soft);
	display: block;
	font-size: 10px;
}

.market-card strong {
	display: block;
	font-family: var(--display);
	font-size: 27px;
	letter-spacing: -.05em;
	margin: 7px 0 1px;
}

.market-card__trend {
	color: #4b9a6d;
}

.chart {
	align-items: end;
	border-bottom: 1px solid var(--line);
	display: flex;
	gap: 4px;
	height: 38px;
	margin-top: 15px;
}

.chart i {
	background: var(--mint-bright);
	display: block;
	height: 30%;
	width: 11px;
}

.chart i:nth-child(2) { height: 45%; }
.chart i:nth-child(3) { height: 36%; }
.chart i:nth-child(4) { height: 65%; }
.chart i:nth-child(5) { height: 54%; }
.chart i:nth-child(6) { height: 78%; }
.chart i:nth-child(7) { background: var(--coral); height: 68%; }
.chart i:nth-child(8) { background: var(--coral); height: 95%; }

.visual-caption {
	bottom: 25px;
	color: var(--white);
	font-family: var(--serif);
	font-size: 22px;
	font-style: italic;
	left: 20%;
	position: absolute;
}

.hero__rule {
	border-top: 1px solid var(--line);
	margin-top: 48px;
}

.hero__bottomline {
	color: var(--ink-soft);
	font-size: 11px;
	justify-content: space-between;
	letter-spacing: .06em;
	padding-top: 18px;
	text-transform: uppercase;
}

.hero__countries {
	align-items: center;
	display: flex;
	gap: 10px;
}

.hero__countries i {
	background: var(--coral);
	border-radius: 50%;
	display: inline-block;
	height: 4px;
	width: 4px;
}

.section {
	padding: 112px 0;
}

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

.section-heading {
	align-items: end;
	display: flex;
	gap: 80px;
	justify-content: space-between;
	margin-bottom: 54px;
}

.section-heading h2,
.split-section h2,
.contact-section h2 {
	font-size: clamp(35px, 4vw, 54px);
	line-height: 1.03;
	margin: 0;
	max-width: 550px;
}

.section-heading__description {
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 3px;
	max-width: 350px;
}

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

.solution-card {
	border: 1px solid var(--line);
	min-height: 330px;
	overflow: hidden;
	padding: 28px;
	position: relative;
	transition: background .2s ease, transform .2s ease;
}

.solution-card + .solution-card {
	border-left: 0;
}

.solution-card:hover {
	background: var(--mint);
	transform: translateY(-5px);
}

.solution-card--featured {
	background: var(--dark);
	color: var(--white);
}

.solution-card--featured:hover {
	background: #193634;
}

.solution-card__image {
	height: 158px;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.solution-card__image::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, .72) 66%, var(--white) 100%);
	content: '';
	inset: 0;
	position: absolute;
}

.solution-card--featured .solution-card__image::after {
	background: linear-gradient(180deg, rgba(16, 35, 34, .02) 0%, rgba(16, 35, 34, .68) 65%, var(--dark) 100%);
}

.solution-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .7s ease;
	width: 100%;
}

.solution-card:hover .solution-card__image img {
	filter: saturate(1.08);
	transform: scale(1.06);
}

.card-number {
	color: var(--coral);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.card-icon {
	color: var(--coral);
	font-family: var(--serif);
	font-size: 34px;
	position: absolute;
	right: 27px;
	top: 20px;
	z-index: 1;
}

.solution-card h3 {
	font-family: var(--display);
	font-size: 23px;
	letter-spacing: -.04em;
	line-height: 1.15;
	margin: 95px 0 15px;
	max-width: 190px;
	position: relative;
	z-index: 1;
}

.solution-card p {
	color: var(--ink-soft);
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 25px;
	max-width: 250px;
	position: relative;
	z-index: 1;
}

.solution-card--featured p {
	color: var(--dark-muted);
}

.solution-card--featured .card-link {
	color: var(--white);
}

.solution-card .card-link {
	position: relative;
	z-index: 1;
}

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

.eyebrow--light {
	color: var(--mint-bright);
}

.split-section {
	display: grid;
	gap: 80px;
	grid-template-columns: 1.1fr .9fr;
}

.split-section__content {
	padding-top: 38px;
}

.split-section__content p {
	color: var(--dark-muted);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 380px;
}

.split-section__content p + p {
	font-size: 13px;
	margin-bottom: 30px;
}

.company-facts {
	border-bottom: 1px solid #36504b;
	border-top: 1px solid #36504b;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 88px;
	padding: 27px 0;
}

.company-fact {
	border-right: 1px solid #36504b;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 25px;
}

.company-fact:first-child {
	padding-left: 0;
}

.company-fact:last-child {
	border-right: 0;
}

.company-fact strong {
	color: var(--mint-bright);
	font-family: var(--display);
	font-size: 26px;
	letter-spacing: -.04em;
}

.company-fact span {
	color: var(--dark-muted);
	font-size: 11px;
	line-height: 1.4;
	max-width: 155px;
}

.company-fact--countries strong {
	font-size: 15px;
	letter-spacing: .03em;
	margin-top: 6px;
}

.regional-coverage {
	border-bottom: 1px solid #36504b;
	padding: 22px 0 28px;
}

.regional-coverage__label {
	color: var(--mint-bright);
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.regional-coverage p {
	color: var(--dark-muted);
	font-size: 12px;
	line-height: 1.7;
	margin: 0;
	max-width: 930px;
}

.principles {
	border-top: 1px solid #36504b;
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 100px;
	padding-top: 30px;
}

.principle span {
	color: var(--coral);
	font-size: 11px;
}

.principle strong {
	display: block;
	font-size: 15px;
	margin: 20px 0 8px;
}

.principle p {
	color: var(--dark-muted);
	font-size: 12px;
	margin: 0;
	max-width: 220px;
}

.contact-section {
	background: var(--mint);
}

.contact-section__inner {
	align-items: start;
	display: grid;
	gap: clamp(45px, 8vw, 110px);
	grid-template-columns: minmax(260px, .78fr) minmax(360px, 1fr);
}

.contact-section__copy {
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.6;
	margin: 24px 0 0;
	max-width: 400px;
}

.contact-section__alternative {
	color: var(--ink-soft);
	font-size: 12px;
	line-height: 1.6;
	margin-top: 34px;
}

.contact-section__alternative a {
	border-bottom: 1px solid var(--coral);
	color: var(--ink);
	font-weight: 700;
}

.contact-form {
	background: var(--white);
	box-shadow: 0 18px 45px rgba(16, 35, 34, .1);
	padding: clamp(24px, 4vw, 38px);
}

.contact-form__fields {
	display: grid;
	gap: 9px 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label:not(.contact-form__consent) {
	align-self: end;
	color: var(--ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
	margin-top: 5px;
}

.contact-form label span,
.contact-form__consent span::first-letter {
	color: var(--coral);
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--ink);
	font: inherit;
	font-size: 12px;
	min-width: 0;
	padding: 12px 13px;
	width: 100%;
}

.contact-form textarea {
	grid-column: 1 / -1;
	line-height: 1.5;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #81918d;
}

.contact-form select:invalid {
	color: #81918d;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--coral);
	box-shadow: 0 0 0 3px rgba(241, 122, 90, .12);
	outline: 0;
}

.contact-form__consent {
	align-items: start;
	display: flex;
	font-size: 10px;
	gap: 9px;
	line-height: 1.45;
	margin: 20px 0;
}

.contact-form__consent input {
	accent-color: var(--coral);
	flex: 0 0 auto;
	margin: 2px 0 0;
}

.contact-form > .button {
	border: 0;
	cursor: pointer;
	width: 100%;
}

.contact-form > .button:disabled {
	cursor: wait;
	opacity: .65;
}

.contact-form__status {
	color: #3d805a;
	font-size: 11px;
	line-height: 1.5;
	margin: 14px 0 0;
}

.contact-form__status.is-error {
	color: #b6533f;
}

.ui-ready .site-header {
	animation: header-enter .7s cubic-bezier(.22, 1, .36, 1) both;
}

.ui-ready .hero__copy {
	animation: copy-enter .9s .12s cubic-bezier(.22, 1, .36, 1) both;
}

.ui-ready .hero__visual {
	animation: visual-enter 1s .2s cubic-bezier(.22, 1, .36, 1) both;
}

.js-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s var(--reveal-delay, 0ms) ease, transform .7s var(--reveal-delay, 0ms) cubic-bezier(.22, 1, .36, 1);
}

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

.ui-motion-ready .hero__image {
	animation: image-drift 16s ease-in-out infinite alternate;
}

.ui-motion-ready .market-card {
	animation: card-float 5s 1s ease-in-out infinite;
}

.ui-motion-ready .security-card {
	animation: card-float 5s 1.7s ease-in-out infinite reverse;
}

.ui-motion-ready .chart i {
	animation: chart-rise .8s cubic-bezier(.22, 1, .36, 1) backwards;
}

.ui-motion-ready .chart i:nth-child(2) { animation-delay: .08s; }
.ui-motion-ready .chart i:nth-child(3) { animation-delay: .16s; }
.ui-motion-ready .chart i:nth-child(4) { animation-delay: .24s; }
.ui-motion-ready .chart i:nth-child(5) { animation-delay: .32s; }
.ui-motion-ready .chart i:nth-child(6) { animation-delay: .4s; }
.ui-motion-ready .chart i:nth-child(7) { animation-delay: .48s; }
.ui-motion-ready .chart i:nth-child(8) { animation-delay: .56s; }

.button {
	overflow: hidden;
	position: relative;
}

.button > * {
	position: relative;
	z-index: 1;
}

.button__ripple {
	animation: button-ripple .6s ease-out forwards;
	background: rgba(255, 255, 255, .24);
	border-radius: 50%;
	height: 20px;
	position: absolute;
	transform: translate(-50%, -50%);
	width: 20px;
}

.contact-form.is-submitted {
	animation: form-confirm .5s ease both;
}

@keyframes header-enter {
	from { opacity: 0; transform: translateY(-14px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes copy-enter {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes visual-enter {
	from { opacity: 0; transform: translateX(24px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes image-drift {
	from { transform: scale(1.02) translate3d(0, 0, 0); }
	to { transform: scale(1.07) translate3d(-10px, -5px, 0); }
}

@keyframes card-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-7px); }
}

@keyframes chart-rise {
	from { transform: scaleY(0); transform-origin: bottom; }
	to { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes button-ripple {
	to { height: 260px; opacity: 0; width: 260px; }
}

@keyframes form-confirm {
	0%, 100% { transform: translateX(0); }
	35% { transform: translateX(-4px); }
	70% { transform: translateX(4px); }
}

.site-footer {
	background: var(--white);
	padding: 44px 0 22px;
}

.site-footer__main {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-bottom: 42px;
}

.brand--footer .brand__mark {
	height: 31px;
	width: 31px;
}

.brand--footer .brand__name {
	font-size: 12px;
}

.site-footer__main p {
	color: var(--ink-soft);
	font-family: var(--serif);
	font-style: italic;
	margin: 0;
}

.site-footer__bottom {
	border-top: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 10px;
	justify-content: space-between;
	padding-top: 18px;
}

@media (max-width: 900px) {
	.main-nav {
		display: none;
	}

	.hero__grid,
	.split-section {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		min-height: 500px;
	}

	.split-section__content {
		padding-top: 0;
	}
}

@media (max-width: 680px) {
	.container {
		width: min(100% - 36px, 540px);
	}

	.topline__inner {
		min-height: 42px;
	}

	.topline__inner > p {
		max-width: 185px;
	}

	.topline__meta span:nth-child(2),
	.topline__separator,
	.topline__meta span:nth-child(4) {
		display: none;
	}

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

	.header-actions {
		gap: 9px;
	}

	.header-actions .button {
		display: none;
	}

	.hero {
		padding-top: 55px;
	}

	h1 {
		font-size: clamp(45px, 14vw, 66px);
	}

	.hero__intro {
		font-size: 15px;
	}

	.hero__trust {
		margin-top: 42px;
	}

	.hero__visual {
		min-height: 390px;
	}

	.hero__image {
		left: 0;
	}

	.market-card {
		right: 8px;
		top: 22px;
		transform: scale(.88);
		transform-origin: top right;
	}

	.security-card {
		bottom: 65px;
		left: 8px;
		transform: scale(.88);
		transform-origin: bottom left;
	}

	.visual-caption {
		bottom: 15px;
		font-size: 18px;
		left: 11%;
	}

	.hero__bottomline {
		align-items: start;
		flex-direction: column;
		gap: 12px;
	}

	.section {
		padding: 75px 0;
	}

	.section-heading,
	.contact-section__inner {
		align-items: start;
		display: block;
	}

	.section-heading__description {
		margin-top: 25px;
	}

	.solutions-grid,
	.principles {
		grid-template-columns: 1fr;
	}

	.solution-card + .solution-card {
		border-left: 1px solid var(--line);
		border-top: 0;
	}

	.solution-card {
		min-height: 280px;
	}

	.solution-card h3 {
		margin-top: 70px;
	}

	.principles {
		gap: 34px;
		margin-top: 70px;
	}

	.company-facts {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 25px;
	}

	.company-fact:nth-child(2) {
		border-right: 0;
	}

	.company-fact:nth-child(3),
	.company-fact:nth-child(4) {
		border-top: 1px solid #36504b;
		padding-top: 25px;
	}

	.company-fact:nth-child(3) {
		padding-left: 0;
	}

	.contact-section__inner .button {
		margin-top: 30px;
	}

	.site-footer__main {
		align-items: start;
		flex-direction: column;
		gap: 20px;
	}

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