* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	background-color: #f0f7f0;
	color: #2d3a2d;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	padding: 60px 20px;
}

.container {
	max-width: 640px;
	width: 100%;
}

/* Navigation */

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	align-items: center;
	font-size: 13px;
	margin-bottom: 48px;
}

.site-nav a {
	color: #5a7e5a;
	text-decoration: none;
	transition: color 0.15s;
}

.site-nav a:hover {
	text-decoration: underline;
}

.site-nav a.active {
	color: #1a2e1a;
	font-weight: 600;
}

.site-nav a.active:hover {
	text-decoration: none;
}

.site-nav .nav-muted {
	color: #8a9e8a;
}

.site-nav .nav-muted:hover {
	color: #5a7e5a;
}

.site-nav .nav-muted.active {
	color: #5a6e5a;
}

.site-nav .nav-github {
	margin-left: auto;
}

.hero {
	text-align: center;
	margin-bottom: 48px;
}

.hero-emoji {
	font-size: 72px;
	line-height: 1;
	margin-bottom: 16px;
}

.hero h1 {
	font-size: 32px;
	font-weight: 700;
	color: #1a2e1a;
	margin-bottom: 8px;
}

.hero .tagline {
	font-size: 17px;
	color: #5a6e5a;
	font-weight: 400;
}

.warning {
	background: #fef9ee;
	border: 1px solid #e8d5a3;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 24px;
	font-size: 15px;
	color: #6b5a2e;
	line-height: 1.5;
}

.warning strong {
	display: block;
	margin-bottom: 6px;
	font-size: 15px;
	color: #5a4a1e;
}

.warning p {
	margin: 0;
}

.card {
	background: white;
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
	margin-bottom: 24px;
}

.card h2 {
	font-size: 18px;
	font-weight: 600;
	color: #1a2e1a;
	margin-bottom: 20px;
}

.steps {
	list-style: none;
	counter-reset: steps;
}

.steps li {
	counter-increment: steps;
	padding: 12px 0 12px 40px;
	position: relative;
	border-bottom: 1px solid #e8f0e8;
}

.steps li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.steps li:first-child {
	padding-top: 0;
}

.steps li::before {
	content: counter(steps);
	position: absolute;
	left: 0;
	top: 12px;
	width: 26px;
	height: 26px;
	background: #e8f0e8;
	color: #3a5a3a;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.steps li:first-child::before {
	top: 0;
}

.update-url {
	display: block;
	margin-top: 10px;
	padding: 10px 14px;
	background: #f5f9f5;
	border: 1px solid #d4e4d4;
	border-radius: 6px;
	font-family: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 14px;
	color: #2d6a2d;
	word-break: break-all;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}

.update-url:hover {
	background: #eaf3ea;
	border-color: #b4d4b4;
}

.note {
	font-size: 14px;
	color: #5a6e5a;
	margin-top: 8px;
}

.footer {
	text-align: center;
	font-size: 13px;
	color: #8a9e8a;
	padding: 24px 0;
}

.footer a {
	color: #5a7e5a;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.path {
	font-family: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 13px;
	background: #f5f9f5;
	padding: 2px 6px;
	border-radius: 3px;
	color: #3a5a3a;
}

/* Changelog page */

.changelog .card {
	padding: 28px 32px;
}

.date-header {
	font-size: 14px;
	font-weight: 600;
	color: #5a6e5a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e8f0e8;
}

.changelog-entry {
	padding: 12px 0;
	border-bottom: 1px solid #f0f5f0;
}

.changelog-entry:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.changelog-entry:first-of-type {
	padding-top: 0;
}

.changelog-entry h3 {
	font-size: 16px;
	font-weight: 600;
	color: #1a2e1a;
	margin-bottom: 6px;
}

.changelog-entry p {
	font-size: 15px;
	color: #4a5e4a;
	line-height: 1.55;
}

.changelog-entry code {
	font-family: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 13px;
	background: #f0f5f0;
	padding: 2px 5px;
	border-radius: 3px;
	color: #3a5a3a;
}

.changelog-entry img {
	display: block;
	max-width: 100%;
	border-radius: 8px;
	margin-top: 12px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.changelog-link {
	display: inline-block;
	font-size: 14px;
	color: #3a6e3a;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.15s;
}

.changelog-link:hover {
	color: #2a5a2a;
	text-decoration: underline;
}

/* Features page */

.features .card {
	padding: 28px 32px;
}

.section-header {
	font-size: 14px;
	font-weight: 600;
	color: #5a6e5a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e8f0e8;
}

.feature-entry {
	padding: 12px 0;
	border-bottom: 1px solid #f0f5f0;
}

.feature-entry:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.feature-entry:first-of-type {
	padding-top: 0;
}

.feature-entry h3 {
	font-size: 16px;
	font-weight: 600;
	color: #1a2e1a;
	margin-bottom: 6px;
}

.feature-entry p {
	font-size: 15px;
	color: #4a5e4a;
	line-height: 1.55;
}

.feature-entry code {
	font-family: "SF Mono", SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 13px;
	background: #f0f5f0;
	padding: 2px 5px;
	border-radius: 3px;
	color: #3a5a3a;
}

kbd {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 12px;
	background: #f5f9f5;
	border: 1px solid #d4e4d4;
	border-bottom: 2px solid #c4d8c4;
	border-radius: 4px;
	padding: 2px 6px;
	color: #3a5a3a;
	white-space: nowrap;
}

/* Roadmap page */

.roadmap .card {
	padding: 28px 32px;
}

.roadmap-entry {
	padding: 12px 0;
	border-bottom: 1px solid #f0f5f0;
}

.roadmap-entry:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.roadmap-entry:first-of-type {
	padding-top: 0;
}

.roadmap-entry h3 {
	font-size: 16px;
	font-weight: 600;
	color: #1a2e1a;
	margin-bottom: 6px;
}

.roadmap-entry p {
	font-size: 15px;
	color: #4a5e4a;
	line-height: 1.55;
}
