/* =========================
   BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a1e35;
  overflow: hidden;
  font-family: Arial, sans-serif;
  color: #fefdfd;
}

/* =========================
   BACKGROUND
========================= */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;

  background: radial-gradient(
    circle at center,
    transparent 40%,
    rgba(10,30,53,0.9)
  );
}

/* =========================
   CONTENT LAYER (FIXED)
========================= */
.content {
  position: fixed;
  inset: 0;
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  pointer-events: none;
}

/* =========================
   MAIN TITLE
========================= */
.title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;

  color: #fefdfd;
  opacity: 0;

  text-shadow: 0 0 25px rgba(217,179,123,0.15);
}

/* =========================
   FOUNDATION ROW
========================= */
.foundation-row {
  display: flex;
  align-items: center;
  gap: 20px;

  opacity: 0;
  margin-top: 10px;
}

/* decorative lines */
.line-deco {
  width: 70px;
  height: 1px;
  background: #d9b379;
  opacity: 0.75;
}

/* foundation text */
.foundation {
  font-size: 4.2rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: #d9b379;
}

/* =========================
   SUBTITLE
========================= */
.subtitle {
  margin-top: 20px;

  font-size: 2rem;
  letter-spacing: 0.2em;

  color: rgba(254,253,253,0.75);
  opacity: 0;
}

/* =========================
   COMING SOON (SYSTEM STATUS STYLE)
========================= */
.coming-soon {
  margin-top: 35px;

  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;

  color: rgba(217,179,123,0.85);

  opacity: 0;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* STATUS DOT (LIVE FEEL) */
.coming-soon::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #08b946;
  border-radius: 50%;

  box-shadow: 0 0 10px rgba(217,179,123,0.6);

  animation: pulse 2s infinite ease-in-out;
}

/* subtle pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.8);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}