/* ===== FLUIR — shared placeholder page styles ===== */

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

:root {
  --blue: #5BB8E8;
  --blue-bright: #7dd3f7;
  --blue-dark: #2d8cbf;
  --blue-soft: rgba(91,184,232,0.14);
  --blue-line: rgba(91,184,232,0.32);
  --black: #000000;
  --dark: #050508;
  --dark2: #08080f;
  --white: #ffffff;
  --gray: #8a8a9a;
  --gray-light: #c8c8d8;
  --glow-sm: 0 0 20px rgba(91,184,232,0.25);
  --glow-md: 0 0 40px rgba(91,184,232,0.35);
}

html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
  position: relative;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.28;
}

/* Cursor */
#cursor-dot {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, opacity 0.2s;
  box-shadow: 0 0 10px var(--blue), 0 0 20px rgba(91,184,232,0.6);
}
#cursor-ring {
  position: fixed; pointer-events: none; z-index: 9997;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(91,184,232,0.45);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s, transform 0.15s ease;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--blue);
  background: rgba(91,184,232,0.06);
}

/* Loader */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.1rem; font-weight: 900;
  letter-spacing: 0.24em;
  background: linear-gradient(135deg, #5BB8E8, #b8e8ff, #5BB8E8);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 1.6s linear infinite;
}
.loader-bar-track { width: 200px; height: 2px; background: rgba(91,184,232,0.15); border-radius: 2px; overflow: hidden; }
.loader-bar { height: 100%; background: var(--blue); box-shadow: 0 0 12px var(--blue); animation: loader-fill 1.2s ease forwards; }
@keyframes loader-fill { from { width: 0; } to { width: 100%; } }
.loader-text { font-size: 0.68rem; color: var(--gray); letter-spacing: 0.3em; text-transform: uppercase; }
@keyframes shimmer-text { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  pointer-events: none;
}
nav > * { pointer-events: auto; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo svg { height: 44px; width: auto; transition: filter 0.3s; }
.nav-logo:hover svg { filter: drop-shadow(0 0 16px rgba(91,184,232,0.7)); }
.nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray-light); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(91,184,232,0.2);
  border-radius: 10px;
  background: rgba(6,6,14,0.5);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.nav-back:hover {
  color: var(--blue); border-color: var(--blue);
  transform: translateX(-2px);
  box-shadow: var(--glow-sm);
}

/* Stage */
.placeholder-stage {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 140px 32px 80px;
  overflow: hidden;
}

.aurora { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.aurora::before {
  content: ''; position: absolute;
  width: 950px; height: 950px;
  background: radial-gradient(circle, rgba(91,184,232,0.13) 0%, transparent 65%);
  top: -220px; left: -180px;
  animation: aurora-drift 14s ease-in-out infinite alternate;
}
.aurora::after {
  content: ''; position: absolute;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(61,214,245,0.08) 0%, transparent 65%);
  bottom: -120px; right: -100px;
  animation: aurora-drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes aurora-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,30px) scale(1.15); }
}
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(91,184,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,184,232,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 35%, transparent 100%);
  animation: grid-drift 22s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}

/* Content */
.placeholder-content {
  position: relative;
  max-width: 680px;
  text-align: center;
  z-index: 2;
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px;
  border: 1px solid rgba(91,184,232,0.3);
  border-radius: 100px;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(91,184,232,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  margin-bottom: 36px;
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.35); opacity: 0.55; }
}

.icon-box {
  width: 88px; height: 88px;
  margin: 0 auto 28px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(91,184,232,0.3);
  background:
    radial-gradient(circle at 30% 30%, rgba(91,184,232,0.25), transparent 55%),
    radial-gradient(circle, rgba(91,184,232,0.08) 0%, rgba(5,5,15,0.7) 70%);
  color: var(--blue);
  box-shadow:
    inset 0 0 30px rgba(91,184,232,0.15),
    0 0 40px rgba(91,184,232,0.2);
  animation: icon-breathe 4s ease-in-out infinite;
}
@keyframes icon-breathe {
  0%,100% { transform: scale(1); box-shadow: inset 0 0 30px rgba(91,184,232,0.15), 0 0 40px rgba(91,184,232,0.2); }
  50%     { transform: scale(1.04); box-shadow: inset 0 0 40px rgba(91,184,232,0.25), 0 0 60px rgba(91,184,232,0.35); }
}
.icon-box svg { width: 38px; height: 38px; }

.title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #b8e8ff 55%, #5BB8E8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 5s linear infinite;
  margin-bottom: 14px;
}

.tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.description {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
}
.description strong { color: var(--white); font-weight: 600; }

.coming-list {
  list-style: none;
  display: grid; gap: 10px;
  max-width: 480px;
  margin: 0 auto 48px;
  text-align: left;
  padding: 24px 28px;
  border: 1px solid rgba(91,184,232,0.14);
  border-radius: 16px;
  background: rgba(5,5,15,0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.coming-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.5;
}
.coming-list .tick {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: var(--black);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none; letter-spacing: 0.03em;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(91,184,232,0.55);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(91,184,232,0.4); color: var(--blue);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(91,184,232,0.06);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

.footer-note {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px;
  color: var(--gray);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
.footer-note .sep { opacity: 0.3; }

/* Responsive */
@media (max-width: 720px) {
  nav { padding: 14px 18px; }
  .nav-logo svg { height: 34px; }
  .nav-back span { display: none; }
  .nav-back { padding: 8px 10px; }
  .placeholder-stage { padding: 110px 20px 90px; }
  .icon-box { width: 72px; height: 72px; border-radius: 16px; }
  .icon-box svg { width: 30px; height: 30px; }
  .coming-list { padding: 20px; }
  .footer-note { font-size: 0.56rem; letter-spacing: 0.18em; gap: 10px; }
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }
}
