:root {
	--c0: #20092e; /* основной фон */
	--c1: #463d5a; /* акцент 1 */
	--c2: #5aada8; /* акцент 2 / CTA */
	--c3: #bde9d1; /* дополнительный */
	--c5: #f3f3f3; /* светлый фон / текст */
	--ease: cubic-bezier(0.2, 0.6, 0, 1);
}

* {
	box-sizing: border-box;
}
body,
html {
	height: 100%;
}
body {
	margin: 0;
	background: var(--c0);
	color: var(--c5);
	font:
		400 16px/1.6 system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Ubuntu,
		'Helvetica Neue',
		Arial;
	max-width: 100vw;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

.s-a1 {
	position: sticky;
	top: 0;
	z-index: 40;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.75),
		rgba(0, 0, 0, 0.35),
		transparent
	);
	backdrop-filter: saturate(1.2) blur(6px);
}
.s-a1 .s-a2 {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px clamp(16px, 4vw, 40px);
}
.s-a3 {
	display: flex;
	align-items: center;
	gap: 12px;
}
.s-a4 {
	font-weight: 900;
	letter-spacing: 0.4px;
	font-size: clamp(18px, 2.2vw, 24px);
}
.s-a5 {
	display: flex;
	gap: 18px;
}
.s-a5 a {
	opacity: 0.9;
	padding: 10px 12px;
	border-radius: 10px;
	transition:
		opacity 0.3s,
		background 0.3s;
}
.s-a5 a:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.06);
}

.s-a6 {
	display: none;
	flex-direction: column;
	gap: 8px;
}
.s-a6 span {
	width: 26px;
	height: 2px;
	background: var(--c5);
	border-radius: 2px;
	display: block;
}

.s-a7 {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.86);
	display: none;
	z-index: 50;
}
.s-a7 nav {
	position: absolute;
	inset: auto 0 0 0;
	background: #0e0906;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px clamp(16px, 6vw, 56px);
}
.s-a7 ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}
.s-a7 a {
	display: block;
	padding: 12px 8px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
	.s-a5 {
		display: none;
	}
	.s-a6 {
		display: flex;
	}
}

.s-b1 {
	min-height: 100svh;
	display: grid;
	align-items: center;
	padding: clamp(32px, 8vw, 100px) 0;
	background: linear-gradient(180deg, var(--c0), #0c1423);
}
.s-b2 {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 40px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.s-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: 18px;
}
.s-b3 {
	display: grid;
	gap: 10px;
}
.s-b3 label {
	font-weight: 700;
}
.s-b3 input {
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.05);
	color: var(--c5);
}
.s-b3 input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}
.s-b3 .s-btn {
	padding: 12px 16px;
	border-radius: 14px;
	border: 0;
	cursor: pointer;
	background: linear-gradient(135deg, var(--c2), var(--c3));
	color: var(--c0);
	font-weight: 900;
}
.s-b4 {
	font-size: 14px;
	opacity: 0.85;
}
.s-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
@media (max-width: 1000px) {
	.s-b2,
	.s-row {
		grid-template-columns: 1fr;
	}
}

footer.s-f1 {
	padding: 28px clamp(16px, 4vw, 40px);
	background: #050c16;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}
.s-fnav {
	display: flex;
	gap: 14px;
}
.s-addr {
	font-size: 14px;
	opacity: 0.85;
}

.elem--inl-5a486b {
	left: -9999px;
	position: absolute;
	top: -9999px;
}
