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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 10%, rgb(88 80 236 / 28%), transparent 38%),
    radial-gradient(circle at 85% 85%, rgb(15 169 166 / 22%), transparent 42%),
    #0d1117;
}

main {
  width: min(720px, calc(100% - 3rem));
  padding: 4rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #8ee5dc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.75rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #aeb8c7;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.65;
}

