:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --background: #071012;
  --foreground: #f3f0e8;
  --muted: #a4aaa8;
  --accent: #e31b23;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgb(227 27 35 / 18%), transparent 24rem),
    linear-gradient(145deg, #071012 0%, #101a1d 55%, #070b0c 100%);
  color: var(--foreground);
}

main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  align-self: center;
  max-width: 12ch;
  margin: 2rem 0;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.note {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.45;
}
