@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 100 900;
	src: url("fonts/inter/inter-english.woff2") format("woff2");
	unicode-range: U+0000-00A0, U+00A2-00A9, U+00AC-00AE, U+00B0-00B7, U+00B9-00BA, U+00BC-00BE, U+00D7, U+00F7, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-21BB, U+2212, U+2215, U+F8FF, U+FEFF, U+FFFD;
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 100 900;
	src: url("fonts/inter/inter-rest-latin.woff2") format("woff2");
	unicode-range: U+00A1, U+00AA-00AB, U+00AF, U+00B8, U+00BB, U+00BF-00D6, U+00D8-00F6, U+00F8-00FF, U+0131, U+0152-0153, U+02B0-02FF;
}

@font-face {
	font-family: "DM Sans";
	font-style: normal;
	font-weight: 400 700;
	src: url("fonts/dm-sans/dm-sans-english.woff2") format("woff2");
	unicode-range: U+0000-00A0, U+00A2-00A9, U+00AC-00AE, U+00B0-00B7, U+00B9-00BA, U+00BC-00BE, U+00D7, U+00F7, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-21BB, U+2212, U+2215, U+F8FF, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "DM Sans";
	font-style: normal;
	font-weight: 400 700;
	src: url("fonts/dm-sans/dm-sans-rest-latin.woff2") format("woff2");
	unicode-range: U+00A1, U+00AA-00AB, U+00AF, U+00B8, U+00BB, U+00BF-00D6, U+00D8-00F6, U+00F8-00FF, U+0131, U+0152-0153, U+02B0-02FF;
}

@font-face {
	font-family: "Crimson Text";
	font-style: normal;
	font-weight: 400;
	src: url("fonts/crimson-text/crimson-text-english.woff2") format("woff2");
	unicode-range: U+0000-00A0, U+00A2-00A9, U+00AC-00AE, U+00B0-00B7, U+00B9-00BA, U+00BC-00BE, U+00D7, U+00F7, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-21BB, U+2212, U+2215, U+F8FF, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Crimson Text";
	font-style: normal;
	font-weight: 400;
	src: url("fonts/crimson-text/crimson-text-rest-latin.woff2") format("woff2");
	unicode-range: U+00A1, U+00AA-00AB, U+00AF, U+00B8, U+00BB, U+00BF-00D6, U+00D8-00F6, U+00F8-00FF, U+0131, U+0152-0153, U+02B0-02FF;
}

@font-face {
	font-family: "Roboto Mono";
	font-style: normal;
	font-weight: 500;
	src: url("fonts/roboto-mono/roboto-mono-english.woff2") format("woff2");
	unicode-range: U+0000-00A0, U+00A2-00A9, U+00AC-00AE, U+00B0-00B7, U+00B9-00BA, U+00BC-00BE, U+00D7, U+00F7, U+2000-206F, U+2074, U+20AC, U+2122, U+2190-21BB, U+2212, U+2215, U+F8FF, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Roboto Mono";
	font-style: normal;
	font-weight: 500;
	src: url("fonts/roboto-mono/roboto-mono-rest-latin.woff2") format("woff2");
	unicode-range: U+00A1, U+00AA-00AB, U+00AF, U+00B8, U+00BB, U+00BF-00D6, U+00D8-00F6, U+00F8-00FF, U+0131, U+0152-0153, U+02B0-02FF;
}

:root {
	--bg: #f7f7f9;
	--bg-main: #fff;
	--text: #000;
	--muted: #6f6f6f;
	--line: #e9e9e9;
	--accent: #1a5e7b;
	--container-max: 1600px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	width: 100%;
	background: var(--bg);
	color: var(--text);
	font-family: "DM Sans", Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.4;
}

body.home {
	background: var(--bg-main);
}

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

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

h1,
h2,
h3,
p,
ul {
	margin: 0;
}

ul {
	list-style: none;
	padding: 0;
}

.container {
	width: min(var(--container-max), calc(100% - 32px));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 16px;
	left: 50%;
	z-index: 2000;
	transform: translate(-50%, -220%);
	border: 1px solid #fff;
	border-radius: 12px;
	background: #000;
	color: #fff;
	padding: 12px 16px;
	font-size: 16px;
}

.skip-link:focus {
	transform: translate(-50%, 0);
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 2px;
	border-radius: 10px;
}

.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #08415c;
	color: #fff;
	padding: 14px 22px;
	white-space: nowrap;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.35px;
	line-height: 1.4;
	cursor: pointer;
	width: 100%;
	transition: background 0.5s;
}

.button:hover {
	background: #1a5e7b;
}

.section-pill-nav {
	display: none;
}

.top-nav-shell {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1200;
	background: #fff;
	border-bottom: 1px solid #ececec;
}

.top-nav {
	min-height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 20px;
	padding-bottom: 8px;
}

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

.brand-mark {
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
}

.brand-mark img {
	position: absolute;
	top: 0;
	left: -16.13%;
	width: 337.68%;
	height: 100%;
	max-width: none;
}

.brand-name {
	white-space: nowrap;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.8px;
	line-height: 1.2;
}

.cta-desktop {
	display: none;
}

.mobile-menu {
	position: relative;
}

.mobile-menu::details-content {
	opacity: 0;
	transition: opacity 0.5s, content-visibility 0.5s allow-discrete;
}

.mobile-menu[open]::details-content {
	opacity: 1;
}

.mobile-menu summary {
	list-style: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
}

.mobile-menu summary::-webkit-details-marker {
	display: none;
}

.mobile-menu nav {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: min(335px, calc(100vw - 20px));
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 2px 4px rgb(0 0 0 / 5%);
	padding: 8px 20px 32px;
	display: grid;
	gap: 0;
}

.mobile-menu nav a {
	display: block;
	border-top: 1px solid var(--line);
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.35px;
	line-height: 1.4;
	padding: 30px 0;
}

.mobile-menu nav a.button {
	margin-top: 50px;
	padding: 14px 22px;
}

.mobile-menu nav a:first-child {
	border-top: 0;
}

.mobile-menu nav .button {
	margin-top: 12px;
	width: fit-content;
	padding-right: 26px;
	padding-left: 26px;
}

.site-header {
	position: relative;
}

.hero {
	padding-top: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.hero-title-mobile,
.hero-title-wide h1 {
	width: min-content;
	min-width: 100%;
	text-align: center;
	font-family: "Crimson Text", serif;
	font-size: clamp(52px, 16vw, 56px);
	font-weight: 400;
	letter-spacing: -3.4px;
	line-height: 0.9;
	text-wrap-style: balance;
}

.hero-title-mobile span {
	display: block;
}

.hero-title-wide {
	display: none;
	width: 100%;
}

.hero-image {
	display: flex;
	width: 100%;
	height: auto;
	max-width: 342px;
	border-radius: 100000px;
	overflow: hidden;
	margin: 0;
}

.hero-image img {
	width: 100%;
	aspect-ratio: 1914 / 1242;
	object-fit: cover;
}

.section {
	scroll-margin-top: 100px;
}

.section-system {
	padding-top: 80px;
	padding-bottom: 60px;
}

.intro-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
	margin-bottom: 50px;
}

.intro-block p {
	color: #000;
	font-family: "Crimson Text", serif;
	font-size: 40px;
	font-weight: 400;
	letter-spacing: -1.8px;
	line-height: 0.9;
}

.section h2 {
	color: #000;
	font-family: "Crimson Text", serif;
	font-size: clamp(40px, 8vw, 60px);
	font-weight: 400;
	letter-spacing: -1.8px;
	line-height: 0.9;
	text-wrap-style: pretty;
}

.card-grid {
	padding-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.card {
	position: relative;
	width: 100%;
	min-width: 265px;
	border: 0;
	border-radius: 0;
	background: transparent;
	padding: 20px 20px 20px 0;
}

.card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-top: 1px solid #e9e9e9;
	pointer-events: none;
}

.card-icon {
	display: block;
	width: 24px;
	height: 24px;
	margin-bottom: 16px;
}

.card h3 {
	color: #000;
	font-family: "Crimson Text", serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.54px;
	line-height: 1;
	margin-bottom: 12px;
}

.card p {
	color: var(--muted);
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.08px;
	line-height: 1.4;
}

.section-security {
	padding-top: 20px;
	padding-bottom: 20px;
}

.security-layout {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.security-content h2 {
	margin-bottom: 40px;
}

.security-list {
	display: flex;
	flex-direction: column;
}

.security-list li {
	padding-top: 20px;
	padding-bottom: 20px;
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: flex-start;
	gap: 16px;
	border-top: 1px solid var(--line);
}

.security-icon {
	width: 18px;
	height: 14px;
	margin-top: 2px;
}

.security-list h3 {
	color: #000;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.08px;
	line-height: 1.4;
	margin-bottom: 6px;
}

.security-list p {
	color: var(--muted);
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.075px;
	line-height: 1.4;
}

.security-image {
	margin: 0;
	width: 100%;
	height: 246px;
	overflow: hidden;
}

.security-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-scale {
	padding-top: 120px;
	padding-bottom: 80px;
}

.section-scale h2 {
	text-align: left;
}

.outcomes {
	max-width: 350px;
	margin: 60px auto 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.outcomes li {
	padding: 8px 0;
}

.outcomes h3 {
	color: #000;
	font-family: "Crimson Text", serif;
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 8px;
}

.outcomes p {
	color: var(--muted);
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.08px;
	line-height: 1.4;
}

.at-scale-image {
	margin: 60px 0 0;
	width: 100%;
	height: 264px;
	border-radius: 30px;
	overflow: hidden;
}

.at-scale-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-cta {
	padding-top: 60px;
	padding-bottom: 60px;
}

.cta-inner {
	padding: 80px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.cta-inner h2 {
	text-align: center;
}

.section-contact {
	padding-top: 120px;
	padding-bottom: 80px;
}

.contact-layout {
	max-width: 690px;
}

.contact-layout h1 {
	color: #000;
	font-family: "Crimson Text", serif;
	font-size: clamp(42px, 10vw, 64px);
	font-weight: 400;
	letter-spacing: -1.8px;
	line-height: 0.95;
	text-align: center;
}

.intro {
	color: var(--text);
	font-family: "DM Sans", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	text-wrap-style: balance;
	text-align: center;
	margin-bottom: 20px;
}

form {
	margin-top: 40px;
	margin-left: -16px;
	margin-right: -16px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 20px;
	background: var(--bg-main);
}

.horizontal-form {
	display: flex;
	gap: 20px;
}

.horizontal-form > * {
	flex-grow: 1;
}

form label {
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.35px;
	line-height: 1.5;
}

form input,
form textarea {
	width: 100%;
	border: 1px solid var(--muted);
	border-radius: 12px;
	background: #fff;
	color: var(--text);
	margin-top: 8px;
	padding: 14px 16px;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 1.4;
}

form textarea {
	min-height: 150px;
	resize: vertical;
}

/* noinspection Stylelint */
form .button {
	width: fit-content;
}

.section-policy {
	padding-top: 120px;
	padding-bottom: 80px;
}

.page-layout {
	max-width: 960px;
}

.page-layout h1 {
	color: #000;
	font-family: "Crimson Text", serif;
	font-size: clamp(42px, 10vw, 64px);
	font-weight: 400;
	letter-spacing: -1.8px;
	line-height: 0.95;
	text-align: center;
	text-wrap-style: balance;
}

.policy-content {
	margin-top: 40px;
	margin-left: -16px;
	margin-right: -16px;
	padding: 20px;
	background: var(--bg-main);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.policy-content h2,
.policy-content h3 {
	color: var(--text);
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	letter-spacing: -0.4px;
	line-height: 1.3;
}

.policy-content h2 {
	font-size: 28px;
	margin-top: 18px;
}

.policy-content h3 {
	font-size: 20px;
	margin-top: 10px;
}

.policy-content p,
.policy-content li {
	color: var(--text);
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

.policy-content ul {
	list-style: disc;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* noinspection Stylelint */
.policy-content a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px;
	word-break: break-word;
}

.site-footer {
	border-top: 1px solid #e9e9e9;
	padding-top: 40px;
	padding-bottom: 40px;
}

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

.footer-brand {
	display: inline-flex;
}

.copyright {
	display: flex;
	flex-wrap: wrap;
	column-gap: 16px;
	font-family: "Roboto Mono", monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: -0.12px;
	line-height: 1.4;
}

.copyright-wide {
	display: none;
}

.legal-links {
	display: flex;
	align-items: center;
	gap: 20px;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.35px;
	line-height: 1.4;
}

/* noinspection Stylelint */
.legal-links a {
	transition: opacity .5s;
}

/* noinspection Stylelint */
.legal-links a:hover {
	opacity: 0.55;
}

@media (width >= 800px) {
	.container {
		width: min(var(--container-max), calc(100% - 80px));
	}

	.hero-title-mobile {
		display: none;
	}

	.hero-title-wide {
		display: block;
	}

	.hero-title-wide h1 {
		min-width: 0;
		width: auto;
		text-align: center;
		font-size: 80px;
		line-height: 80px;
		letter-spacing: -3.2px;
	}

	.button {
		width: unset;
	}

	.section-pill-nav {
		position: fixed;
		top: 16px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1300;
		display: inline-flex;
		align-items: center;
		gap: 27px;
		border-radius: 100px;
		padding: 20px 24px;
		backdrop-filter: blur(15px);
		background: rgb(255 255 255 / 40%);
	}

	.section-pill-nav a {
		white-space: nowrap;
		font-family: "DM Sans", sans-serif;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: -0.35px;
		line-height: 1.4;
		transition: opacity .5s;
	}

	.section-pill-nav a:hover {
		opacity: 0.55;
	}

	.top-nav-shell {
		position: static;
		border-bottom: 0;
		background: transparent;
	}

	.top-nav {
		min-height: 150px;
		padding-top: 20px;
		padding-bottom: 80px;
		align-items: center;
	}

	.mobile-menu {
		display: none;
	}

	.cta-desktop {
		display: inline-flex;
	}

	.hero {
		padding-top: 0;
		align-items: flex-start;
		gap: 100px;
	}

	.hero-image {
		max-width: none;
		width: 100%;
		height: 325px;
	}

	.section-system {
		padding-bottom: 80px;
	}

	.intro-block {
		padding-right: 200px;
	}

	.intro-block p {
		font-size: 54px;
	}

	.card {
		width: calc((100% - 20px) / 2);
	}

	.section-security {
		padding-top: 40px;
		padding-bottom: 80px;
	}

	.security-image {
		height: 550px;
	}

	.section-scale {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.outcomes {
		max-width: unset;
		width: 720px;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 32px;
	}

	.at-scale-image {
		margin-top: 60px;
		height: 325px;
	}

	.cta-inner {
		padding-right: 100px;
		padding-left: 100px;
	}

	.section-contact {
		padding-top: 40px;
		padding-bottom: 120px;
	}

	.section-policy {
		padding-top: 40px;
		padding-bottom: 120px;
	}

	form {
		margin-left: 0;
		margin-right: 0;
		border-radius: 30px;
		padding: 30px;
	}

	.policy-content {
		margin-left: 0;
		margin-right: 0;
		border-radius: 30px;
		padding: 30px;
		gap: 20px;
	}
}

@media (width >= 1280px) {
	.top-nav {
		max-width: 1500px;
	}

	.brand-name {
		font-size: 24px;
		letter-spacing: -1.2px;
	}

	.hero-image {
		height: 546px;
	}

	.intro-block {
		padding-right: 400px;
	}

	.intro-block p {
		font-size: 60px;
	}

	.card {
		width: auto;
		flex: 1 1 265px;
		max-width: 388px;
	}

	.section-security {
		padding-top: 0;
		padding-bottom: 0;
	}

	.security-layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
	}

	.security-content {
		flex: 1 0 0;
	}

	.security-image {
		flex: 1 0 0;
		height: 711px;
	}

	.section-scale .container {
		max-width: 1200px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 60px;
		padding-right: 64px;
		padding-left: 64px;
	}

	.section-scale h2 {
		text-align: center;
	}

	.outcomes {
		width: 100%;
	}

	.at-scale-image {
		width: 100%;
		max-width: 1072px;
		height: 425px;
		margin-top: 0;
	}

	.cta-inner {
		padding-right: 300px;
		padding-left: 300px;
	}

	.footer-layout {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.copyright-mobile {
		display: none;
	}

	.copyright-wide {
		display: flex;
		flex-grow: 1;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.animate-in {
		opacity: 0;
		transform: translateY(9px);
		animation: fade-up 1000ms ease-out forwards;
	}

	.fade-1 {
		animation-delay: 80ms;
	}

	.fade-2 {
		animation-delay: 170ms;
	}

	.fade-3 {
		animation-delay: 260ms;
	}

	.fade-4 {
		animation-delay: 350ms;
	}

	.fade-5 {
		animation-delay: 440ms;
	}

	.fade-6 {
		animation-delay: 530ms;
	}

	@keyframes fade-up {
		from {
			opacity: 0;
			transform: translateY(9px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
