:root {
	--bg: #faf7f0;
	--bg-soft: #f0ead8;
	--fg: #1c1a16;
	--muted: #6e6454;
	--line: #e6dfcf;
	--accent: #a8501d;
	--accent-hover: #8e3f11;
	--moss: #56632b;
	--radius: 10px;
	--font: system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--fg);
	line-height: 1.55;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 72px; }
.brand { display: flex; gap: 12px; align-items: center; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.brand img { border-radius: 8px; display: block; }

h1 {
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1.05;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
	font-weight: 700;
}
h2 {
	font-size: 26px;
	line-height: 1.2;
	margin: 0 0 20px;
	letter-spacing: -0.01em;
	font-weight: 600;
}
p { margin: 0 0 16px; }
.lede { font-size: 19px; color: var(--muted); margin: 0 0 32px; max-width: 60ch; }

/* Hero + waitlist form
	--------------------------------------------------------------- */
.waitlist {
	display: flex; gap: 8px; flex-wrap: wrap;
	margin-bottom: 12px;
}
.waitlist input[type=email] {
	flex: 1 1 260px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--fg);
	font: inherit;
}
.waitlist input[type=email]:focus {
	outline: 2px solid var(--accent);
	outline-offset: 1px;
	border-color: var(--accent);
}
.waitlist button {
	padding: 14px 22px;
	background: var(--accent);
	color: #fff;
	border: 0;
	border-radius: var(--radius);
	font-weight: 600;
	cursor: pointer;
	font: inherit;
	transition: background 0.12s ease;
}
.waitlist button:hover,
.waitlist button:focus-visible { background: var(--accent-hover); }

.wl-msg { color: var(--muted); min-height: 1.4em; margin: 0 0 4px; font-size: 15px; }
.hero-note { color: var(--muted); font-size: 14px; margin: 0; }

/* Section dividers
	--------------------------------------------------------------- */
section { margin-top: 72px; padding-top: 32px; border-top: 1px solid var(--line); }
section:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }

/* Why — benefit bullets
	--------------------------------------------------------------- */
.why ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.why li {
	padding-left: 28px; position: relative;
}
.why li::before {
	content: "›"; position: absolute; left: 8px; top: -1px;
	color: var(--accent); font-weight: 700; font-size: 20px; line-height: 1;
}

/* How — numbered steps
	--------------------------------------------------------------- */
.how ol {
	list-style: none;
	counter-reset: step;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 18px;
}
.how li {
	counter-increment: step;
	padding: 18px 18px 18px 56px;
	background: var(--bg-soft);
	border-radius: var(--radius);
	position: relative;
}
.how li::before {
	content: counter(step);
	position: absolute;
	left: 14px;
	top: 14px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.how li strong { display: block; margin-bottom: 4px; }

/* Pricing
	--------------------------------------------------------------- */
.price table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}
.price th, .price td {
	text-align: left;
	padding: 14px 12px;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}
.price th { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.price td.plan { font-weight: 600; }
.price td.amount { font-weight: 700; color: var(--accent); white-space: nowrap; }
.price tr:last-child td { border-bottom: 0; }
.price-note { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* FAQ
	--------------------------------------------------------------- */
.faq details {
	border-bottom: 1px solid var(--line);
	padding: 14px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	position: relative;
	padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+";
	position: absolute;
	right: 4px;
	top: -2px;
	color: var(--accent);
	font-weight: 700;
	font-size: 22px;
	line-height: 1;
	transition: transform 0.15s ease;
}
.faq details[open] summary::after {
	content: "−";
}
.faq details p { margin: 10px 0 4px; color: var(--muted); }

/* Footer
	--------------------------------------------------------------- */
footer {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px 48px;
	color: var(--muted);
	font-size: 14px;
	text-align: center;
}
footer a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
footer a:hover { color: var(--accent); }

/* Accessibility utility
	--------------------------------------------------------------- */
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Entrance animation (respects reduced-motion)
	--------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
	h1 { animation: fadeUp .6s ease-out both; }
	.lede { animation: fadeUp .7s ease-out both; animation-delay: .08s; }
	.waitlist { animation: fadeUp .8s ease-out both; animation-delay: .14s; }
}
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Narrow-phone tweaks
	--------------------------------------------------------------- */
@media (max-width: 480px) {
	main { padding: 32px 20px 48px; }
	header { margin-bottom: 56px; }
	section { margin-top: 56px; padding-top: 24px; }
	.lede { font-size: 18px; }
	.price td, .price th { padding: 10px 8px; font-size: 15px; }
}
