/* ==========================================================================
   XO KATHMANDU // PURE COMING SOON - LOGO ONLY
   Monolithic Chrome & Dark Void Aesthetics
   ========================================================================== */

:root {
  --bg-void: #050508;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-cyan: #00f0ff;
  --accent-cyan-glow: rgba(0, 240, 255, 0.45);
  --accent-purple: #a855f7;

  --chrome-gradient: linear-gradient(135deg, #ffffff 0%, #cbd5e1 45%, #64748b 70%, #f8fafc 100%);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

/* Resets */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow: hidden;
}

::selection {
  background: var(--accent-cyan);
  color: #000000;
}

/* Ambient Laser Glows & Grid */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}

.bg-orb-1 {
  top: -15%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.bg-orb-2 {
  bottom: -15%;
  right: 20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

.laser-beam {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  filter: blur(1px);
}

.laser-1 {
  top: 0;
  left: 18%;
  width: 2px;
  height: 100vh;
  background: linear-gradient(180deg, var(--accent-cyan), transparent);
  box-shadow: 0 0 15px var(--accent-cyan);
  transform: rotate(-15deg);
}

.laser-2 {
  top: 0;
  right: 18%;
  width: 2px;
  height: 100vh;
  background: linear-gradient(180deg, var(--accent-purple), transparent);
  box-shadow: 0 0 15px var(--accent-purple);
  transform: rotate(15deg);
}

.cyber-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* Centered Stage Wrapper */
.coming-soon-wrapper {
  position: relative;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo Display */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-xo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 26vw, 18rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 55px rgba(255, 255, 255, 0.32));
  user-select: none;
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.logo-city {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.65em;
  color: #ffffff;
  margin-top: 0.8rem;
  margin-right: -0.65em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  user-select: none;
}

/* Coming Soon Notice */
.status-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.coming-soon-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  margin-right: -0.28em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.35);
  animation: pulseComingSoon 3s ease-in-out infinite alternate;
}

@keyframes pulseComingSoon {
  0% { opacity: 0.85; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); }
  100% { opacity: 1; filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.5)); }
}

.glow-line {
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  box-shadow: 0 0 14px var(--accent-cyan);
  margin-top: 1rem;
  animation: expandLine 3s ease-in-out infinite alternate;
}

@keyframes expandLine {
  0% { width: 90px; opacity: 0.6; }
  100% { width: 160px; opacity: 1; }
}
