/* ═══════════════════════════════════════════════════════════════════════════
   Lighting Boss Codex — landing page (public, pre-auth)
   BOSS energy: black, red, bold, confident.
   ═══════════════════════════════════════════════════════════════════════════ */

body.landing {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

/* Canvas for spotlight sweep animation */
#spotlight {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Radial vignette to push the eye to center */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
              transparent 0%,
              transparent 40%,
              rgba(0, 0, 0, 0.85) 100%);
}

/* Hero content */
.hero {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px;
  max-width: 900px;
  animation: hero-fade-in 1.5s ease-out;
}

@keyframes hero-fade-in {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* LB monogram — real PNG brand logo */
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin-bottom: 32px;
  position: relative;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.monogram-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 24px rgba(255, 0, 0, 0.55))
          drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
}

.monogram:hover {
  transform: scale(1.04);
}

.monogram:hover .monogram-img img,
.monogram-img:hover img {
  filter: drop-shadow(0 0 32px rgba(255, 0, 0, 0.8))
          drop-shadow(0 0 12px rgba(0, 0, 0, 0.9));
}

/* Main wordmark */
.logotype {
  margin-bottom: 0;
}

.logotype h1 {
  font-family: "Montserrat", "Gotham", -apple-system, sans-serif;
  font-size: clamp(44px, 9vw, 110px);
  font-weight: 900;
  letter-spacing: clamp(2px, 0.8vw, 8px);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.logotype h2 {
  font-family: "Montserrat", "Gotham", -apple-system, sans-serif;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: clamp(4px, 1.2vw, 16px);
  line-height: 1;
  color: var(--red);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(255, 0, 0, 0.4);
}

/* Red accent bar below the logotype */
.hero .red-bar {
  width: 120px;
  height: 4px;
  margin: 36px auto 28px auto;
}

/* Tagline */
.tagline {
  font-family: "Montserrat", "Gotham", -apple-system, sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: clamp(3px, 0.8vw, 8px);
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 12px;
}

.tagline-emphasis {
  color: var(--white);
  font-weight: 900;
}

.tagline-emphasis .red {
  color: var(--red);
}

/* Enter button positioned below the tagline */
.enter-container {
  margin-top: 56px;
}

.enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 56px;
  font-family: "Montserrat", "Gotham", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.enter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
              transparent 0%,
              rgba(255, 255, 255, 0.3) 50%,
              transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.enter-btn:hover {
  color: var(--white);
  background: var(--red-bright);
  border-color: var(--red-bright);
  letter-spacing: 6px;
  box-shadow:
    0 0 40px rgba(255, 0, 0, 0.6),
    0 12px 32px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.enter-btn:hover::before {
  transform: translateX(100%);
}

.enter-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-weight: 900;
}

.enter-btn:hover .arrow {
  transform: translateX(8px);
}

/* Footer */
.landing-footer {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  font-family: "Montserrat", "Gotham", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
}

.landing-footer .since {
  color: var(--red);
  font-weight: 900;
}

.landing-footer .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 10px;
  box-shadow: 0 0 12px var(--red-glow);
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Mobile responsive */
@media (max-width: 640px) {
  .hero {
    padding: 20px;
  }

  .monogram {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }

  .logotype h1 {
    letter-spacing: 2px;
  }

  .logotype h2 {
    letter-spacing: 4px;
  }

  .tagline {
    letter-spacing: 3px;
  }

  .hero .red-bar {
    width: 80px;
    margin: 24px auto 20px auto;
  }

  .enter-container {
    margin-top: 36px;
  }

  .enter-btn {
    padding: 16px 40px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .enter-btn:hover {
    letter-spacing: 4px;
  }

  .landing-footer {
    font-size: 9px;
    letter-spacing: 2px;
    bottom: 20px;
  }
}
