/* ============================================
   THE LINEUP — The People's Program
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #0a0a0a;
  --color-white: #ffffff;
  --color-purple: #c969dc;
  --color-magenta: #e91e9c;
  --color-green: #39ff14;
  --color-dark-purple: #4a1a8a;
  --color-deep-purple: #7b2ff2;
  --color-pink: #d962e2;
  --color-gray: #888;
  --color-card-bg: rgba(255,255,255,0.06);
  --color-card-border: rgba(255,255,255,0.1);

  --font-display: 'Bowlby One', 'Oswald', sans-serif;
  --font-body: 'Poppins', -apple-system, sans-serif;

  --section-pad: clamp(60px, 10vw, 120px);
  --container-max: 1100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: clip;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* --- Placeholder Images --- */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 4px;
  position: relative;
}
.placeholder-img::after {
  content: attr(data-label);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.placeholder-img--video { min-height: 300px; aspect-ratio: 16/9; }
.placeholder-img--sm { min-height: 50px; width: 100px; display: inline-flex; }
.placeholder-img--partner { min-height: 60px; width: 160px; }

/* --- Fixed Logo (top-right) --- */
.fixed-logo {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
}
.scroll-up {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #fff;
  z-index: 100;
  text-decoration: none;
  align-items: center;
  gap: 4px;
}
.scroll-up__arrow {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 600px) {
  .scroll-up { display: inline-flex; }
  .fixed-logo { bottom: calc(32px + env(safe-area-inset-bottom, 0px)); }
}
.fixed-logo__img {
  height: 40px;
  width: auto;
  display: block;
}

/* --- Section Label (fixed, vertical, left side) --- */
.section-label {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  white-space: pre-line;
  text-align: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.section-label.visible {
  opacity: 1;
}

/* --- Lock Wrap (reusable sticky section) --- */
.lock-wrap {
  position: relative;
  z-index: 2;
  height: 200vh;
}
.lock-wrap__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lock-wrap {

}
.lock-wrap__sticky > section {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* --- Section Base --- */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  min-height: max(100vh, 800px);
}

/* --- Headings --- */
h1, h2,
h1 span, h2 span, h3 span,
h1 strong, h2 strong, h3 strong {
  font-weight: 400 !important;
}
h2 {
  font-family: var(--font-display);
  margin-bottom: 20px;
}
h2 + h2 {
  margin-top: 0px !important;
}
h3 {
  font-size: 20px !important;
  font-weight: 600;
  line-height: 1.2 !important;
}
p {
  font-size: 18px !important;
  font-weight: 400 !important;
  margin-bottom: 15px !important;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -1px;
  font-size: clamp(48px, 8vw, 96px);
  text-align: center;
}
.section-heading--xl {
  font-size: 50px;
}
.section-heading--massive {
  font-size: clamp(64px, 14vw, 160px);
}
.cta-section__heading {
  font-size: 120px;
}
.massive-headline {
  font-size: 60px !important;
  text-transform: uppercase !important;
  line-height: 1;
}
.accent-dot {
  color: var(--color-purple);
}
.accent-dot--pink {
  color: var(--color-pink);
}
.text-right { text-align: right; }
.text-pink { color: var(--color-pink); }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO BACKGROUND SLIDESHOW (spans hero → video carousel)
   ============================================ */
.hero-bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  opacity: 0;
}
.hero-bg-wrap.visible {
  opacity: 1;
}
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-bg-slide.active {
  opacity: 1;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  height: 100dvh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;

}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__logo {
  margin: 0 auto 16px;
  max-width: 900px;
  width: 90%;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 1;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 1;
}
.hero__subtitle-sep {
  color: var(--color-pink);
}

/* ============================================
   MAIN VIDEO (scroll-driven expand/shrink)
   ============================================ */
.main-video {
  position: relative;
  z-index: 1;
  height: 300vh; /* scroll runway */
  background: transparent;
  min-height: auto;
  margin: 0;
  padding: 0;
}
.main-video__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.main-video__frame {
  width: 900px;
  max-width: 90vw;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  will-change: transform;
  background: #000;
}
.main-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  pointer-events: none;
}

/* ============================================
   PALM TREES (fixed, scroll up into frame)
   ============================================ */
.palms-wrap {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transform: translateX(var(--palms-translate-x, 0%));
}
.palms-wrap.visible {
  opacity: 1;
}
.palms-wrap__img {
  position: absolute;
  bottom: 0;
  max-width: 100px;
  height: auto;
  transform: translateY(var(--palms-translate-y, 100%));
}
.palms-wrap__img--left {
  left: 0;
}
.palms-wrap__img--right {
  right: 0;
}
@media (max-width: 900px) {
  .palms-wrap {
    display: none;
  }
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 10px;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  backdrop-filter: blur(8px);
}
.carousel__btn:hover {
  background: var(--color-purple);
  border-color: var(--color-purple);
}
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel__dot.active {
  background: var(--color-purple);
  transform: scale(1.3);
}

/* ============================================
   EXPERIENCE PANELS — Horizontal scroll-in
   ============================================ */
.experience-panels {
  position: relative;
  z-index: 2;
  /* Height = 4 panels * 200vh (hold + transition per panel) */
  height: 800vh;
  background: transparent;
}
/* 2-panel group (hollywood-activation/community-investment) needs half the runway */
.experience-panels--2 {
  height: 400vh;
}
/* 3-panel group (economic-impact/economic-stats/project-highlights) needs 3/4 the runway */
.experience-panels--3 {
  height: 600vh;
}
.details-panels {
  /* 4 panels: hold + transition each = 2n-1 = 7 segments */
  height: 900vh;
}
.experience-panels__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}
.experience-panels__sticky h2 {
  text-align: center;
}
#three-days h2,
#three-genres h2,
#three-crowds h2,
#details-intro h2,
#the-people h2,
#hollywood-activation h2 {
  text-align: center;
}
.experience-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) 0;
  min-height: 0;
}
.experience-panel[data-panel="0"] { z-index: 1; }
.experience-panel[data-panel="1"] { z-index: 2; transform: translateX(100%); }
.experience-panel[data-panel="2"] { z-index: 3; transform: translateX(100%); }
.experience-panel[data-panel="3"] { z-index: 4; transform: translateX(100%); }
/* In details-panels group, even panel 0 starts off-screen right */
.details-panels .experience-panel[data-panel="1"],
.details-panels .experience-panel[data-panel="3"] { overflow: visible; }
/* Let the palm tree bleed outside these panels' bounds */
#economic-impact, #project-highlights { overflow: visible; }
/* Details panels don't need solid bg — images cover the panels */
.details-panels .experience-panel { background: transparent; }
/* #the-people should let the disco ball show through */
#the-people.experience-panel { background: transparent; }
.people-stats__content {
  background: url(../images/bg-gold.png) center / contain no-repeat;
  padding: 40px;
  position: relative;
}

.experience-panels-short {
  position: relative;
  z-index: 2;
  /* Height = 1 panel with scroll locking space */
  height: 300vh;
  background: transparent;
}
.experience-panels-short::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  z-index: -1;
}
.experience-panels-short__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}
.experience-panels-short__sticky h2 {
  text-align: center;
}
#why-hollywood::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.5);
  opacity: .85;
  z-index: -1;
}

/* --- Why Hollywood --- */
#why-hollywood .experience-section__content {
  text-align: center !important;
}
#why-hollywood .section-heading {
  text-align: center !important;
}
#why-hollywood .why-hollywood__text {
  text-align: center !important;
}
#why-hollywood * {
  text-shadow: 0px 2px 2px rgba(0,0,0,.5);
}
#the-people * {
  text-shadow: none;
}
#the-people p {
  color: #000;
}
#the-people h2 {
  color: #000;
}
.reel-img {
  position: absolute;
  left: -30px;
  bottom: -70px;
  height: 230px;
  animation: reelSpin 2s steps(1) infinite;
  transform-origin: center;
}
@keyframes reelSpin {
  0% { transform: rotate(10deg); }
  33% { transform: rotate(-5deg); }
  66% { transform: rotate(0deg); }
  100% { transform: rotate(10deg); }
}
.star-img {
  position: absolute;
  right: -30px;
  top: -70px;
  height: 230px;
  animation: starSpin 2s steps(1) infinite;
  transform-origin: center;
}
@keyframes starSpin {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}
.marigolds {
  position: absolute;
  left: -20px;
  top: -60px;
  height: 200px;
  animation: reelSpin 2s steps(1) infinite;
  transform-origin: center;
}
.candles {
  position: absolute;
  right: -100px;
  bottom: -60px;
  height: 190px;
  animation: starSpin 2s steps(1) infinite;
  transform-origin: center;
}
.star-02 {
  position: absolute;
  left: -70px;
  bottom: -70px;
  height: 200px;
  animation: reelSpin 2s steps(1) infinite;
  transform-origin: center;
}
.award {
  position: absolute;
  right: 30px;
  top: -90px;
  height: 220px;
  animation: starSpin 2s steps(1) infinite;
  transform-origin: center;
}
.sutro {
  position: absolute;
  left: -100px;
  bottom: -80px;
  width: 230px;
  height: 280px;
  object-fit: contain;
  animation: reelSpin 2s steps(1) infinite;
  transform-origin: center;
}
.bridge {
  position: absolute;
  right: -40px;
  top: -110px;
  width: 260px;
  height: 220px;
  object-fit: contain;
  animation: starSpin 2s steps(1) infinite;
  transform-origin: center;
}

.hollywood-boulevard {
  display: inline-block;
  white-space: nowrap;
  font-size: 60px;
}

.stage-is {
  display: inline-block;
  animation: stageIsPulse 2s ease infinite;
  transform-origin: center;
}
@keyframes stageIsPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Hollywood Sign Effect */
.hollywood-sign {
  display: inline-block;
  position: relative;
  font-family: 'Bowlby One' !important;
}
.hollywood-sign span { font-family: 'Bowlby One'!important; }
.hollywood-sign .letter {
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
}
.hollywood-sign .letter[data-letter="1"] { transform: translateY(0px); }
.hollywood-sign .letter[data-letter="2"] { transform: translateY(-4px); }
.hollywood-sign .letter[data-letter="3"] { transform: translateY(2px); }
.hollywood-sign .letter[data-letter="4"] { transform: translateY(-6px); }
.hollywood-sign .letter[data-letter="5"] { transform: translateY(3px); }
.hollywood-sign .letter[data-letter="6"] { transform: translateY(-2px); }
.hollywood-sign .letter[data-letter="7"] { transform: translateY(4px); }
.hollywood-sign .letter[data-letter="8"] { transform: translateY(-3px); }
.hollywood-sign .letter[data-letter="9"] { transform: translateY(1px); }

.why-hollywood__text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  margin: 0 auto;
  margin-top: 20px;
}
.why-hollywood__text p {
  margin-bottom: 0;
}
.why-hollywood__stat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 64px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 1;
  margin-top: 24px;
}
.why-hollywood__stat-number {
  color: var(--color-pink);
}

/* ============================================
   FAN BACKGROUND
   ============================================ */
.fan-bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fan-bg-wrap.visible {
  opacity: 1;
}
.fan-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   DISCO BALL BACKGROUND VIDEO
   ============================================ */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.bg-video-wrap.visible {
  opacity: 1;
}
.bg-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   HOLLYWOOD BACKGROUND VIDEO
   ============================================ */
.hollywood-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.hollywood-video-wrap.visible {
  opacity: 1;
}
.hollywood-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}
.experience-video-wrap.visible {
  opacity: 1;
}
.experience-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Make Hollywood sections transparent so the Hollywood video shows through */
#hollywood-activation, #hollywood-activation-2, #hollywood-activation-3 {
  background: transparent;
}

/* --- Sections with disco ball bg --- */
/* Panels get a semi-transparent bg so disco ball shows through but content is readable */
#the-people, #three-days, #three-genres {
  background: rgba(10, 10, 10, 0.85);
}
#three-crowds {
  background: transparent;
}
#testimonials {
  position: relative;
  z-index: 2;
}

/* --- Sections after disco ball need opaque backgrounds --- */
#impressions, #artists, #economic-impact, #partners, #cta {
  position: relative;
  z-index: 2;
}
#media {
  position: relative;
  z-index: 2;
}

/* ============================================
   PEOPLE STATS
   ============================================ */
.people-stats {
  background: transparent;
  text-align: center;
}
.people-stats__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}
.stat-hero__number {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 100px);
  font-weight: 900;
  color: var(--color-purple);
}
.stat-hero__plus {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  color: var(--color-purple);
}
.stat-hero__label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  margin-top: 4px;
}
/* ============================================
   NPU DATA DONUT CHARTS
   ============================================ */
.npu-data-charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 5vw, 72px);
}
.npu-data-chart {
  text-align: center;
}
.npu-data-chart-title {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #fff;
}
.npu-data-donut {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
}
.npu-data-donut svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.npu-data-donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.npu-data-donut-pct {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.npu-data-donut-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
}
.npu-data-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 8px;
}
.npu-data-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}
.npu-data-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-hero__toggle {
  display: block;
  margin: 12px auto 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--color-purple);
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.stat-hero__toggle:hover {
  background: #fff;
}
.stat-hero__toggle.open {
  transform: rotate(180deg);
}
.stat-hero__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  text-align: center;
  padding: 0 20px;
}
.stat-hero__detail.open {
  max-height: 300px;
  padding: 16px 20px;
}
.stat-hero__detail p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 1;
  margin-bottom: 8px;
}

/* Circles */
.stat-circles {
  display: flex;
  gap: 30px;
}
.stat-circle {
  position: relative;
  width: 120px;
  height: 120px;
}
.stat-circle__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.stat-circle__bg {
  fill: none;
  stroke: rgba(255,255,255,0.1);
  stroke-width: 6;
}
.stat-circle__fill {
  fill: none;
  stroke: var(--color-purple);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s ease;
}
.stat-circle__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-circle__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.stat-circle__label {
  font-size: 9px;
  letter-spacing: 2px;
  opacity: 1;
  margin-top: 2px;
}

/* Split stat */
.people-stats__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.stat-split__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
}
.stat-split__label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
}
.stat-split__divider {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-purple);
}
.people-stats__desc {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 14px;
  line-height: 1.8;
  opacity: 1;
  text-align: center;
}
.people-stats__footnote {
  max-width: 800px;
  margin: 12px auto 0;
  font-size: 11px;
  line-height: 1.6;
  opacity: 1;
  text-align: center;
  font-style: italic;
}
.stat-highlight {
  font-weight: 800;
  font-size: 18px;
  color: #c969dc;
}
.lineup-headline {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -1px;
  font-size: clamp(48px, 8vw, 96px);
  text-align: center;
}

.then-now {
  position: relative;
  z-index: 1;
  height: 250vh;
  padding: 0;
  min-height: auto;
}
.then-now__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.then-now__content {
  position: relative;
  z-index: 2;
}
.then-now__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
#then-now-2 .then-now__grid,
#then-now-3 .then-now__grid {
  grid-template-columns: 1fr;
}
#then-now-2 .then-now__block:first-child .section-heading,
#then-now-3 .then-now__block:first-child .section-heading {
  text-align: center;
  order: 0;
}
.then-now__block {
  display: flex;
  flex-direction: column;
}
.then-now__block:first-child .section-heading { text-align: left; }
.then-now__block:last-child .section-heading { order: 2; margin-top: 16px; }
/* These duplicated then-now sections aren't scroll-animated — always visible */
#then-now-2, #then-now-3 {
  position: relative;
  z-index: 10;
}
#then-now-2 .then-now__block,
#then-now-3 .then-now__block {
  opacity: 1;
  transform: translateX(0%);
}

/* ============================================
   TRAVELING LINEUP CONTENT (Your Audience through Built to Travel)
   ============================================ */
.pending-note {
  display: inline-block;
  border: 1px dashed #ffb444;
  color: #ffb444;
  background: rgba(255,180,68,0.08);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 10px;
}
.pending-note::before { content: "⏳ PENDING — "; }
.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  justify-content: center;
}
.fact-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  min-width: 150px;
}
.fact-tile .fact-tile__label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
}
.fact-tile .fact-tile__value {
  display: block;
  font-family: 'Bowlby One', cursive;
  font-size: 18px;
  color: var(--color-purple);
}

@keyframes pulsateFree {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
span.free-text {
  display: inline-block !important;
  animation: pulsateFree 1.5s ease-in-out infinite !important;
  transform-origin: center !important;
  color: var(--color-pink);
}

h2.number-size {
  font-size: 60px !important;
  line-height: 1;
}
.hollywood-activation__initiatives h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-purple);
  text-align: center;
}
.hollywood-activation__initiatives h3.text-white {
  color: #fff;
}
.hollywood-activation__initiatives h3.text-pink {
  color: var(--color-pink);
}
.community-investment__initiatives {
  margin: 0 auto;
}
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
#economic-impact .cards-grid {
  gap: 10px;
}
.priority-item {
  background: transparent;
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  flex: 1 1 280px;
  max-width: 340px;
}
.priority-item__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-purple);
  color: #000;
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.priority-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
#hollywood-activation .priority-item,
#hollywood-activation-2 .priority-item {
  flex: 1 1 calc(25% - 7.5px);
  text-align: center;
}
#economic-impact .priority-item {
  flex: 1 1 calc(33.333% - 7px);
  text-align: center;
}
#economic-stats .priority-item {
  flex: 1 1 calc(50% - 5px);
  max-width: calc(50% - 5px);
  text-align: center;
  padding: 10px;
}
#then-now-3 .priority-item {
  flex: 1 1 calc(33.333% - 7px);
  max-width: calc(33.333% - 7px);
  text-align: center;
}
#hollywood-activation .priority-item h2,
#hollywood-activation-2 .priority-item h2,
#economic-impact .priority-item h2,
#economic-stats .priority-item h2,
#then-now-3 .priority-item h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 8px;
  text-transform: uppercase;
}
#economic-impact .priority-item h2.number-size {
  white-space: nowrap;
}
#hollywood-activation-2 .priority-item__date {
  display: inline-block;
  font-size: 28px;
  line-height: 1;
}
#hollywood-activation-3 .priority-item {
  flex: 1 1 calc(50% - 5px);
  max-width: calc(50% - 5px);
  text-align: center;
}
#hollywood-activation-3 .priority-item h2 {
  text-transform: uppercase;
  margin-bottom: 0px;
}
.hollywood-activation__map {
  display: block;
  width: 100%;
  margin: 30px auto 0;
  border-radius: 12px;
}
.artist-logo {
  display: block;
  height: 80px;
  width: 100%;
  max-width: 220px;
  object-fit: contain;
  margin: 0 auto;
  animation: stageIsPulse 2s ease infinite;
  transform-origin: center;
}

.economic-impact__intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  text-align: center;
}
.palm-tree {
  position: absolute;
  right: -320px;
  bottom: 80px;
  width: 600px;
  height: 800px;
  z-index: 1000 !important;
  overflow: visible;
}
@media (max-width: 900px) {
  .palm-tree {
    z-index: -1 !important;
  }
}
@media (max-width: 600px) {
  .palm-tree {
    display: none !important;
  }
}
.section-left,
.experience-section__content {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 16px;
  padding: 30px;
  background-color: rgba(0,0,0,.9);
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  flex: 1;
}
.paragraph-headline {
  color: var(--color-purple);
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  padding: 5px 0;
  font-weight: 800;
  line-height: 1.2;
}
.paragraph-headline--pink {
  color: var(--color-pink);
}
.superbowl-examples-new-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}
.superbowl-examples-new-left__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.superbowl-examples-new-left p,
.superbowl-examples-new-right p {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .superbowl-examples-new-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .superbowl-examples-new-left__row {
    grid-template-columns: 1fr;
  }
}
.superbowl-examples-new {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-top: 16px;
}
.superbowl-examples-new-item {
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.superbowl-examples-new-item:nth-of-type(odd) { background: #0b0b0b; }
.superbowl-examples-new-item p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 10px;
  text-align: left;
  font-weight: 600;
}
.examples-text {
  text-transform: uppercase;
  font-size: 20px !important;
  font-weight: 800 !important;
}

#hollywood_bg {
  position: relative;
  background: url(https://npu.live/wp-content/uploads/2026/09/walkoffame_bg_01.jpg) !important;
  background-size: 600px !important;
  background-position: center;
  background-repeat: repeat !important;
}
#hollywood-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.hollywood-star-single:nth-of-type(odd) { margin-left: 50%; margin-top: 200px; margin-bottom: 200px; }
.hollywood-star-single:nth-of-type(even) { margin-left: 18%; margin-top: 200px; margin-bottom: 200px; }

/* ============================================
   EXPERIENCE SECTIONS (Three Days/Genres/Crowds)
   ============================================ */
.experience-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* When inside the panels wrapper, fill the sticky viewport */
@media (max-width: 600px) {
  .hero {
    min-height: 0;
  }
}

/* (panel sizing handled by .experience-panel) */
.experience-section__bg {
  position: absolute;
  inset: 0;
}
.experience-section__bg .placeholder-img {
  min-height: 100%;
  border: none;
  border-radius: 0;
}
.experience-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.experience-section__bg::after {
  display: none;
}
.experience-section__content {
  position: relative;
  z-index: 2;
  flex: unset;
}
.section-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  margin: 12px 0 24px;
  text-align: center;
  color: var(--color-purple);
  text-transform: uppercase;
}
.city-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  text-align: center;
}
.city-stats__item {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .city-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.experience-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.experience-card .placeholder-img {
  min-height: 100%;
  border-radius: 8px;
}
.experience-card__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--color-purple);
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-wrap {
  position: relative;
  z-index: 2;
  height: 200vh;

}
.testimonials-wrap__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.testimonials {
  width: 100%;
}
/* Masonry grid */
.testimonials__grid {
  columns: 3;
  column-gap: 24px;
  max-width: 1200px;
  margin: 50px auto 40px;
}

/* Card base — hidden until in-view */
.testi-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.2) !important;
  border: 1px solid #343434;
  border-radius: 20px;
  padding: 15px;
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

/* In-view: fade in + slide up */
.testi-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.5s ease,
              border-color 0.3s ease;
}

/* Staggered delays */
.testi-card:nth-child(1)  { transition-delay: 0s; }
.testi-card:nth-child(2)  { transition-delay: .08s; }
.testi-card:nth-child(3)  { transition-delay: .16s; }
.testi-card:nth-child(4)  { transition-delay: .24s; }
.testi-card:nth-child(5)  { transition-delay: .32s; }
.testi-card:nth-child(6)  { transition-delay: .4s; }
.testi-card:nth-child(7)  { transition-delay: .48s; }
.testi-card:nth-child(8)  { transition-delay: .56s; }
.testi-card:nth-child(9)  { transition-delay: .64s; }

/* Size tiers — large, medium, small */
.testi-card.testi-scale-lg {
}
.testi-card.testi-scale-lg .testi-quote {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
}
.testi-card.testi-scale-lg .testi-stars {
  font-size: 1.1rem;
}

.testi-card.testi-scale-md {
}
.testi-card.testi-scale-md .testi-quote {
  font-size: 1.05rem;
  font-weight: 400;
}

.testi-card.testi-scale-sm {
}
.testi-card.testi-scale-sm .testi-quote {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}
.testi-card.testi-scale-sm .testi-stars {
  font-size: 0.75rem;
}


/* Hover */
.testi-card {
  cursor: pointer;
}
.testi-card:hover {
  background: rgba(0,0,0,0.2) !important;
}


/* Stars */
.testi-stars {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #c969dc;
}

/* Quote text */
.testi-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f0f0f0;
  font-weight: 400;
}

/* Source label */
.testi-source {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

/* Wiggle emoji animation */
.wiggle {
  display: inline-block;
  animation: wiggle 1.5s ease-in-out infinite;
  font-size: 1.4em;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(12deg) scale(1.15); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-12deg) scale(1.15); }
}

@media (max-width: 900px) {
  .testimonials__grid { columns: 2; }
}
@media (max-width: 600px) {
  .testimonials__grid { columns: 1; max-width: 500px; }
  .testi-card { padding: 15px; }
}
.testimonials__cta {
  text-align: center;
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
}
.link-accent {
  color: var(--color-purple);
  font-weight: 700;
  text-decoration: none;
}
.arrow-icon {
  display: inline-block;
  transition: transform 0.3s;
}
.testimonials__cta:hover .arrow-icon {
  transform: translate(3px, -3px);
}

/* ============================================
   DETAILS INTRO
   ============================================ */
.details-intro {
  text-align: center;
  padding: var(--section-pad) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.details-intro__text {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 1.8;
  opacity: 1;
}
.details-intro__heading {
  font-style: italic;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
  font-size: 30px !important;
}

/* ============================================
   EXPERIENCE MOMENTS (Way In / Here / Way Out)
   ============================================ */
.experience-moment {
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.moment-heading > span:not(.accent-dot) { display: block; }
.experience-moment__bg {
  position: absolute;
  inset: 0;
}
/* ============================================
   FLOATING CHIPS
   ============================================ */
.chips-bg {
  overflow: visible;
}
.chip {
  position: absolute;
  width: 400px;
  height: auto;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.chip[data-chip="0"] { width: 460px; }
.chip[data-chip="1"] { width: 400px; }
.chip[data-chip="2"] { width: 440px; }
.chip[data-chip="3"] { width: 410px; }
.chip[data-chip="4"] { width: 480px; }
.chip[data-chip="5"] { width: 400px; }
.chip[data-chip="6"] { width: 420px; }
.chip[data-chip="7"] { width: 450px; }
.chip[data-chip="8"] { width: 400px; }

/* Floating cookies */
.cookies-bg {
  overflow: visible;
}
.cookie {
  position: absolute;
  width: 300px;
  height: auto;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.cookie[data-cookie="0"] { width: 320px; }
.cookie[data-cookie="1"] { width: 300px; }
.cookie[data-cookie="2"] { width: 340px; }
.cookie[data-cookie="3"] { width: 310px; }
.cookie[data-cookie="4"] { width: 330px; }

.experience-moment__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.experience-moment__bg .placeholder-img {
  min-height: 100%;
  border: none;
  border-radius: 0;
}
/* Remove overlay for details panels — parent has bg color */
.details-panels .experience-moment__bg::after {
  display: none;
}
.experience-moment__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.experience-moment__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 1200px;
}
.experience-moment__content h2 {
  position: relative;
  z-index: 3;
  margin-right: -100px;
}
.experience-moment__image {
  position: relative;
  z-index: 2;
}
.experience-moment__image .placeholder-img {
  min-height: 300px;
  border-radius: 6px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.experience-moment__photo {
  width: 800px;
  max-width: 90vw;
  border-radius: 6px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  object-fit: cover;
}
.experience-moment__caption {
  grid-column: 2;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transform: rotate(-2deg);
  text-shadow: 2px 2px 4px #000;
  margin-top: 12px;
}

/* ============================================
   MEDIA SECTION
   ============================================ */
.media-wrap {
  position: relative;
  z-index: 2;
  height: 200vh;

}
.media-wrap__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.media-section {
  width: 100%;
  min-height: auto;
}
.media-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
}
.media-section__quotes {
  flex: 0 0 calc(50% - 15px);
}
.media-section__feature {
  flex: 0 0 calc(50% - 15px);
}
.media-section__feature > div {
  padding: 100% 0 0 0;
}
.media-quote {
  margin-bottom: 16px;
  text-align: center;
}
.media-quote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.2;
  color: #fff;
}
.media-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
}
.media-quote__logo {
  height: 50px;
  width: auto;
  display: inline-block;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.media-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.media-section__feature .placeholder-img {
  min-height: 350px;
  border-radius: 8px;
}
.media-section__note {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  opacity: 1;
  margin-top: 20px;
}
/* Ticker */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
  background: #000;
  padding: 15px;
}
.ticker-item {
  flex-shrink: 0;
  background: transparent;
}
.ticker-item img {
  height: 40px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  background: transparent;
  filter: invert(1) grayscale(1) brightness(1.5);
  mix-blend-mode: screen;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.media-section__logos {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   IMPRESSIONS
   ============================================ */
.impressions-wrap {
  position: relative;
  z-index: 2;
  height: 200vh;

}
.impressions-wrap__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.impressions-section {
  text-align: center;
  width: 100%;
  min-height: auto;
}
.impressions-section__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.impressions-section__bg .placeholder-img {
  min-height: 100%;
  border: none;
  border-radius: 0;
}
.impressions-section__content {
  position: relative;
  z-index: 2;
}
.impressions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.impression-stat__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  color: var(--color-purple);
  display: block;
}
.impression-stat__number--pink {
  color: #c969dc;
}
.impression-stat__label {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 8px;
}
.impression-stat__desc {
  display: block;
  font-size: 14px;
  opacity: 1;
  margin-top: 8px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.impression-stat--big {
  margin-top: 20px;
}

/* ============================================
   ARTIST AMPLIFICATION
   ============================================ */
/* Phone mockup */
.npu-phone-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.npu-phone-frame {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.npu-phone-screen {
  position: absolute;
  top: 7.5%;
  left: 2.5%;
  right: 1.5%;
  bottom: 7.5%;
  z-index: 3;
  overflow: hidden;
  background: #000;
}
.npu-phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.artists-wrap {
  position: relative;
  z-index: 2;
  height: 200vh;

}
.artists-wrap__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.artists-section {
  width: 100%;
  min-height: auto;
}
/* Slide-in from bottom — staggered on visibility */
.artist-card {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.artist-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.artist-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.artist-card:hover {
  transform: translateY(-4px);
}
.artist-card .placeholder-img {
  aspect-ratio: 3/4;
  min-height: auto;
  border-radius: 12px;
}

/* ============================================
   ECONOMIC IMPACT
   ============================================ */
.economic-section {
  overflow: hidden;
}
.economic-section__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.economic-section__bg .placeholder-img {
  min-height: 100%;
  border: none;
  border-radius: 0;
}
.economic-section__content {
  position: relative;
  z-index: 2;
}
.economic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.economic-stats {
  text-align: center;
}
.economic-stat {
  margin-bottom: 36px;
}
.economic-stat__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: var(--color-purple);
  display: block;
}
.economic-stat__label {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 4px;
}
.economic-stat__desc {
  display: block;
  font-size: 14px;
  opacity: 1;
  color: #fff;
  margin-top: 6px;
  line-height: 1.6;
}
/* Pie chart */
.npu-pie-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.npu-pie-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
}
.npu-pie-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 24px;
}
.npu-pie-chart {
  flex-shrink: 0;
}
.npu-pie-chart svg {
  display: block;
}
.npu-pie-legend {
  text-align: left;
}
.npu-pie-item {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #fff;
}
.npu-pie-item strong {
  font-weight: 700;
  margin-left: 4px;
}
.npu-pie-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-section {
  text-align: center;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 150px;
  width: auto;
  animation: partner-pulse 4s ease-in-out infinite;
}
.partner-logo:nth-child(1) { animation-delay: 0s; }
.partner-logo:nth-child(2) { animation-delay: 1.3s; }
.partner-logo:nth-child(3) { animation-delay: 2.6s; }

@keyframes partner-pulse {
  0%, 100% { transform: scale(1) translateY(0); }
  25% { transform: scale(1.05) translateY(-5px); }
  50% { transform: scale(1) translateY(0); }
  75% { transform: scale(0.97) translateY(3px); }
}

/* ============================================
   CTA / FOOTER
   ============================================ */
.cta-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
}
.cta-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
  transition: transform 0.1s linear;
}
.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.cta-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-section__content h2 {
  text-align: left;
}
.cta-section__content .btn-cta {
  align-self: flex-end;
}
.btn-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 44px;
  background: var(--color-purple);
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.btn-cta:hover {
  background: var(--color-deep-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 38, 255, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .text-right { text-align: left; }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-moment__content {
    display: flex;
    flex-flow: column;
    width: 100%;
    align-items: center;
    max-width: 1200px;
    text-align: center;
    gap: 20px;
  }
  .experience-moment__content h2 {
    margin-right: 0;
    margin-bottom: 12px;
    text-align: center;
  }
  .experience-moment__image .placeholder-img,
  .experience-moment__photo {
    transform: none;
  }

  .media-section__content {
    flex-direction: column;
  }

  .impressions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .economic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-label {
    position: fixed;
    left: 50%;
    top: 12px;
    bottom: auto;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 2px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .testimonials-wrap,
  .media-wrap,
  .artists-wrap {
    height: auto;
  }
  .testimonials-wrap__sticky,
  .media-wrap__sticky,
  .artists-wrap__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding: 60px 0;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }
  .lock-wrap__sticky > .cta-section {
    min-height: 100dvh;
    height: 100dvh;
    flex: 1;
  }
  .experience-moment {
    min-height: 100%;
    height: 100%;
    width: 100%;
    align-items: center;
  }
  .moment-heading > span:not(.accent-dot) { display: inline; }
}

@media (max-width: 600px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .people-stats__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .npu-data-charts {
    grid-template-columns: 1fr;
  }
  /* Tighten scroll ranges on mobile so each locked section advances in ~2 swipes.
     Multi-panel sweeps get roughly (n panels) × 100vh; single-panel locks get ~180vh. */
  .experience-panels { height: 350vh; }
  .details-panels { height: 450vh; }
  .lock-wrap { height: 180vh; }

  .experience-panel {
    justify-content: center;
    padding: 0;
    overflow: hidden;
  }
  .experience-section {
    min-height: 100%;
    width: 100%;
  }
  /* Details moments use overflow:visible on desktop for chips/cookies bleed.
     On mobile we keep the sweep clean by clipping each panel. */
  .details-panels .experience-panel[data-panel="1"],
  .details-panels .experience-panel[data-panel="3"] {
    overflow: hidden;
  }
  .experience-moment__bg,
  .experience-section__bg {
    width: 100%;
    height: 100%;
  }
  .experience-panel .container { width: 94%; }
  /* #the-people is moved out of .experience-panels on mobile via JS */
  .the-people--unlocked {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
    transform: none !important;
    overflow: visible;
    padding: 60px 0;
    width: 100%;
  }
  .experience-section .section-heading--xl { font-size: clamp(28px, 8vw, 44px); line-height: 1; margin: 0 0 12px; }
  .fixed-logo {
    bottom: 12px;
    right: 12px;
  }
  #economic-impact.lock-wrap { height: auto; }
  #economic-impact .lock-wrap__sticky {
    position: relative;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    padding: 60px 0;
  }

  .people-stats__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .stat-circles {
    gap: 16px;
  }

  .partners-logos {
    gap: 30px;
  }

  .carousel__slide {
    padding: 0 5px;
  }

  .experience-moment__image .placeholder-img {
    min-height: 220px;
    transform: rotate(0);
  }

}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.many-more {
  text-align: center;
  margin-top: 16px;
}

.medium-headline {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: 20px;
}

p, h1, h2, h3, .city-stats__item {
  text-shadow: 0px 2px 2px rgba(0,0,0,.5);
}

.audience-cta {
  font-family: 'Bowlby One';
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0px;
  margin-top: 40px;
}

.text-white {
  color: #fff;
}

.cta-section__palm {
  position: absolute;
  bottom: 0;
  max-width: 100px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.cta-section__palm--left { left: 0; }
.cta-section__palm--right { right: 0; }
@media (max-width: 900px) {
  .cta-section__palm { display: none; }
}

.text-larger {
  font-size: 1.15em;
}

.priority-item h3 {
  margin-bottom: 0px;
}
#hollywood-activation-3 .priority-item h3 {
  color: var(--color-pink);
}
#hollywood-activation-3 .priority-item h3.text-white {
  color: #fff;
}
.hollywood-activation__initiatives .priority-item {
  background: transparent;
  border-radius: 12px;
  padding: 0;
  text-align: left;
  flex: 1 1 280px;
  max-width: unset;
}
