:root {
  --bg: #07080b;
  --gold: #d4b56a;
  --gold-deep: #b0893e;
  --cream: #f4ead8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(1200px 700px at 50% -10%, #1b160e 0%, transparent 55%),
    var(--bg);
  font-family: "Outfit", sans-serif;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.glow-a {
  width: 420px;
  height: 420px;
  left: -80px;
  top: 18%;
  background: rgba(176, 137, 62, 0.18);
}

.glow-b {
  width: 380px;
  height: 380px;
  right: -60px;
  bottom: 8%;
  background: rgba(212, 181, 106, 0.12);
}

.stage {
  position: relative;
  z-index: 1;
  width: min(92vw, 560px);
  text-align: center;
  padding: 32px 20px;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.06em;
  margin-bottom: 42px;
  background: linear-gradient(180deg, #fff6e4 0%, var(--gold) 72%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta {
  appearance: none;
  border: 1px solid rgba(212, 181, 106, 0.55);
  background: linear-gradient(180deg, #ead39a 0%, #c9a24e 48%, #9c7428 100%);
  color: #1a1408;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 236, 196, 0.2) inset,
    0 18px 40px rgba(176, 137, 62, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 236, 196, 0.28) inset,
    0 22px 48px rgba(176, 137, 62, 0.4);
  filter: brightness(1.04);
}

.cta:active:not(:disabled) {
  transform: translateY(1px);
}

.cta:disabled {
  cursor: wait;
  filter: grayscale(0.15);
  opacity: 0.8;
}

@media (max-width: 520px) {
  .cta {
    width: 100%;
    padding: 17px 24px;
  }
}
