* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #F3F1EB;
  color: #0F0F10;
  font-family: Inter, Arial, sans-serif;
}

main {
  width: min(760px, 88vw);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: #6B6B66;
}

h1 {
  margin: 1rem 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.claim {
  max-width: 650px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.status {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6B6B66;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7FBF3F;
}
