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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgb(247 147 26 / 18%), transparent 36rem),
    linear-gradient(145deg, #090f1b, #05070b 72%);
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: #f7931a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

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

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