:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --text: #171717;
  --muted: #62615d;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 38%),
    var(--bg);
}

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
}

.lead {
  margin: 28px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
}
