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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgb(245 158 11 / 0.14), transparent 36rem),
    #070708;
}

.shell {
  width: min(44rem, calc(100vw - 2rem));
  padding: 3rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(15 15 17 / 0.86);
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.92;
}

p {
  max-width: 38rem;
  color: #d4d4d8;
  font-size: 1.05rem;
  line-height: 1.7;
}

code {
  color: #fbbf24;
}

a {
  color: #f8fafc;
  font-weight: 700;
  text-underline-offset: 0.3em;
}

