:root {
  --cream: #fbf7ef;
  --sage: #6f8f72;
  --deep-green: #244536;
  --leaf: #9fbd78;
  --gold: #d8b45f;
  --white: #ffffff;
  --text: #26342c;
  --muted: #66736b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(159, 189, 120, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(216, 180, 95, 0.25), transparent 30%),
    var(--cream);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card {
  width: min(760px, 100%);
  padding: clamp(32px, 6vw, 72px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(36, 69, 54, 0.14);
  border: 1px solid rgba(111, 143, 114, 0.22);
  text-align: center;
}

.logo-mark {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--leaf), var(--sage));
  box-shadow: 0 12px 32px rgba(36, 69, 54, 0.16);
}

.sprout {
  font-size: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage);
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.95;
  color: var(--deep-green);
}

h2 {
  margin: 24px auto 0;
  max-width: 620px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
  color: var(--deep-green);
}

.mission {
  margin: 28px auto 0;
  max-width: 640px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

.description {
  margin: 18px auto 0;
  max-width: 620px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

footer {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(111, 143, 114, 0.22);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}