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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
}

main {
  width: min(42rem, calc(100% - 3rem));
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.intro {
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: #555;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #171717;
    color: #f4f1ea;
  }

  .intro {
    color: #aaa;
  }
}
