*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #ff2d8a;
  --pink-glow: rgba(255, 45, 138, 0.55);
  --white: #ffffff;
  --black: #050505;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.bg-columns {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  gap: 0.65rem;
  padding: 0 0.35rem;
  overflow: hidden;
}

.bg-column {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.bg-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  flex-shrink: 0;
}

.bg-set {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}

.bg-set img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.35rem;
  display: block;
  flex-shrink: 0;
}

.bg-track.scroll-up {
  animation: scrollUp var(--speed, 40s) linear infinite;
}

.bg-track.scroll-down {
  animation: scrollDown var(--speed, 40s) linear infinite;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.88) 70%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.92) 100%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.logo-wrap {
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.2s both;
}

.logo {
  width: min(520px, 88vw);
  height: auto;
  filter: drop-shadow(0 0 28px var(--pink-glow)) drop-shadow(0 0 60px rgba(255, 45, 138, 0.25));
}

.tagline {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.25rem;
  animation: fadeUp 1s ease 0.4s both;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.55s both;
}

.coming-soon .accent {
  color: var(--pink);
  text-shadow: 0 0 30px var(--pink-glow);
}

.subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 300;
  opacity: 0.7;
  max-width: 28rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.7s both;
}

.notify-form {
  display: flex;
  gap: 0;
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  animation: fadeUp 1s ease 0.85s both;
}

.notify-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.notify-form button {
  border: none;
  background: var(--pink);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.notify-form button:hover {
  background: #ff4d9d;
  box-shadow: 0 0 24px var(--pink-glow);
}

.form-msg {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--pink);
  animation: fadeUp 0.5s ease both;
}


.footer {
  position: absolute;
  bottom: 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.45;
  animation: fadeUp 1s ease 1s both;
}

.footer .location {
  color: var(--pink);
  opacity: 1;
}

.footer .dot {
  margin: 0 0.6rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .notify-form {
    flex-direction: column;
    border-radius: 1rem;
  }

  .notify-form button {
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
  }
}
