:root {
	--ink: #15171a;
	--muted: #5f666f;
	--paper: #fbfaf6;
	--panel: #ffffff;
	--line: #ded8cb;
	--green: #5f8f5a;
	--amber: #d9a441;
	--rose: #b85b55;
	--blue: #587c9b;
	--shadow: 0 24px 70px rgba(21, 23, 26, 0.16);
	color-scheme: light;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
}

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

a {
	color: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	padding: 14px clamp(18px, 4vw, 56px);
	border-bottom: 1px solid rgba(21, 23, 26, 0.08);
	background: rgba(251, 250, 246, 0.88);
	backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	font-weight: 760;
}

.brand img {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	box-shadow: 0 10px 24px rgba(21, 23, 26, 0.16);
}

.brand span {
	font-size: 1.02rem;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 26px);
	font-size: 0.95rem;
	color: var(--muted);
}

.nav-links a {
	text-decoration: none;
}

.nav-links a:hover {
	color: var(--ink);
}

.app-store-link,
.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--ink);
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	font-weight: 720;
	text-decoration: none;
}

.button-link.secondary {
	background: transparent;
	color: var(--ink);
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100svh - 72px);
	padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(88px, 10vw, 132px);
	background:
		linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.9) 42%, rgba(251, 250, 246, 0.38) 100%),
		#e8dcc8;
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 130px;
	background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--paper));
	pointer-events: none;
}

.hero-copy {
	position: relative;
	z-index: 2;
	max-width: 720px;
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--green);
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.02;
}

h1 {
	max-width: 100%;
	font-size: clamp(4rem, 10vw, 8.2rem);
	font-weight: 880;
	white-space: nowrap;
}

.hero-title-spaced {
	word-spacing: 0.16em;
}

.hero-subtitle {
	max-width: 540px;
	margin: 24px 0 0;
	color: #2b2f34;
	font-size: clamp(1.15rem, 2vw, 1.7rem);
	line-height: 1.45;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.hero-notes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
	padding: 0;
	list-style: none;
	color: var(--muted);
	font-size: 0.95rem;
}

.hero-notes li {
	padding: 7px 10px;
	border: 1px solid rgba(21, 23, 26, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.54);
}

.hero-shots {
	position: absolute;
	right: clamp(-150px, -7vw, -84px);
	top: 42px;
	bottom: 42px;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(170px, 20vw));
	align-items: center;
	gap: clamp(14px, 2vw, 28px);
	width: min(42vw, 560px);
	opacity: 0.92;
	pointer-events: none;
}

.hero-shots .phone-shot:first-child {
	display: none;
}

.phone-shot {
	overflow: hidden;
	aspect-ratio: 9 / 19.5;
	border: 1px solid rgba(21, 23, 26, 0.2);
	border-radius: clamp(22px, 3vw, 42px);
	background: #111;
	box-shadow: var(--shadow);
}

.phone-shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.phone-shot:nth-child(1) {
	transform: translateY(36px) rotate(-7deg);
}

.phone-shot:nth-child(2) {
	transform: translateY(-20px) rotate(3deg);
}

.phone-shot:nth-child(3) {
	transform: translateY(70px) rotate(8deg);
}

.section {
	padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-inner {
	max-width: 1160px;
	margin: 0 auto;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
	gap: clamp(22px, 5vw, 72px);
	align-items: end;
	margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading h2 {
	font-size: clamp(2.25rem, 5vw, 5rem);
}

.section-heading p,
.large-copy {
	margin: 0;
	color: var(--muted);
	font-size: clamp(1.03rem, 1.6vw, 1.28rem);
	line-height: 1.55;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.feature {
	min-height: 230px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
}

.feature strong {
	display: block;
	margin-bottom: 18px;
	font-size: 0.92rem;
	color: var(--muted);
	text-transform: uppercase;
}

.feature h3 {
	font-size: 1.55rem;
	line-height: 1.12;
}

.feature p {
	margin: 18px 0 0;
	color: var(--muted);
	line-height: 1.55;
}

.screens-band {
	background: #25231f;
	color: #fff;
}

.screens-band .section-heading p,
.screens-band .eyebrow {
	color: #d8d0c1;
}

.screens-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 26px);
	align-items: start;
}

.screen-frame {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: #111;
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.screen-frame img {
	width: 100%;
	aspect-ratio: 9 / 19.5;
	object-fit: cover;
}

.split-section {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
	gap: clamp(28px, 6vw, 84px);
	align-items: center;
}

.language-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--line);
}

.language-list span {
	color: var(--muted);
}

.legal-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.legal-card {
	min-height: 156px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	text-decoration: none;
}

.legal-card h3 {
	font-size: 1.32rem;
}

.legal-card p {
	margin: 14px 0 0;
	color: var(--muted);
	line-height: 1.5;
}

.site-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 34px clamp(20px, 5vw, 72px);
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.footer-links a {
	text-decoration: none;
}

.legal-main {
	padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.legal-document {
	max-width: 860px;
	margin: 0 auto;
}

.legal-document h1 {
	max-width: 100%;
	font-size: clamp(2.5rem, 7vw, 5.8rem);
}

.legal-document .updated {
	margin: 18px 0 42px;
	color: var(--muted);
}

.legal-document h2 {
	margin-top: 40px;
	font-size: 1.55rem;
}

.legal-document p,
.legal-document li {
	color: #30353a;
	font-size: 1.04rem;
	line-height: 1.7;
}

.legal-document ul {
	padding-left: 1.2rem;
}

.support-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.support-option {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
}

.support-option p {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.nav-links {
		display: none;
	}

	.hero {
		min-height: auto;
		padding: 54px clamp(18px, 5vw, 44px) 360px;
		background:
			linear-gradient(180deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.9) 55%, rgba(251, 250, 246, 0.18) 100%),
			#e8dcc8;
	}

	.hero-copy {
		max-width: 620px;
	}

	h1 {
		white-space: normal;
	}

	.hero-shots {
		inset: auto -72px 30px 18px;
		grid-template-columns: repeat(2, minmax(160px, 190px));
		justify-content: end;
		width: auto;
		height: 300px;
		opacity: 0.98;
	}

	.hero-shots .phone-shot:first-child {
		display: block;
	}

	.phone-shot:nth-child(1) {
		transform: translateY(34px) rotate(-8deg);
	}

	.phone-shot:nth-child(2) {
		transform: translateY(-8px) rotate(3deg);
	}

	.phone-shot:nth-child(3) {
		display: none;
	}

	.section-heading,
	.split-section {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.legal-links,
	.support-options {
		grid-template-columns: 1fr;
	}

	.screens-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.site-header {
		min-height: 64px;
		padding: 10px 14px;
		gap: 12px;
	}

	.brand {
		gap: 9px;
	}

	.brand img {
		width: 34px;
		height: 34px;
	}

	.brand span {
		font-size: 0.95rem;
	}

	.site-header .app-store-link {
		min-height: 38px;
		padding: 0 13px;
		font-size: 0.9rem;
		white-space: nowrap;
	}

	h1 {
		max-width: 100%;
		font-size: clamp(3rem, 15vw, 4.7rem);
		white-space: nowrap;
	}

	.hero-title-spaced {
		word-spacing: 0.04em;
	}

	.hero {
		padding-top: 38px;
		padding-bottom: 190px;
	}

	.hero-subtitle {
		max-width: 100%;
		font-size: 1.08rem;
	}

	.hero-actions {
		margin-top: 28px;
	}

	.hero-shots {
		inset: auto -58px 22px 18px;
		grid-template-columns: repeat(2, minmax(124px, 148px));
		height: 176px;
	}

	.phone-shot:nth-child(1) {
		transform: translateY(88px) rotate(-8deg);
	}

	.phone-shot:nth-child(2) {
		transform: translateY(68px) rotate(3deg);
	}

	.hero-notes {
		font-size: 0.85rem;
	}

	.screens-row {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}

	.hero-actions .button-link {
		width: 100%;
	}
}
