:root {
  color-scheme: light;
  font-family: system-ui, sans-serif;
  background: #fffaf7;
  color: #251d1a;
}
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
main {
  box-sizing: border-box;
  width: min(36rem, 100%);
  padding: 2rem;
}
.eyebrow {
  color: #a33f32;
  font-weight: 800;
  letter-spacing: 0.12em;
}
h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.05;
}
p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: #a33f32;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.button:focus-visible {
  outline: 3px solid #251d1a;
  outline-offset: 3px;
}
.privacy {
  margin-top: 2rem;
  color: #615550;
  font-size: 0.95rem;
}
