:root {
  --primary: #2c694e;
  --primary-light: #95d4b3;
  --background: #fbfbf8;
  --surface: #ffffff;
  --text: #1a1c19;
  --text-muted: #5c6259;
  --border: #dde5df;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 720px);
  margin-inline: auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  font-style: italic;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
}

.nav a[aria-current="page"] {
  color: var(--primary);
}

.hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #eef7f1 0%, var(--background) 100%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

h1, h2, h3 {
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.5rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(44, 105, 78, 0.08);
}

.hero-card .icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.section {
  padding: 2.5rem 0;
}

.section-muted {
  background: #f3f7f4;
}

.feature-list {
  margin: 0;
  padding-left: 1.25rem;
}

.feature-list li + li {
  margin-top: 0.5rem;
}

.page-hero {
  padding: 2.5rem 0 1rem;
}

.prose p,
.prose ul {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.button {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}
