:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f8fb;
  color: #172033;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(52, 168, 83, 0.16), transparent 30rem),
    linear-gradient(135deg, #f8fbff 0%, #eef4f1 100%);
}

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

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

.eyebrow {
  margin: 0 0 18px;
  color: #236c43;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 26px 0 34px;
  color: #405068;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #172033;
  color: #172033;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  background: #172033;
  color: #fff;
}
