/* ============================================================
   VEEDA — single-screen "stage" language
   Shared by the homepage and the coming-soon shells.
   ============================================================ */

html, body { height: 100%; overflow: hidden; }

.stage {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  background:
    radial-gradient(ellipse 60% 45% at 50% 40%, var(--stage-tint, rgba(217, 102, 15, 0.30)), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 157, 61, 0.14), transparent 65%),
    linear-gradient(180deg, #060402 0%, #0d0703 45%, #1a0f08 100%);
  padding: 2rem;
  text-align: center;
  perspective: 1200px;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 620px);
  height: min(40vw, 340px);
  border-radius: 50%;
  transform: translate(-50%, -60%);
  background: radial-gradient(closest-side, var(--glow-color), transparent 70%);
  filter: blur(60px);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
  transition: transform 0.25s ease-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.92; }
}

.headline {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.5em;
  row-gap: 0.3em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 3.4vw, 2rem);
  color: var(--cream);
}

.word {
  display: inline-block;
  opacity: 0;
  letter-spacing: 0.42em;
  background: linear-gradient(90deg, var(--amber) 5%, var(--cream) 32%, var(--cream) 78%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: word-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.from-left  { transform: translateX(-90px); animation-delay: 0.15s; }
.from-top   { transform: translateY(-70px); animation-delay: 0.32s; }
.from-bottom{ transform: translateY(70px);  animation-delay: 0.49s; }
.from-right { transform: translateX(90px);  animation-delay: 0.66s; }

@keyframes word-in {
  to { opacity: 1; transform: translate(0, 0); }
}

.subline {
  position: relative;
  font-weight: 300;
  font-size: clamp(0.65rem, 1.6vw, 0.85rem);
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  color: var(--burnt);
}

.intro-subline {
  opacity: 0;
  animation: subline-in 0.8s ease-out 1.05s forwards;
}

@keyframes subline-in {
  to { opacity: 0.9; }
}

.stage .socials {
  position: absolute;
  bottom: clamp(1.2rem, 3.5vh, 2.2rem);
  left: 0;
  right: 0;
}

.socials-intro > * {
  opacity: 0;
  animation: late-in 1s ease-out 2s forwards;
}

@keyframes late-in {
  to { opacity: 1; }
}

@media (max-width: 480px) {
  .stage { gap: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .word { opacity: 1; transform: none; }
  .intro-subline { opacity: 0.9; }
  .socials-intro > * { animation: none; opacity: 1; }
  .glow { animation: none; opacity: 0.75; }
}
