:root {
	--max-width: 1000px;
	--accent: #2b6cb0;
}

* {
	box-sizing: border-box;
}

body {
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	margin: 0;
	color: #122;
}

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

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 24px;
}

.site-header {
	background: #f7fbff;
	border-bottom: 1px solid #e6eef8;
}

.site-header .container { display: flex; align-items: center; justify-content: space-between; }

nav a { margin-left: 16px; text-decoration: none; color: inherit; }

.brand { font-weight: 700; margin: 0; }

.hero { padding: 48px 0; }
.hero h2 { margin: 0 0 8px; }

.store-links { margin-top: 16px; display: flex; gap: 12px; align-items: center; }
.store-btn { display: inline-block; text-decoration: none; margin-right: 8px; }
.store-btn img { height: 48px; display: block; }
.cta { display: inline-block; background: var(--accent); color: #fff; padding: 10px 14px; border-radius: 6px; text-decoration: none }

.features ul { list-style: disc; margin-left: 20px }

.site-footer { border-top: 1px solid #eee; padding: 16px 0; margin-top: 48px; text-align: center }
.screenshot img { max-width: 100%; height: auto }
.note { font-size: 0.9rem; color: #555 }

form { max-width: 600px }
label { display: block; margin-top: 12px; font-weight: 600 }
input, textarea { width: 100%; padding: 8px; margin-top: 6px; border: 1px solid #ddd; border-radius: 6px }
button { margin-top: 12px; background: var(--accent); color: #fff; padding: 10px 14px; border: 0; border-radius: 6px }