:root {
  --gold: #d8b46b;
  --gold-light: #f2d38d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: var(--white);
  overscroll-behavior: none;
}

body {
  font-family: "Inter", Arial, sans-serif;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: #000 url("assets/img/coming-soon-bg.png") center / cover no-repeat;
}

.coming-soon__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.36) 100%);
}

.poster {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  justify-items: center;
  width: min(100%, 940px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: max(26px, env(safe-area-inset-top)) clamp(18px, 5vw, 54px) max(26px, env(safe-area-inset-bottom));
  text-align: center;
  text-transform: uppercase;
}

.poster__brand {
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.7vh, 18px);
  padding-top: clamp(8px, 3.2vh, 46px);
}

.poster__brand img {
  width: clamp(220px, min(62vw, 28vh), 390px);
  height: auto;
}

.poster__brand p,
.poster__soon {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(12px, 2.9vw, 17px);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
}

.poster__content {
  display: grid;
  align-self: center;
  justify-items: center;
  width: min(100%, 760px);
  padding: clamp(22px, 4.2vh, 58px) 0 clamp(14px, 3vh, 38px);
}

.poster h1 {
  position: relative;
  display: grid;
  isolation: isolate;
  gap: clamp(8px, 1.4vh, 18px);
  margin: 0 0 clamp(22px, 3.5vh, 38px);
  font-size: clamp(46px, min(13.4vw, 11vh), 106px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-shadow: none;
}

.poster h1 span,
.poster h1 strong {
  position: relative;
  display: block;
  white-space: nowrap;
}

.poster h1 span {
  z-index: 1;
  color: #fff;
  line-height: 0.88;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.62);
}

.poster h1 strong {
  z-index: 3;
  margin-top: 0;
  padding-top: 0.18em;
  color: var(--gold);
  background: linear-gradient(180deg, #ffe8aa 0%, #d0a351 52%, #8d682e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 0.92;
  text-shadow: none;
  -webkit-text-fill-color: transparent;
}

.poster__lead {
  margin: 0 0 clamp(20px, 3.9vh, 36px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, min(3.5vw, 3vh), 25px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.58;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9);
}

.loading-bar {
  position: relative;
  width: min(72vw, 470px);
  height: clamp(12px, 1.9vh, 17px);
  margin-bottom: clamp(22px, 4vh, 38px);
  overflow: hidden;
  border: 2px solid rgba(242, 211, 141, 0.78);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 22px rgba(216, 180, 107, 0.16), inset 0 0 18px rgba(0, 0, 0, 0.42);
}

.loading-bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -44%;
  width: 58%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9f7836 0%, #e3bd70 50%, #fff0bf 100%);
  box-shadow: 0 0 18px rgba(242, 211, 141, 0.78);
  animation: loading-sweep 3.4s ease-in-out infinite;
}

.poster__soon {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 3.2vw, 22px);
  letter-spacing: 0.36em;
}

.poster__soon::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: clamp(18px, 3.2vh, 30px) auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 15px rgba(216, 180, 107, 0.5);
}

.poster__socials {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: clamp(18px, 4.4vw, 34px);
  padding-bottom: clamp(2px, 2vh, 24px);
  color: #fff;
}

.poster__socials a {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 54px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 160ms ease, transform 160ms ease;
}

.poster__socials a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.poster__socials svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.65));
}

.poster__socials .icon-fill {
  fill: currentColor;
  stroke: none;
}

.poster__socials span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.poster__socials i {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(216, 180, 107, 0.7), transparent);
}

@keyframes loading-sweep {
  0% {
    left: -50%;
    opacity: 0.76;
  }

  45% {
    opacity: 1;
  }

  100% {
    left: 96%;
    opacity: 0.82;
  }
}

@media (max-width: 430px) {
  .poster {
    padding-left: 18px;
    padding-right: 18px;
  }

  .poster__brand {
    padding-top: 20px;
  }

  .poster__content {
    padding-top: 28px;
  }
}

@media (max-height: 720px) {
  .poster__brand {
    padding-top: 8px;
    gap: 10px;
  }

  .poster__brand img {
    width: clamp(192px, 48vw, 312px);
  }

  .poster__content {
    padding-top: 22px;
    padding-bottom: 14px;
  }

  .poster h1 {
    margin-bottom: 20px;
  }

  .poster__lead {
    margin-bottom: 20px;
    line-height: 1.48;
  }

  .loading-bar {
    margin-bottom: 20px;
  }
}

@media (min-width: 900px) {
  .poster {
    width: min(100%, 1120px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loading-bar span {
    animation: none;
    left: 12%;
    width: 54%;
  }
}
