:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #202124;
  --muted: #61656f;
  --accent: #1b7f79;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(27, 127, 121, 0.13), transparent 38%),
    linear-gradient(315deg, rgba(32, 33, 36, 0.08), transparent 42%),
    var(--bg);
}

.shell {
  width: min(680px, calc(100vw - 48px));
  padding: 80px 0;
}

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

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.5rem, 13vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

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

@media (max-width: 520px) {
  .shell {
    width: min(100% - 32px, 680px);
    padding: 56px 0;
  }
}

