:root {
  --text: #f7f8ff;
  --muted: rgba(247, 248, 255, 0.62);
  --blue: #2f8cff;
  --violet: #bb63ff;
  --pink: #f323ff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  background: #020203;
  color: var(--text);
}

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

.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.light-trail {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 61%;
  width: max(1280px, 116vw);
  height: auto;
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0.97;
  pointer-events: none;
  user-select: none;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.38) 32%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 35px 49px;
}

.brand {
  display: block;
  width: clamp(174px, 17vw, 242px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.email-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 500;
  line-height: 1;
  transition: color 160ms ease;
  white-space: nowrap;
}

.email-link:hover {
  color: #fff;
}

.hero {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: calc(100svh - 117px);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 0 49px 11vh;
}

.hero h1 {
  max-width: min(760px, 78vw);
  margin: 0;
  color: transparent;
  background: linear-gradient(100deg, #168dff 0%, #6aa3ff 40%, #d7c0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(3.5rem, 5.15vw, 5.95rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.coming-soon {
  position: relative;
  display: grid;
  width: clamp(126px, 13vw, 170px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transform: rotate(-10deg);
  animation: badgeSpin 18s linear infinite;
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.coming-soon::before {
  inset: 9px;
  border: 1px solid rgba(109, 161, 255, 0.38);
}

.coming-soon::after {
  inset: -7px;
  background: radial-gradient(circle, rgba(105, 150, 255, 0.24), rgba(105, 150, 255, 0) 64%);
  filter: blur(6px);
  z-index: -1;
}

.coming-soon span {
  position: absolute;
  padding: 0 18px;
  animation: languageSwap 6s ease-in-out infinite;
}

.coming-soon span:last-child {
  animation-delay: -3s;
}

@keyframes badgeSpin {
  to {
    transform: rotate(350deg);
  }
}

@keyframes languageSwap {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  50%,
  92% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 28px 28px;
  }

  .light-trail {
    left: 70%;
    width: 1560px;
  }

  .hero {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - 96px);
    padding: 0 28px 12vh;
  }

  .coming-soon {
    margin-left: min(42vw, 300px);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 24px 20px;
  }

  .email-link {
    font-size: 0.72rem;
  }

  .brand {
    width: 168px;
  }

  .light-trail {
    top: 55%;
    left: 78%;
    width: 1480px;
  }

  .shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.1) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.04) 100%);
  }

  .hero {
    align-items: flex-start;
    min-height: calc(100svh - 86px);
    padding: 20vh 20px 14vh;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 13.5vw, 4rem);
    line-height: 1.2;
  }

  .coming-soon {
    width: 118px;
    margin-left: 0;
  }
}
