@font-face {
	font-family: Satoshi;
	src: url('/assets/fonts/Satoshi-Regular.otf') format('opentype');
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: Satoshi;
	src: url('/assets/fonts/Satoshi-Bold.otf') format('opentype');
	font-weight: 700;
	font-display: swap;
}
:root {
	color-scheme: dark;
	--background: #111510;
	--text: #f0f3ed;
	--muted: #afb7aa;
	--accent: #78c8a1;
	--line: #394235;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 10rem;
}
body {
	margin: 0;
	background: var(--background);
	color: var(--text);
	font-family: Satoshi, Arial, sans-serif;
	font-size: 1.0625rem;
	line-height: 1.65;
}
a {
	color: inherit;
	text-underline-offset: 0.3em;
}
a:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 6px;
}
.wrap {
	width: min(100% - 96px, 1200px);
	margin-inline: auto;
}
.header {
	position: sticky;
	top: 0;
	z-index: 10;
	width: 100%;
	background: var(--background);
	padding-inline: max(48px, calc((100% - 1200px) / 2));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 30px;
}
.header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: max(48px, calc((100% - 1200px) / 2));
	right: max(48px, calc((100% - 1200px) / 2));
	height: 1px;
	background: var(--line);
}
.wordmark {
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: -0.08em;
	text-decoration: none;
}
.wordmark span {
	color: var(--accent);
}
nav {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	font-size: 0.9375rem;
}
nav a {
	position: relative;
	padding-bottom: 12px;
	text-decoration: none;
}
nav a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}
nav a:hover,
nav a:focus-visible {
	color: var(--accent);
}
nav a:hover::after,
nav a:focus-visible::after {
	transform: scaleX(1);
}
h1,
h2,
h3,
p {
	margin: 0;
}
h1,
h2,
h3 {
	font-weight: 700;
}
.eyebrow {
	font-size: 0.875rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}
.hero {
	padding-top: clamp(72px, 10vw, 144px);
	padding-bottom: 32px;
}
.hero .eyebrow {
	color: var(--muted);
	margin-bottom: 36px;
}
h1 {
	font-size: clamp(3rem, 6.8vw, 6.25rem);
	letter-spacing: -0.065em;
	line-height: 1.07;
}
h1 span {
	color: var(--accent);
}
.hero-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: end;
	margin-top: 64px;
}
.hero-bottom p {
	color: var(--muted);
	font-size: 1.1875rem;
	max-width: 560px;
}
.link {
	font-weight: 700;
	text-decoration-thickness: 1px;
	justify-self: start;
}
.link span {
	margin-left: 32px;
}
.release {
	border-top: 1px solid var(--line);
	margin-top: 88px;
	padding-top: 24px;
	font-size: 0.875rem;
	color: var(--muted);
}
.functions {
	background: #edf1e9;
	color: #192018;
	padding-block: 100px;
	margin-top: 32px;
	color-scheme: light;
}
.section-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px 64px;
	margin-bottom: 64px;
}
.section-intro .eyebrow {
	grid-column: 1 / -1;
}
h2 {
	font-size: clamp(2.35rem, 4.3vw, 4rem);
	letter-spacing: -0.055em;
	line-height: 1.1;
}
.section-intro > p:last-child {
	align-self: end;
	max-width: 510px;
}
.feature-list {
	border-top: 1px solid #b9c3b3;
}
.feature-list article {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 48px;
	padding-block: 28px;
	border-bottom: 1px solid #b9c3b3;
}
h3 {
	font-size: 1.4rem;
	letter-spacing: -0.025em;
	line-height: 1.3;
}
.feature-list p {
	color: #475141;
	max-width: 650px;
}
.sharing {
	padding-block: 112px;
}
.sharing .eyebrow {
	color: var(--accent);
}
.sharing .section-intro > p:last-child {
	color: var(--muted);
}
.sharing-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px 64px;
}
.sharing-list article {
	border-top: 1px solid var(--line);
	padding-top: 24px;
}
.sharing-list p {
	color: var(--muted);
	margin-top: 16px;
	max-width: 520px;
}
.privacy {
	background: var(--accent);
	color: #14261c;
	padding-block: 80px;
	color-scheme: light;
}
.privacy-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px 64px;
}
.privacy .eyebrow {
	grid-column: 1 / -1;
}
.privacy-layout > div {
	align-self: end;
}
.privacy p + p {
	margin-top: 20px;
}
.development {
	padding-block: 104px;
}
.development .eyebrow {
	color: var(--muted);
	margin-bottom: 28px;
}
.development > p:not(.eyebrow) {
	color: var(--muted);
	max-width: 640px;
	margin-top: 32px;
}
.development-status {
	display: block;
	color: var(--accent);
	font-size: 0.9375rem;
	margin-top: 32px;
}
.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	border-top: 1px solid var(--line);
	padding-block: 28px;
}
.footer p {
	color: var(--muted);
	font-size: 0.875rem;
}
@media (max-width: 760px) {
	.wrap {
		width: calc(100% - 40px);
	}
	.header {
		padding-inline: 20px;
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		padding-block: 20px;
	}
	.header::after {
		left: 20px;
		right: 20px;
	}
	nav {
		width: 100%;
		gap: 24px;
	}
	.hero {
		padding-top: 64px;
	}
	h1 {
		font-size: clamp(2.6rem, 8.8vw, 4.2rem);
	}
	.hero-bottom {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-top: 36px;
	}
	.hero-bottom p {
		grid-row: 1;
		font-size: 1.0625rem;
	}
	.release {
		margin-top: 56px;
	}
	.functions,
	.sharing,
	.development {
		padding-block: 64px;
	}
	.section-intro,
	.privacy-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.section-intro {
		margin-bottom: 40px;
	}
	.feature-list article {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-block: 24px;
	}
	.sharing-list {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.privacy {
		padding-block: 56px;
	}
}
@media (prefers-reduced-motion: reduce) {
	nav a::after {
		transition: none;
	}
	html {
		scroll-behavior: auto;
	}
}
