:root {
  color: #222;
  background: #f7efe4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  box-shadow: 0 24px 80px rgba(91, 57, 23, 0.14);
  max-width: 680px;
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.eyebrow {
  color: #a16207;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 1rem;
}

p {
  color: #5d5145;
  font-size: 1.1rem;
  line-height: 1.7;
}

button {
  background: #222;
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
}

.sparkle {
  animation: pop 500ms ease;
}

@keyframes pop {
  50% {
    transform: scale(1.03) rotate(-1deg);
  }
}
