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

* {
  box-sizing: border-box;
}

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

main {
  width: min(680px, calc(100% - 48px));
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  opacity: 0.55;
}

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

.intro {
  max-width: 560px;
  margin: 32px 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.5;
  color: #bcbcbc;
}

nav {
  display: flex;
  gap: 24px;
}

a {
  color: inherit;
  text-underline-offset: 0.3em;
}

a:hover {
  opacity: 0.65;
}
