/* ============================================
   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: #ff2d8b;
  --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;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  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;
}

/* --- MediaElement.js overrides --- */
.mejs__container { background: transparent !important; }
.mejs__controls { display: none !important; }
.mejs__overlay, .mejs__overlay-play { display: none !important; }
.mejs__container, .mejs__mediaelement { width: 100% !important; height: 100% !important; }

/* --- 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;
}
.fixed-logo__img {
  height: 40px;
  width: auto;
  display: block;
}

/* --- Section Label (fixed, vertical, left side) --- */
.section-label {
  position: fixed;
  left: 100px;
  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: nowrap;
  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: 100vh;
  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 --- */
.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -1px;
  font-size: clamp(48px, 8vw, 96px);
  text-align: center;
}
.section-heading--xl {
  font-size: clamp(42px, 7vw, 80px);
}
.section-heading--massive {
  font-size: clamp(64px, 14vw, 160px);
}
.accent-dot {
  color: var(--color-purple);
}
.text-right { text-align: right; }

/* --- 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;
}
.hero-bg-wrap.hidden {
  opacity: 0;
}
.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: 100vh;
  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;
}

/* ============================================
   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: 100vh;
  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;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px;
}
.about__content {
  position: relative;
  z-index: 2;
}
.about__text {
  font-size: clamp(16px, 2.2vw, 22px);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   THEN & NOW
   ============================================ */
.then-now {
  position: relative;
  z-index: 1;
  height: 250vh;
  padding: 0;
  min-height: auto;
}
.then-now__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.then-now__content {
  position: relative;
  z-index: 2;
}
.then-now__content {
  position: relative;
  z-index: 2;
}
.then-now__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
/* Blocks are animated via JS scroll */
.then-now__block {
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
}
/* First block: heading then text */
.then-now__block:first-child {
  order: 0;
}
.then-now__block:first-child .section-heading {
  text-align: left;
}
/* Second block: text first, heading below */
.then-now__block:last-child .section-heading {
  order: 2;
  margin-top: 16px;
}
.then-now__block:last-child p {
  order: 1;
  margin-top: calc(clamp(48px, 8vw, 96px) * 0.92 + 16px);
}
.then-now__grid p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 16px;
  opacity: 1;
  padding: 30px;
  background-color: rgba(0,0,0,.9);
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  flex: 1;
}
.stat-highlight {
  font-weight: 800;
  font-size: 18px;
  color: #c969dc;
}
/* ============================================
   CARD STACK (horizontal scroll-driven slide)
   ============================================ */
.card-stack {
  position: relative;
  z-index: 2;
  height: 500vh; /* 5 cards, ~100vh per card */
}
.card-stack__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-stack__cards {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.card-stack__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: 70vh;
  transform: translate(-50%, -50%);
  will-change: transform;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.card-stack__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* JS handles all transforms — these are just z-index */
.card-stack__card[data-stack="0"] { z-index: 1; }
.card-stack__card[data-stack="1"] { z-index: 2; }
.card-stack__card[data-stack="2"] { z-index: 3; }
.card-stack__card[data-stack="3"] { z-index: 4; }

.card-stack__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.15) 30%,
    transparent 60%
  );
  pointer-events: 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;
}
.details-panels {
  /* 4 panels: hold + transition each = 2n-1 = 7 segments */
  height: 900vh;
}
.experience-panels__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.experience-panels__sticky h2 {
  text-align: left;
}
#three-days h2,
#three-genres h2,
#three-crowds h2,
#details-intro 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;
  background: var(--color-bg);
}
.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; }
/* 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; }

/* ============================================
   DISCO BALL BACKGROUND VIDEO
   ============================================ */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.001; /* Nearly invisible but Safari considers it "visible" for autoplay */
  transition: opacity 0.8s ease;
}
.bg-video-wrap.visible {
  opacity: 1;
}
.bg-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 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, #three-crowds {
  background: rgba(10, 10, 10, 0.85);
}
#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: var(--color-bg);
  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;
}

/* ============================================
   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 */
/* ============================================
   NPU EXPERIENCE SLIDERS
   ============================================ */
.npu-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.npu-exp-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: default;
}
.npu-exp-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.npu-exp-slider img.active {
  opacity: 1;
}
.npu-exp-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.npu-exp-label {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 60px;
  padding: 0 20px;
  background-image: url('https://npu.live/wp-content/uploads/2026/03/headlinebanner.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.npu-exp-label-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 0px #000;
  text-align: center;
}
.npu-exp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.3s ease;
  opacity: 1;
}
.npu-exp-arrow:hover {
  background: rgba(177,68,185,0.6);
}
.npu-exp-arrow.prev { left: 12px; }
.npu-exp-arrow.next { right: 12px; }
.npu-exp-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.npu-exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}
.npu-exp-dot.active {
  background: #fff;
}
.npu-exp-toggle {
  position: absolute;
  bottom: 30px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #ca69dc;
  color: #000;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, bottom 0.3s ease;
  z-index: 8;
}
.npu-exp-toggle:hover {
  color: #fff;
  background: #000;
  transition: all 0.3s ease;
}
.npu-exp-toggle.open {
  transform: rotate(180deg);
  bottom: 8px;
}
.npu-exp-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 400;
  line-height: 1.6;
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  z-index: 6;
}
.npu-exp-desc.open {
  max-height: 100%;
  padding: 16px;
}
@media (max-width: 600px) {
  .npu-exp-grid {
    grid-template-columns: 1fr;
  }
}

/* (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 {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.experience-section__content {
  position: relative;
  z-index: 2;
}
.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: 100vh;
  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;
}
.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: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.media-section {
  width: 100%;
  min-height: auto;
}
.media-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  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: 100vh;
  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: 100vh;
  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) {
  .then-now__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .text-right { text-align: left; }

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

  .experience-moment__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .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: relative;
    left: auto;
    top: auto;
    transform: none;
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
}

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

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

  .people-stats__top {
    flex-direction: column;
    gap: 30px;
  }

  .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); }
}
