:root {
	--bg: #ffffff;
	--fg: #1d1d1f;
	--muted: #6e6e73;
	--card: #f5f5f7;
	--border: rgba(0, 0, 0, 0.08);
	--accent: #007aff;
	--shot-bg: #f5f5f7;
	--shot-border: rgba(0, 0, 0, 0.10);
	--shot-shadow: rgba(0, 0, 0, 0.18);
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #141416;
		--fg: #f5f5f7;
		--muted: #98989d;
		--card: #1f1f22;
		--border: rgba(255, 255, 255, 0.10);
		--accent: #0a84ff;
		--shot-bg: #1f1f22;
		--shot-border: rgba(255, 255, 255, 0.12);
		--shot-shadow: rgba(0, 0, 0, 0.5);
	}
}

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: var(--bg);
	color: var(--fg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
	letter-spacing: -0.02em;
	line-height: 1.15;
}

a {
	color: var(--accent);
}

.hero {
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 24px 0;
	text-align: center;
}

.hero-head {
	display: inline-flex;
	align-items: center;
	gap: 30px;
	text-align: left;
}

.app-icon {
	flex: none;
	width: 104px;
	height: 104px;
	line-height: 0;
}

.app-icon img {
	display: block;
	width: 100%;
	height: auto;
}

.hero h1 {
	font-size: clamp(2.2rem, 5vw, 3rem);
	font-weight: 700;
	margin: 0;
}

.tagline {
	font-size: clamp(1.05rem, 2.4vw, 1.25rem);
	color: var(--muted);
	max-width: 32ch;
	margin: 8px 0 0;
}

.cta {
	margin: 32px 0 8px;
}

.cta-bottom {
	text-align: center;
	margin: 0 0 40px;
}

.pill {
	display: inline-block;
	padding: 11px 22px;
	border: 1px solid var(--accent);
	border-radius: 980px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.98rem;
}

.shot {
	display: block;
	width: 100%;
	background: var(--shot-bg);
	border: 1px solid var(--shot-border);
	border-radius: 20px;
	box-shadow: 0 18px 50px var(--shot-shadow);
}

.hero-shot {
	max-width: 560px;
	margin: 44px auto 0;
}

main {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 24px;
}

.split {
	display: flex;
	align-items: center;
	gap: 56px;
	padding: 96px 0;
}

.split-copy {
	flex: 1;
}

.split .shot {
	flex: 1;
	max-width: 480px;
}

h2 {
	font-size: clamp(1.7rem, 4vw, 2.3rem);
	font-weight: 700;
	margin: 0 0 16px;
}

.split-copy p {
	color: var(--muted);
	font-size: 1.1rem;
	margin: 0;
}

.points {
	max-width: 680px;
	margin: 0 auto;
	padding: 40px 24px 96px;
	text-align: center;
}

.points ul {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	text-align: left;
}

.points li {
	position: relative;
	padding: 22px 0 22px 40px;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 1.14rem;
}

.points li:first-child {
	border-top: none;
}

.points li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 29px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--accent);
}

.points li strong {
	color: var(--fg);
	font-weight: 650;
}

footer {
	border-top: 1px solid var(--border);
	padding: 36px 24px 56px;
	text-align: center;
}

footer nav a {
	color: var(--muted);
	text-decoration: none;
	margin: 0 16px;
	line-height: 2.2;
}

footer nav a:hover {
	color: var(--fg);
	text-decoration: underline;
}

@media (max-width: 760px) {
	.hero {
		padding-top: 56px;
	}

	.split {
		flex-direction: column;
		gap: 32px;
		padding: 64px 0;
		text-align: center;
	}

	.split .shot,
	.hero-shot {
		max-width: 100%;
	}

	footer nav a {
		display: block;
	}
}

.legal {
	max-width: 720px;
	margin: 0 auto;
	padding: 64px 24px 24px;
}

.legal h1 {
	font-size: 2rem;
	margin: 0 0 6px;
}

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

.legal h2 {
	font-size: 1.25rem;
	margin: 34px 0 8px;
}

.legal p {
	color: var(--fg);
}

.back {
	display: inline-block;
	margin-bottom: 28px;
	color: var(--muted);
	text-decoration: none;
}

.back:hover {
	color: var(--fg);
}
