:root {
  color-scheme: light;
  --background: #f7f5ef;
  --foreground: #171717;
  --muted: #5f605c;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--foreground);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(23, 23, 23, 0.08), transparent 36%),
    var(--background);
}

.site-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(2rem, 6vw, 5rem);
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.summary {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}
