/* ===========================================================
   DREAM-THEATER — Intro (Logo gauge loader)
   Shared by the home page (/) and the MCN gateway (/mcn/).
   The gradient reads from --intro-a / --intro-b so each page can
   tint the progress bar with its own palette.
   =========================================================== */

.intro {
  position: fixed;
  inset: 0;
  background: #050410;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 46px;
  z-index: 200;
}
.intro__logo-wrap {
  position: relative;
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.intro__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.intro__logo--base {
  filter: grayscale(1) brightness(0.28) contrast(1.05);
  opacity: 0.5;
}
.intro__logo--fill {
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  will-change: clip-path;
}
.intro__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  width: clamp(240px, 28vw, 380px);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.intro__progress-label {
  flex: 0 0 auto;
  font-weight: 600;
}
.intro__progress-bar {
  flex: 1 1 auto;
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: 2px;
}
.intro__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--intro-a, #e7c287), var(--intro-b, #d6ff3a));
  transition: width 0.05s linear;
}
.intro__progress-value {
  flex: 0 0 auto;
  min-width: 42px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
