@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;500;700;800;900&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cabinet Grotesk', sans-serif;
  background: #0a0a0a;
  color: #f5f4f0;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO VISUAL ── */
.hero-img-panel { background: #0e0e0e; }

.beam {
  position: absolute;
  width: 2px;
  bottom: 40%;
  transform-origin: bottom center;
  filter: blur(1px);
}
.beam-1 {
  left: 30%;
  height: 55%;
  background: linear-gradient(to top, #c9a84c44, transparent);
  transform: rotate(-18deg);
  animation: beam-flicker 4s ease-in-out infinite;
}
.beam-2 {
  left: 50%;
  height: 70%;
  background: linear-gradient(to top, #ffffff22, transparent);
  transform: rotate(0deg);
  animation: beam-flicker 5s ease-in-out infinite 0.8s;
}
.beam-3 {
  left: 70%;
  height: 50%;
  background: linear-gradient(to top, #c9a84c33, transparent);
  transform: rotate(15deg);
  animation: beam-flicker 3.5s ease-in-out infinite 1.4s;
}

@keyframes beam-flicker {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.stage-floor {
  position: absolute;
  bottom: 38%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c44, transparent);
}

.spotlight {
  position: absolute;
  bottom: 38%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(20px);
}
.sp-1 { left: 25%; background: #c9a84c; opacity: 0.3; animation: sp-pulse 3s ease-in-out infinite; }
.sp-2 { left: 48%; background: #ffffff; opacity: 0.15; animation: sp-pulse 4s ease-in-out infinite 1s; }
.sp-3 { left: 68%; background: #c9a84c; opacity: 0.25; animation: sp-pulse 3.5s ease-in-out infinite 0.5s; }

@keyframes sp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

.lens-flare {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px 8px #c9a84c66, 0 0 60px 20px #c9a84c22;
  animation: flare-pulse 6s ease-in-out infinite;
}
@keyframes flare-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* ── SCROLL LINE ── */
.scroll-indicator {
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ── MARQUEE ── */
.marquee-track {
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #c9a84c;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

/* ── BENTO ── */
.bento-item {
  transition: background 0.4s ease;
}
.bento-item:hover { background: #111 !important; }

.stage-mini {
  position: absolute;
  bottom: 20%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c44, transparent);
}
.stage-mini::before {
  content: '';
  position: absolute;
  left: 30%;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c9a84c;
  filter: blur(24px);
  opacity: 0.3;
}

/* ── SCROLL PIN ── */
.scroll-pin-section { height: 400vh; }
.steps-container { will-change: transform; }

/* ── CTA BG ── */
.cta-bg-element {
  background: radial-gradient(ellipse, #c9a84c15 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── NAV ── */
#nav { transition: background 0.4s ease; }
#nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}
#nav.scrolled a, #nav.scrolled li a { color: #f5f4f0 !important; }
#nav.scrolled .border-\[\#c9a84c\] { opacity: 1; }

/* ── SELECTION ── */
::selection { background: #c9a84c; color: #0a0a0a; }
