:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background: #0d0710;
  color: #f1e6ef;
  overflow-x: hidden;
}

.scene {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
}

.glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(158, 41, 122, 0.45), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(78, 26, 97, 0.4), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(31, 12, 46, 0.6), transparent 60%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d9a8d0;
  font-weight: 400;
}

h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 5.5rem);
  letter-spacing: 0.02em;
  color: #fdf3fb;
  text-shadow: 0 0 40px rgba(216, 120, 200, 0.35);
}

.tagline {
  margin: 1.25rem 0 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #e7c9e2;
}

.status {
  margin: 1.5rem 0 2.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #c7abc3;
}

.notify {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(241, 230, 239, 0.35);
  border-radius: 999px;
  color: #fdf3fb;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.notify:hover,
.notify:focus-visible {
  background: rgba(216, 120, 200, 0.18);
  border-color: rgba(216, 120, 200, 0.7);
}

footer {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #7c6579;
}
