@charset "utf-8";

html,
body {
  height: 100%;
  background: #050505;
}

body {
  overflow-x: hidden;
}

.coming-soon-template #header .logo img {
  filter: none;
}

.coming-soon-template #lnb a {
  color: rgba(245, 245, 242, .82);
}

.coming-soon-page {
  min-height: 100vh;
  background: #050505;
  color: #f5f5f2;
  overflow: hidden;
}

.coming-soon-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% -12%, rgba(255, 255, 255, .92), rgba(222, 222, 216, .7) 14%, transparent 33%),
    linear-gradient(180deg, #e8e8e2 0%, #aaa99f 16%, #61615d 34%, #181818 68%, #020202 100%);
  isolation: isolate;
}

.coming-soon-hero::before {
  content: "";
  position: absolute;
  inset: -12% -6% 36%;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 78px),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .35) 50%, transparent 100%);
  opacity: .32;
  filter: blur(15px);
  transform: perspective(420px) rotateX(30deg) scaleX(1.08);
  animation: silverLightSweep 14s ease-in-out infinite alternate;
}

.coming-soon-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0%, rgba(0, 0, 0, .1) 38%, rgba(0, 0, 0, .74) 86%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 28%, rgba(0, 0, 0, .86) 86%);
}

.coming-soon-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(0, 0, 0, .9) 0 1px, transparent 1.6px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: overlay;
}

.coming-soon-hero__beam {
  position: absolute;
  inset: -6% -8% 28%;
  z-index: 0;
  opacity: .72;
  background:
    radial-gradient(ellipse at 20% 18%, rgba(255, 255, 255, .86), transparent 18%),
    radial-gradient(ellipse at 78% 14%, rgba(225, 225, 218, .74), transparent 16%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .22) 0 2px, transparent 2px 96px);
  filter: blur(32px);
  animation: silverBeamDrift 11s ease-in-out infinite alternate;
}

.coming-soon-hero__year {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 4;
  margin: 0;
  color: rgba(6, 6, 6, .72);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .16em;
  transform: translateX(-50%);
}

.coming-soon-hero__content {
  position: absolute;
  left: 50%;
  bottom: clamp(76px, 13vh, 142px);
  z-index: 4;
  width: min(90vw, 620px);
  text-align: center;
  transform: translateX(-50%);
}

.coming-soon-hero__content p {
  margin: 0 0 12px;
  color: rgba(245, 245, 242, .44);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.coming-soon-hero__content h2 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Montserrat", "Pretendard Variable", Pretendard, sans-serif;
  font-size: clamp(38px, 5vw, 82px);
  line-height: .9;
  font-weight: 560;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coming-soon-hero__content span {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
  color: rgba(245, 245, 242, .56);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@keyframes silverLightSweep {
  0% {
    opacity: .24;
    transform: perspective(420px) rotateX(30deg) translate3d(-3%, -1%, 0) scaleX(1.04);
  }

  48% {
    opacity: .38;
  }

  100% {
    opacity: .3;
    transform: perspective(420px) rotateX(30deg) translate3d(4%, 2%, 0) scaleX(1.12);
  }
}

@keyframes silverBeamDrift {
  0% {
    opacity: .58;
    transform: translate3d(-2.5%, -1.5%, 0) scale(1);
  }

  45% {
    opacity: .78;
  }

  100% {
    opacity: .66;
    transform: translate3d(2.5%, 2%, 0) scale(1.06);
  }
}

@media (max-width: 860px) {
  .coming-soon-hero {
    min-height: 100vh;
  }

  .coming-soon-hero__content {
    bottom: 88px;
  }
}

@media (max-width: 560px) {
  .coming-soon-hero__content {
    width: calc(100vw - 36px);
  }

  .coming-soon-hero__content h2 {
    font-size: clamp(34px, 14vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-hero::before,
  .coming-soon-hero__beam {
    animation: none;
  }
}
