:root {
	/* Brand, pulled from the app icon: navy "n" + orange cursor on light gray. */
	--bg: #ececef;
	--surface: #ffffff;
	--text: #1f2a4a; /* navy */
	--muted: #5c6479;
	--border: #d9dbe2;
	--accent: #e8541e; /* orange cursor */
	--maxw: 560px;

	font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Inter, system-ui, sans-serif;
	line-height: 1.6;
	color: var(--text);
	background-color: var(--bg);
	color-scheme: light dark;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #12161f;
		--surface: #1b2130;
		--text: #eef0f5;
		--muted: #9aa2b8;
		--border: #2a3245;
		--accent: #ff6a34;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--bg);
}

/* Pin footer to the bottom whether the page is short (privacy) or tall (landing). */
.footer {
	margin-top: auto;
}

a {
	color: var(--accent);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/* ---- Hero (landing) ---- */
/* Left-aligned column (mblode); shares its left margin with the FAQ below. */
.hero {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 104px 24px 24px;
	text-align: left;
}

.app-icon-bob {
	display: inline-block;
	margin-bottom: 32px;
}

.app-icon {
	display: block;
	width: 104px;
	height: 104px;
	border-radius: 23px; /* iOS squircle-ish */
	box-shadow: 0 10px 30px -12px rgba(31, 42, 74, 0.45);
	/* Easter egg: spring-drag. GPU-composited transform, no layout thrash. */
	touch-action: none;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	will-change: transform;
	transition: box-shadow 0.25s ease;
}
.app-icon.is-grabbing {
	cursor: grabbing;
}
.app-icon.is-lifted {
	box-shadow: 0 20px 44px -10px rgba(31, 42, 74, 0.5);
}

h1 {
	font-size: 2.7rem;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin: 0 0 10px;
}

.tagline {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 22px;
}

.blurb {
	font-size: 1.1rem;
	color: var(--muted);
	margin: 0 0 36px;
}

.download {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1.05rem;
	box-shadow: 0 8px 20px -8px rgba(232, 84, 30, 0.7);
}
.download:hover {
	text-decoration: none;
	filter: brightness(1.05);
}

.download-note {
	font-size: 0.85rem;
	color: var(--muted);
	margin: 14px 0 0;
}

/* ---- FAQ (landing) ---- */
.faq {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 32px 24px 80px;
	text-align: left;
}
.faq-item {
	padding: 24px 0;
	border-top: 1px solid var(--border);
}
.faq-item h2 {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}
.faq-item p {
	margin: 0;
	color: var(--muted);
}
.faq-item a {
	text-decoration: underline;
	text-underline-offset: 2px;
}
.faq-item code {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.9em;
	color: var(--text);
}

/* ---- Content pages (privacy) ---- */
.page {
	max-width: 640px;
	margin: 0 auto;
	padding: 72px 24px 48px;
}
.prose h1 {
	font-size: 2rem;
	text-align: left;
	letter-spacing: -0.02em;
}
.prose h2 {
	font-size: 1.2rem;
	margin-top: 32px;
}
.prose p,
.prose li {
	color: var(--text);
}
.prose .lead {
	font-size: 1.15rem;
	color: var(--muted);
}
.updated {
	color: var(--muted);
	font-size: 0.9rem;
}

/* ---- Footer ---- */
.footer {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	padding: 28px 24px 40px;
	text-align: center;
	color: var(--muted);
	font-size: 0.9rem;
}
.footer a {
	color: var(--muted);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.footer .dot {
	margin: 0 8px;
	opacity: 0.5;
}
