:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #526158;
  --paper: #fbfaf5;
  --accent: #25745b;
  --accent-strong: #174d3d;
  --rule: #dfe7df;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(37, 116, 91, 0.08), rgba(251, 250, 245, 0) 46%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page-shell {
  width: min(100%, 1080px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  align-items: center;
}

.hero {
  width: min(100%, 720px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.75rem, 12vw, 8.5rem);
  line-height: 0.9;
  font-weight: 850;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

@media (max-width: 640px) {
  .page-shell {
    min-height: 86vh;
    padding: 48px 20px;
    align-items: flex-start;
  }

  h1 {
    font-size: 4rem;
  }
}
