:root {
  color-scheme: dark;
  font-family: "Cormorant Garamond", Georgia, serif;
  background: #07050b;
  color: #f7efe4;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #07050b;
}

.stage {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 44%, rgba(35, 48, 72, 0.34), transparent 24rem),
    radial-gradient(circle at 16% 24%, rgba(40, 64, 94, 0.16), transparent 19rem),
    linear-gradient(180deg, #0c0710 0%, #050407 56%, #000 100%);
}

.stage::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 46%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(rgba(255, 255, 255, 0.018) 50%, transparent 50%);
  background-size: auto, 100% 4px;
  mix-blend-mode: screen;
  opacity: 0.7;
}

#particle-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
}

h1 {
  max-width: min(88vw, 54rem);
  margin: 0;
  padding: 0 1rem 0.35rem;
  color: #fff6e9;
  font-size: clamp(3rem, 6.2vw, 6rem);
  font-weight: 500;
  line-height: 0.92;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34),
    0 0 30px rgba(186, 219, 255, 0.22),
    0 22px 70px rgba(0, 0, 0, 0.94);
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }
}
