: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: #070708;
}

main {
  width: min(48rem, calc(100vw - 2rem));
  padding: 3rem;
  border-left: 0.35rem solid #fbbf24;
  background: #0f0f11;
}

.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: 13ch;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.92;
}

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

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

