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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

main {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgb(59 130 246 / 25%), transparent 45%),
    #0f172a;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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