* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: #08031a;
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased
}

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2rem, 7vw, 5rem)
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #08031a url("bg-01-wave.webp") center 60%/cover no-repeat
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(46% 38% at 50% 48%, rgba(8, 3, 26, 0.88), rgba(8, 3, 26, 0.5) 46%, transparent 74%),
    linear-gradient(180deg, rgba(8, 3, 26, 0.45) 0%, rgba(8, 3, 26, 0.1) 24%, rgba(8, 3, 26, 0.1) 74%, rgba(8, 3, 26, 0.5) 100%),
    radial-gradient(150% 125% at 50% 50%, transparent 56%, rgba(8, 3, 26, 0.5) 86%, #000 100%)
}

.frame {
  position: absolute;
  inset: clamp(14px, 2.3vw, 32px);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none
}

.lockup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: clamp(1.05rem, 2.7vh, 1.8rem); */
  gap: clamp(0.55rem, 0.5vh, 1.8rem);
}

.wordmark {
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1;
  font-size: clamp(2.4rem, 9vw, 5.7rem);
  filter: drop-shadow(0 2px 22px rgba(0, 0, 0, .72))
}

.w1 {
  color: #fff
}

.w2 {
  background: linear-gradient(100deg, #ff5fa2, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.rule {
  width: clamp(64px, 9vw, 104px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(100deg, #ff5fa2, #ff8a3d)
}

@media (orientation:landscape) and (max-height:560px) {
  .wordmark {
    font-size: clamp(1.8rem, 7.5vh, 3.3rem)
  }

  .frame {
    inset: clamp(10px, 2vw, 22px)
  }

  .lockup {
    gap: clamp(.7rem, 2vh, 1.1rem)
  }
}

@media (prefers-reduced-motion:no-preference) {
  .lockup {
    opacity: 0;
    transform: translateY(12px);
    animation: r .8s cubic-bezier(.2, .7, .2, 1) .05s forwards
  }

  @keyframes r {
    to {
      opacity: 1;
      transform: none
    }
  }
}