* { box-sizing: border-box; }

:root {
  color-scheme: dark;
  --ink: #09070b;
  --plum: #241427;
  --violet: #8750a5;
  --bone: #eee7dc;
  --muted: #afa1b3;
  --ember: #cb6b2d;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--bone);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(135, 80, 165, .18), transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(203, 107, 45, .08), transparent 35%),
    linear-gradient(180deg, #120c15 0%, #09070b 70%);
}

.stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 24px;
  position: relative;
  z-index: 2;
}

.content {
  text-align: center;
  width: min(820px, 100%);
}

.moon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: #e8ddc9;
  box-shadow:
    0 0 40px rgba(232, 221, 201, .20),
    inset -22px -10px 0 rgba(30, 18, 35, .24);
  opacity: .9;
}

.kicker {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: .72rem;
  letter-spacing: .35em;
  color: var(--violet);
  font-weight: 800;
  margin: 0 0 26px;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 12vw, 9rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.055em;
  text-shadow: 0 8px 30px rgba(0,0,0,.6);
}

h1 span {
  display: inline-block;
  font-style: italic;
  color: #c7a3d6;
}

.tagline {
  margin: 38px auto 0;
  max-width: 560px;
  color: #cfc3d1;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: .03em;
}

.ornament {
  margin: 32px 0 22px;
  color: var(--ember);
  font-size: 1.25rem;
}

.coming {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .82rem;
  color: var(--muted);
}

footer {
  margin-top: 64px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #756a79;
  font-size: .78rem;
}

.mist {
  position: fixed;
  width: 70vw;
  height: 28vh;
  filter: blur(60px);
  opacity: .08;
  border-radius: 50%;
  background: #c9b9d1;
  z-index: 1;
}

.mist-one {
  left: -20vw;
  bottom: 4vh;
  transform: rotate(8deg);
}

.mist-two {
  right: -22vw;
  top: 18vh;
  transform: rotate(-12deg);
}

@media (max-width: 560px) {
  .moon { width: 72px; height: 72px; }
  .stage { padding-inline: 18px; }
}
