/* ============================================================
   Cinema Booth (quieted) — purposeful atmosphere, not decoration.
   A dark booth lit by one warm stage light. Loaded AFTER styles.css.

   Deliberately NOT here anymore (they read as AI slop):
     - gradient-clip headline text
     - glassmorphism + cursor spotlight on every card
     - oversized CTA glow bloom
   The frosted/glow treatment is reserved for the ONE hero product
   stage (.stage), where it's earned. Everything else stays solid.
   ============================================================ */

/* display face also reaches demo.html, which doesn't load styles.css */
:root { --font-display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "SF Pro Rounded", system-ui, sans-serif; }
.intro h1, .top .brand { font-family: var(--font-display); }

/* soft cinematic well so booth-black has depth (never pure-black smear) */
body { background: radial-gradient(135% 80% at 50% -12%, #131319 0%, var(--bg) 56%); }

/* ---------- one calm stage light up top ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(80px); will-change: transform; }
.aurora .b1 {
  width: 44vw; height: 44vw; left: -8vw; top: -12vw;
  background: radial-gradient(circle, rgba(255,178,62,.16), transparent 68%);
  animation: drift1 34s ease-in-out infinite;
}
.aurora .b2 {
  width: 34vw; height: 34vw; right: -10vw; top: 2vh;
  background: radial-gradient(circle, rgba(43,214,196,.09), transparent 68%);
  animation: drift2 42s ease-in-out infinite;
}
.aurora .b3 { display: none; }   /* dropped: the glow was doing too much */
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(6vw,4vh)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-5vw,4vh)} }

/* ---------- frosted nav: functional, keeps the sticky bar legible ---------- */
.nav {
  background: rgba(10,10,11,.62);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
}
.nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,178,62,.4), transparent);
}

/* ---------- calmer card hover (no glass, no spotlight) ---------- */
.features .card:hover, .ai-card:hover, .who:hover, .aud-mode:hover, .shot:hover {
  border-color: rgba(255,178,62,.5);
  box-shadow: 0 14px 36px rgba(0,0,0,.4);
}

/* ============================================================
   Hero product stage — the ONE earned glass/glow surface.
   An auto-cycling miniature of the app running a show.
   ============================================================ */
.stage { position: relative; }
.stage-screen {
  position: relative; aspect-ratio: 16 / 11; border-radius: 18px; overflow: hidden;
  background: radial-gradient(120% 85% at 50% 0%, #1b1932 0%, #0c0c12 62%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12),
              0 30px 70px rgba(0,0,0,.6), 0 0 70px rgba(255,178,62,.10);
}
.stage .sc {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; padding: 9%;
  text-align: center; opacity: 0; transition: opacity .55s var(--ease);
}
.stage .sc.on { opacity: 1; }
.stage .sc-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,3.2vw,30px); letter-spacing: -.02em; line-height: 1.05; }
.stage .sc-sub { color: var(--muted); font-size: 14px; }

/* lower-third name bar */
.stage .sc-lower { align-items: flex-start; justify-content: flex-end; padding: 0 0 9% 8%; }
.stage .lt {
  text-align: left; background: rgba(10,10,14,.72); backdrop-filter: blur(6px);
  padding: 12px 18px; border-radius: 12px;
  opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.stage .sc-lower.on .lt { opacity: 1; transform: none; }
.stage .lt-t { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px,2.6vw,24px); }
.stage .lt-s { color: var(--amber); font-weight: 700; font-size: 11px; letter-spacing: .12em; margin-top: 3px; }

/* live poll */
.stage .sc-poll { align-items: stretch; justify-content: center; gap: 11px; padding: 9% 11%; text-align: left; }
.stage .sc-prompt { font-family: var(--font-display); font-weight: 800; font-size: clamp(15px,2.3vw,21px); margin-bottom: 2px; }
.stage .pr-top { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.stage .pr-top b { color: var(--amber); font-variant-numeric: tabular-nums; }
.stage .pr-bar { height: 12px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; }
.stage .pr-bar i { display: block; height: 100%; width: var(--w); border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,178,62,.55), var(--amber)); }
.stage .sc-poll.grow .pr-bar i { animation: barGrow .9s var(--ease); }
@keyframes barGrow { from { width: 0; } }

/* dip-to-black between scenes */
.stage .dip { position: absolute; inset: 0; background: #000; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.stage .dip.on { opacity: 1; }

/* transport strip under the screen */
.stage-bar { display: flex; align-items: center; gap: 10px; margin-top: 13px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.stage-bar .go { background: var(--green); color: #052; font-weight: 850; letter-spacing: .5px; padding: 6px 14px; border-radius: 8px; box-shadow: 0 0 0 3px rgba(43,214,106,.18); }
.stage-bar .now b { color: var(--text); font-weight: 750; }
.stage-bar .next { margin-left: auto; }

@media (prefers-reduced-motion: reduce) {
  .stage .sc, .stage .lt { transition: none; }
}

/* ---------- honor reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .aurora span { animation: none; }
}
