:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #2b2620;
  --ink-soft: #6b6257;
  --accent: #3d6b4f;
  --rule: #e5dfd5;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #191713;
    --surface: #221f1a;
    --ink: #ece7de;
    --ink-soft: #a89e90;
    --accent: #8fbf9f;
    --rule: #37322a;
  }
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 660px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

header.site {
  margin-bottom: 2.5rem;
}

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

header.site nav {
  float: right;
}

header.site nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 1.25rem;
}

header.site nav a:hover { color: var(--accent); }
header.site::after { content: ""; display: block; clear: both; }

h1 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
}

.lede .label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

section { margin-bottom: 2rem; }

.hero { margin-bottom: 1.5rem; }

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.25rem;
}

.badge-line { margin-bottom: 0; }

.badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

svg.route {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 2.5rem;
}

.features .feature { margin-bottom: 1.75rem; }
.features .feature:last-child { margin-bottom: 0; }
.features { margin-bottom: 2.75rem; }

h3 {
  font-size: 1.02rem;
  margin: 1.1rem 0 0.35rem;
}

h2 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; color: var(--ink); }
section p:last-child { margin-bottom: 0; }

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

footer.site {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.9rem;
}
