:root {
  color-scheme: light;
  --ink: #15201b;
  --muted: #5d6b63;
  --surface: #f7f5ef;
  --accent: #1f7a5f;
  --accent-dark: #165640;
  --line: rgba(21, 32, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--surface);
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(31, 122, 95, 0.16), transparent 28rem),
    linear-gradient(135deg, #f7f5ef 0%, #eaf2ef 52%, #f7f5ef 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.hero {
  width: min(760px, 100%);
  padding: clamp(40px, 8vw, 88px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 80px rgba(42, 66, 56, 0.12);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 28px 0 34px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:focus-visible,
.button:hover {
  background: var(--accent-dark);
}

@media (max-width: 520px) {
  .page-shell {
    place-items: stretch;
    padding: 24px 14px;
  }

  .hero {
    align-self: center;
  }
}
