:root {
	--blue: #075ddd;
	--navy: #09286e;
	--ink: #10233f;
	--muted: #687a91;
	--line: #dfe8f4;
	--green: #28ad65;
	--purple: #7a3fd2;
	--soft: #f7faff;
	--shadow: 0 14px 36px rgba(7, 52, 111, .08)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--ink);
	background: #fff
}

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

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

.shell {
	width: min(1240px, calc(100% - 32px));
	margin: auto
}

.wide-shell {
	width: min(1680px, calc(100% - 24px));
	margin: auto
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line)
}

.nav-wrap {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.logo {
	width: 170px
}

.nav-wrap nav {
	display: flex;
	gap: 24px;
	font-weight: 800;
	font-size: 14px
}

.section-head {
	margin-bottom: 10px
}

.section-head.center {
	text-align: center
}

.section-head span {
	color: var(--blue);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase
}

.section-head h1,
.section-head h2 {
	margin: 8px 0 10px;
	font-size: 30px;
	line-height: 1.08
}

.section-head p {
	max-width: 840px;
	margin: auto;
	color: var(--muted);
	font-size: 16px
}

@media(max-width:700px) {
	.nav-wrap nav {
		display: none
	}

	.logo {
		width: 145px
	}
}