:root {
	--cs-navy: #0b2559;
	--cs-blue: #174c8f;
	--cs-orange: #e95824;
	--cs-white: #fff;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100%;
	margin: 0;
}

body.comming-soon-page {
	background: var(--cs-navy);
	color: var(--cs-white);
	font-family: "Comming Soon Montserrat", Montserrat, Arial, Helvetica, sans-serif;
}

.cs-landing {
	position: relative;
	display: flex;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	align-items: flex-end;
	padding: clamp(28px, 5vw, 76px);
	isolation: isolate;
}

.cs-landing__background,
.cs-landing__overlay {
	position: absolute;
	inset: 0;
}

.cs-landing__background {
	z-index: -3;
	background-color: var(--cs-navy);
	background-image: var(--cs-background);
	background-position: center;
	background-size: cover;
}

.cs-landing__overlay {
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(7, 31, 77, 0.9) 0%, rgba(11, 37, 89, 0.6) 45%, rgba(11, 37, 89, 0.2) 100%),
		linear-gradient(0deg, rgba(7, 31, 77, 0.68) 0%, transparent 62%);
}

.cs-landing__logo {
	position: absolute;
	z-index: 2;
	top: var(--cs-logo-desktop-y);
	left: var(--cs-logo-desktop-x);
	width: var(--cs-logo-desktop-width);
	max-width: none;
	height: auto;
	max-height: 42vh;
	object-fit: contain;
	transform: translateY(-50%);
}

.cs-landing__content {
	position: absolute;
	z-index: 1;
	top: var(--cs-content-desktop-y);
	left: var(--cs-content-desktop-x);
	width: var(--cs-content-desktop-width);
	max-width: none;
	padding: clamp(24px, 4vw, 48px);
	border-left: 6px solid var(--cs-orange);
	border-radius: 0 8px 8px 0;
	background: rgba(11, 37, 89, 0.9);
	box-shadow: 0 22px 70px rgba(7, 31, 77, 0.28);
	backdrop-filter: blur(8px);
	transform: translateY(-50%);
}

.cs-landing h1 {
	margin: 0;
	color: var(--cs-white);
	font-family: var(--cs-heading-font);
	font-size: clamp(42px, 7vw, 88px);
	font-style: var(--cs-heading-style);
	font-weight: var(--cs-heading-weight);
	letter-spacing: -0.035em;
	line-height: 0.98;
}

.cs-landing__text {
	max-width: 660px;
	margin-top: 20px;
	color: var(--cs-white);
	font-family: var(--cs-body-font);
	font-size: clamp(16px, 1.65vw, 21px);
	font-style: var(--cs-body-style);
	font-weight: var(--cs-body-weight);
	line-height: 1.6;
}

.cs-landing__text p {
	margin: 0 0 1em;
}

.cs-landing__text p:last-child {
	margin-bottom: 0;
}

.cs-landing__text a {
	color: var(--cs-white);
	text-decoration-color: var(--cs-orange);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

@media (max-width: 960px) {
	.cs-landing__logo {
		top: var(--cs-logo-tablet-y);
		left: var(--cs-logo-tablet-x);
		width: var(--cs-logo-tablet-width);
	}

	.cs-landing__content {
		top: var(--cs-content-tablet-y);
		left: var(--cs-content-tablet-x);
		width: var(--cs-content-tablet-width);
	}
}

@media (max-width: 640px) {
	.cs-landing {
		padding: 20px;
	}

	.cs-landing__overlay {
		background:
			linear-gradient(0deg, rgba(7, 31, 77, 0.94) 0%, rgba(11, 37, 89, 0.42) 72%, rgba(11, 37, 89, 0.2) 100%);
	}

	.cs-landing__logo {
		top: var(--cs-logo-phone-y);
		left: var(--cs-logo-phone-x);
		width: var(--cs-logo-phone-width);
		max-height: 34vh;
	}

	.cs-landing__content {
		top: var(--cs-content-phone-y);
		left: var(--cs-content-phone-x);
		width: var(--cs-content-phone-width);
		padding: 24px 20px;
		border-left-width: 4px;
	}

	.cs-landing h1 {
		font-size: clamp(38px, 13vw, 58px);
	}

	.cs-landing__text {
		font-size: 16px;
		line-height: 1.55;
	}
}
