/* MemoryOnAMap landing page — placeholder styling (neutral palette). */

:root {
	--ink: #1c2530;
	--muted: #5b6675;
	--bg: #f7f8fa;
	--accent: #2f6f4f;
	--accent-ink: #ffffff;
	--max-width: 960px;
}

* {
	box-sizing: border-box;
}

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

/* Header */
.site-header {
	padding: 1.25rem 1.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}

.site-brand {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--ink);
	text-decoration: none;
	letter-spacing: -0.01em;
}

/* Hero */
.hero {
	padding: 4rem 1.5rem 3rem;
	text-align: center;
}

.hero-inner {
	max-width: 720px;
	margin: 0 auto;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	color: var(--muted);
	margin: 0 auto 2rem;
	max-width: 36rem;
}

.hero-note {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--muted);
}

/* Call to action */
.cta {
	display: inline-block;
	background: var(--accent);
	color: var(--accent-ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	transition: transform 0.08s ease, opacity 0.15s ease;
}

.cta:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.cta-secondary {
	background: var(--ink);
}

/* Features */
.features {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.feature {
	background: #fff;
	border: 1px solid #e6e9ee;
	border-radius: 12px;
	padding: 1.5rem;
}

.feature h2 {
	font-size: 1.15rem;
	margin: 0 0 0.5rem;
}

.feature p {
	margin: 0;
	color: var(--muted);
}

/* CTA band */
.cta-band {
	text-align: center;
	padding: 3rem 1.5rem 4rem;
}

.cta-band h2 {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	margin: 0 0 1.5rem;
}

/* Footer */
.site-footer {
	text-align: center;
	padding: 2rem 1.5rem;
	color: var(--muted);
	font-size: 0.9rem;
	border-top: 1px solid #e6e9ee;
}
