:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #1f2420;
  --muted: #656b63;
  --line: #d9d2c6;
  --panel: #fffdf8;
  --accent: #2f6f55;
  --accent-ink: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px 22px 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 56px;
}

.brand {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.links a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero {
  max-width: 780px;
  padding: 34px 0 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0 18px;
}

.button.secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.page {
  max-width: 760px;
}

.page h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
}

.page p {
  color: var(--muted);
  font-size: 1.05rem;
}

section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.panel p {
  margin-bottom: 0;
}

.muted {
  color: var(--muted);
}

.legal section p {
  margin-bottom: 0;
}

@media (max-width: 620px) {
  .shell {
    padding: 22px 18px 48px;
  }

  .topbar {
    align-items: flex-start;
    padding-bottom: 36px;
  }

  .links {
    justify-content: flex-end;
  }

  .lead,
  .page p {
    font-size: 1rem;
  }
}
