/* ============================================================================
   DIFFUSION Showcase Page Styles
   Spec: docs/superpowers/specs/2026-04-12-diffusion-showcase-design.md
   ============================================================================ */

/* Not-found block for unknown slugs */
.slo-not-found {
  padding: 120px 40px;
  text-align: center;
  color: var(--slo-text);
}
.slo-not-found h1 {
  font-family: var(--slo-font-display);
  font-size: 48px;
  font-weight: 800;
}

/* Main showcase container */
.slo-showcase {
  color: var(--slo-text);
  background: var(--slo-void);
  font-family: var(--slo-font-body);
}

/* ---- Generic section helpers ---- */
.slo-section-heading {
  margin-top: 8px;
  font-family: var(--slo-font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}
.slo-section-sub {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.6;
}
.slo-eyebrow {
  font-family: var(--slo-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.slo-eyebrow--emerald { color: var(--slo-emerald); }
.slo-eyebrow--magenta { color: var(--slo-magenta); }
.slo-eyebrow--purple  { color: var(--slo-purple); }
.slo-eyebrow--violet  { color: var(--slo-violet); }
.slo-eyebrow--dark    { color: var(--slo-void); }

/* ============ SECTION 1: HERO (split 60/40) ============ */
.slo-showcase__hero {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 520px;
}
@media (max-width: 768px) {
  .slo-showcase__hero { grid-template-columns: 1fr; }
  .slo-hero-left__photo {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-bottom: 24px;
    opacity: 1;
  }
}

.slo-hero-left {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 60%, #4a1d5c 100%);
  padding: 50px 36px;
  position: relative;
  overflow: hidden;
}
.slo-hero-left__content {
  position: absolute;
  bottom: 40px;
  left: 36px;
  right: 36px;
  z-index: 2;
}
.slo-hero-title {
  font-family: var(--slo-font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.92;
  margin: 6px 0 0;
  letter-spacing: -0.03em;
  color: var(--slo-text);
  z-index: 2;
  position: relative;
}

/* Floating action photo — margin on all sides so it doesn't clip */
.slo-hero-left__photo {
  position: absolute;
  right: 32px;
  top: 32px;
  bottom: 32px;
  width: auto;
  height: calc(100% - 64px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  z-index: 1;
  opacity: 0.85;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
}
.slo-hero-tagline {
  margin-top: 12px;
  font-size: 15px;
  opacity: 0.9;
  font-weight: 300;
}

/* LIVE NOW badge */
.slo-live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 59, 48, 0.95);
  color: white;
  padding: 5px 10px;
  font-family: var(--slo-font-mono);
  font-size: 9px;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.slo-live-badge__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  animation: slo-live-pulse 1.2s ease-in-out infinite;
}

/* Animated equalizer */
.slo-equalizer {
  margin-top: 18px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 22px;
}
.slo-equalizer__bar {
  width: 4px;
  background: var(--slo-emerald);
  border-radius: 1px;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.slo-equalizer__bar--1 { animation-name: eqBounce1; animation-delay: 0s;    height: 60%; }
.slo-equalizer__bar--2 { animation-name: eqBounce2; animation-delay: 0.1s;  height: 95%; }
.slo-equalizer__bar--3 { animation-name: eqBounce3; animation-delay: 0.2s;  height: 40%; }
.slo-equalizer__bar--4 { animation-name: slo-eq-bounce-4; animation-delay: 0.15s; height: 80%; }
.slo-equalizer__bar--5 { animation-name: slo-eq-bounce-5; animation-delay: 0.25s; height: 55%; }
.slo-equalizer__bar--6 { animation-name: slo-eq-bounce-6; animation-delay: 0.05s; height: 75%; }
.slo-equalizer__bar--7 { animation-name: slo-eq-bounce-7; animation-delay: 0.3s;  height: 45%; }

/* Hero right — control room stack */
.slo-hero-right {
  background: #141424;
  padding: 26px 22px;
  border-left: 1px solid rgba(245, 240, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Control cards — shared base matching upcoming event style */
.slo-control-card {
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}
.slo-control-card__content {
  position: relative;
  z-index: 1;
}

/* Card 1: Now Playing — venue image bg */
.slo-control-card--now-playing {
  border-left: 3px solid var(--slo-emerald);
  background: rgba(0, 229, 160, 0.04);
}
.slo-control-card--now-playing::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: url('../images/venues/club1.png') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.4));
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.4));
  pointer-events: none;
}
.slo-now-playing__header {
  display: flex;
  align-items: center;
  gap: 6px;
}
.slo-now-playing__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slo-emerald);
  box-shadow: 0 0 6px var(--slo-emerald);
  animation: slo-live-pulse 1.2s ease-in-out infinite;
}
.slo-now-playing__set-info {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.7;
}
.slo-now-playing__genre {
  color: var(--slo-emerald);
  font-weight: 600;
}
.slo-now-playing__club-link {
  color: var(--slo-purple);
  text-decoration: none;
}
.slo-now-playing__club-link:hover {
  text-decoration: underline;
}
.slo-now-playing__track {
  margin-top: 6px;
  font-weight: 600;
  font-size: 13px;
}
.slo-now-playing__progress {
  margin-top: 10px;
  height: 2px;
  background: rgba(245, 240, 255, 0.18);
  border-radius: 1px;
}
.slo-now-playing__progress-fill {
  height: 100%;
  background: var(--slo-emerald);
  border-radius: 1px;
  transition: width 1s linear;
}
.slo-now-playing__times {
  margin-top: 3px;
  font-family: var(--slo-font-mono);
  font-size: 9px;
  opacity: 0.55;
  display: flex;
  justify-content: space-between;
}
.slo-now-playing__eq-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  overflow: hidden;
  z-index: 1;
}
.slo-now-playing__eq-bar span {
  width: 4px;
  flex-shrink: 0;
  background: var(--slo-emerald);
  border-radius: 1px 1px 0 0;
  opacity: 0.5;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.slo-now-playing__eq-bar span:nth-child(3n+1) { animation-name: eqBounce1; }
.slo-now-playing__eq-bar span:nth-child(3n+2) { animation-name: eqBounce2; }
.slo-now-playing__eq-bar span:nth-child(3n)   { animation-name: eqBounce3; }
.slo-now-playing__eq-bar span:nth-child(7n+1) { animation-delay: 0s; }
.slo-now-playing__eq-bar span:nth-child(7n+2) { animation-delay: 0.08s; }
.slo-now-playing__eq-bar span:nth-child(7n+3) { animation-delay: 0.18s; }
.slo-now-playing__eq-bar span:nth-child(7n+4) { animation-delay: 0.04s; }
.slo-now-playing__eq-bar span:nth-child(7n+5) { animation-delay: 0.14s; }
.slo-now-playing__eq-bar span:nth-child(7n+6) { animation-delay: 0.22s; }
.slo-now-playing__eq-bar span:nth-child(7n)   { animation-delay: 0.1s; }

/* Card 2: Influencer — RAG gradient bg */
.slo-control-card--influencer {
  border-left: 3px solid var(--slo-purple);
  background: linear-gradient(to right, rgba(168, 85, 247, 0.04), rgba(168, 85, 247, 0.12));
}
.slo-influencer__rank {
  margin-top: 6px;
  font-family: var(--slo-font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--slo-purple);
}
.slo-influencer__fans {
  margin-top: 4px;
  font-family: var(--slo-font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.slo-influencer__fans-label {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.6;
}
.slo-influencer__delta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--slo-emerald);
}

/* Card 3: Latest Recorded — video thumbnail bg */
.slo-control-card--latest-recorded {
  border-left: 3px solid var(--slo-magenta);
  background: rgba(236, 72, 153, 0.04);
}
.slo-control-card--latest-recorded::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: url('https://img.youtube.com/vi/VeCaXCNAcQE/mqdefault.jpg') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.5));
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.5));
  pointer-events: none;
}
.slo-latest__title {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--slo-text);
  text-decoration: none;
}
.slo-latest__title:hover {
  color: var(--slo-magenta);
}
.slo-latest__type {
  margin-top: 2px;
  font-size: 10px;
  opacity: 0.5;
}
.slo-latest__link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--slo-font-mono);
  font-size: 10px;
  color: var(--slo-magenta);
  text-decoration: none;
}
.slo-latest__link:hover {
  text-decoration: underline;
}

/* CTA: Become a Fan */
.slo-hero-right__cta {
  margin-top: auto;
}
.slo-fan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--slo-purple), var(--slo-magenta));
  color: white;
  padding: 14px 16px;
  font-family: var(--slo-font-display);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-radius: 2px 12px 12px 12px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}
.slo-fan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.35);
}
.slo-fan-button__icon {
  font-size: 18px;
  animation: slo-heart-beat 1.5s ease-in-out infinite;
}
@keyframes slo-heart-beat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
  60% { transform: scale(1); }
}
.slo-fan-button__count {
  margin-top: 6px;
  text-align: center;
  font-family: var(--slo-font-mono);
  font-size: 9px;
  opacity: 0.5;
}

/* ============ BEAT 2: MEET ============ */
.slo-showcase__meet {
  background: var(--slo-surface, #1A1025);
}
.slo-meet__bio {
  display: flex;
  align-items: flex-start;
  padding: 48px clamp(24px, 5vw, 80px);
  gap: 32px;
}
.slo-meet__portrait {
  width: 10%;
  min-width: 120px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.slo-meet__bio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slo-meet__bio-text {
  font-size: 14px;
  opacity: 0.88;
  line-height: 1.65;
  margin: 14px 0 0;
}
.slo-meet__stats {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  font-family: var(--slo-font-mono);
  font-size: 10px;
}
.slo-meet__stat-label { opacity: 0.5; }
.slo-meet__stat-value { color: var(--slo-emerald); margin-left: 6px; }
.slo-meet__socials {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}
.slo-meet__social-link {
  font-family: var(--slo-font-mono);
  font-size: 10px;
  color: var(--slo-purple);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 2px 8px 8px 8px;
  transition: background 0.15s ease;
}
.slo-meet__social-link:hover {
  background: rgba(168, 85, 247, 0.08);
}
@media (max-width: 768px) {
  .slo-meet__bio { flex-direction: column; }
  .slo-meet__portrait { width: 120px; }
}

/* Comment thread */
.slo-meet__thread {
  margin-top: 8px;
  padding: 12px 0 24px;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  display: flex;
  gap: 12px;
  overflow: hidden;
}
.slo-meet__thread-track {
  display: flex;
  gap: 100px;
  animation: slo-scroll-comments 20s linear infinite;
}
.slo-meet__thread-track:hover {
  animation-play-state: paused;
}
@keyframes slo-scroll-comments {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slo-meet__comment {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex: 0 0 calc(33.333vw - 24px);
  min-width: 280px;
}
.slo-meet__comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--slo-font-mono);
  font-size: 8px;
  font-weight: 700;
}
.slo-meet__comment-bubble {
  padding: 14px 18px;
  border-radius: 2px 12px 12px 12px;
  flex: 1;
}
.slo-meet__comment-bubble--purple {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.12);
}
.slo-meet__comment-bubble--magenta {
  background: rgba(236, 72, 153, 0.06);
  border: 1px solid rgba(236, 72, 153, 0.1);
}
.slo-meet__comment-bubble--emerald {
  background: rgba(0, 229, 160, 0.06);
  border: 1px solid rgba(0, 229, 160, 0.1);
}
.slo-meet__comment-bubble--violet {
  background: rgba(124, 92, 252, 0.06);
  border: 1px solid rgba(124, 92, 252, 0.1);
}
.slo-meet__comment-handle {
  font-family: var(--slo-font-mono);
  font-size: 8px;
}
.slo-meet__comment-bubble--purple  .slo-meet__comment-handle { color: var(--slo-purple); }
.slo-meet__comment-bubble--magenta .slo-meet__comment-handle { color: var(--slo-magenta); }
.slo-meet__comment-bubble--emerald .slo-meet__comment-handle { color: var(--slo-emerald); }
.slo-meet__comment-bubble--violet  .slo-meet__comment-handle { color: var(--slo-violet); }
.slo-meet__comment-time {
  color: var(--slo-text);
  opacity: 0.4;
}
.slo-meet__comment-text {
  font-size: 11px;
  opacity: 0.9;
  margin-top: 3px;
  line-height: 1.4;
}

/* ============ BEAT 3: EXPERIENCE LIVE ============ */
.slo-showcase__experience-live {
  background: var(--slo-bg, #0E0A14);
  padding: 56px clamp(24px, 5vw, 80px);
}
.slo-live {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.slo-live__now {
  flex: 2;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 2px 12px 12px 12px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  animation: slo-live-glow 2s ease-in-out infinite;
}
@keyframes slo-live-glow {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(168, 85, 247, 0.15),
      0 0 32px rgba(168, 85, 247, 0.08);
  }
  50% {
    box-shadow:
      0 0 20px rgba(168, 85, 247, 0.3),
      0 0 48px rgba(236, 72, 153, 0.12);
  }
}
.slo-live__now::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: url('../images/venues/club1.png') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.5));
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.5));
  pointer-events: none;
}
.slo-live__now > * {
  position: relative;
  z-index: 1;
}
.slo-live__venue {
  font-family: var(--slo-font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0 0;
}
.slo-live__meta {
  font-size: 11px;
  opacity: 0.6;
  margin: 2px 0 0;
}
/* On Stage Now — split: image feed left, comment feed right */
.slo-live__now-header {
  margin-bottom: 14px;
}
.slo-live__now-split {
  display: flex;
  gap: 12px;
  min-height: 180px;
}

/* Left: Image feed */
.slo-live__image-feed {
  flex: 1;
}
.slo-live__image-feed-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--slo-font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 8px;
}
.slo-live__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.slo-live__image-thumb {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(245, 240, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
  padding: 0;
}
.slo-live__image-thumb:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: scale(1.03);
}
.slo-live__image-thumb-hint {
  font-size: 16px;
  opacity: 0.4;
}
.slo-live__image-feed-cta {
  margin-top: 6px;
  font-family: var(--slo-font-mono);
  font-size: 8px;
  opacity: 0.4;
  text-align: center;
}

/* Right: Live comment feed */
.slo-live__comment-feed {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.slo-live__comment-feed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(to bottom, rgba(168, 85, 247, 0.06), transparent);
  z-index: 2;
  pointer-events: none;
}
.slo-live__comment-feed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(to top, rgba(168, 85, 247, 0.06), transparent);
  z-index: 2;
  pointer-events: none;
}
.slo-live__comment-feed-track {
  animation: slo-scroll-comments-up 18s linear infinite;
}
@keyframes slo-scroll-comments-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.slo-live__comment-feed-track:hover {
  animation-play-state: paused;
}
.slo-live__comment-item {
  padding: 6px 10px;
  font-size: 10px;
  line-height: 1.4;
  opacity: 0.85;
  border-left: 2px solid rgba(168, 85, 247, 0.1);
  margin-bottom: 6px;
}
.slo-live__comment-handle {
  font-family: var(--slo-font-mono);
  font-size: 9px;
  font-weight: 700;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .slo-live__now-split { flex-direction: column; }
}
.slo-live__upcoming {
  flex: 1;
}
.slo-live__event {
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
  min-height: 72px;
}
.slo-live__event::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.6));
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,0.6));
  pointer-events: none;
}
.slo-live__event--magenta::after {
  background: url('../images/venues/club1.png') center / cover no-repeat;
}
.slo-live__event--emerald::after {
  background: url('../images/venues/club2.png') center / cover no-repeat;
}
.slo-live__event--violet::after {
  background: url('../images/venues/club3.png') center / cover no-repeat;
}
.slo-live__event > * {
  position: relative;
  z-index: 1;
}
.slo-live__event--magenta {
  border-left: 3px solid var(--slo-magenta);
  background: rgba(236, 72, 153, 0.04);
}
.slo-live__event--emerald {
  border-left: 3px solid var(--slo-emerald);
  background: rgba(0, 229, 160, 0.04);
}
.slo-live__event--violet {
  border-left: 3px solid var(--slo-violet);
  background: rgba(124, 92, 252, 0.04);
}
.slo-live__event-date {
  font-family: var(--slo-font-mono);
  font-size: 9px;
  color: var(--slo-emerald);
  letter-spacing: 0.1em;
}
.slo-live__event-venue {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.slo-live__event-city {
  font-size: 10px;
  opacity: 0.5;
  margin-top: 1px;
}
.slo-live__event-badge {
  color: var(--slo-violet);
  font-weight: 700;
}
.slo-live__more-link {
  font-family: var(--slo-font-mono);
  font-size: 10px;
  color: var(--slo-purple);
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
}
.slo-live__more-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .slo-live { flex-direction: column; }
  .slo-live__upcoming { flex: none; width: 100%; }
}

/* ============ BEAT 4: EXPERIENCE RECORDED ============ */
.slo-showcase__recorded {
  background: var(--slo-surface, #1A1025);
  padding: 56px clamp(24px, 5vw, 80px);
}
/* Audio player */
.slo-audio-player {
  margin-bottom: 28px;
  display: flex;
  gap: 0;
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 2px 12px 12px 12px;
  overflow: hidden;
}

/* Left: Now playing */
.slo-audio-player__now {
  flex: 1;
  background: rgba(168, 85, 247, 0.06);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
.slo-audio-player__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.slo-audio-player__title {
  font-family: var(--slo-font-display);
  font-size: 20px;
  font-weight: 800;
}
.slo-audio-player__artist {
  font-family: var(--slo-font-mono);
  font-size: 9px;
  opacity: 0.5;
  margin-top: 2px;
}
.slo-audio-player__controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slo-audio-player__play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--slo-purple), var(--slo-magenta));
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 12px rgba(168, 85, 247, 0.2);
  padding-left: 3px;
}
.slo-audio-player__play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}
.slo-audio-player__play-btn.is-playing {
  padding-left: 0;
}
.slo-audio-player__progress-wrap {
  flex: 1;
}
.slo-audio-player__progress {
  height: 4px;
  background: rgba(245, 240, 255, 0.12);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.slo-audio-player__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--slo-purple), var(--slo-magenta));
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s linear;
}
.slo-audio-player__times {
  display: flex;
  justify-content: space-between;
  font-family: var(--slo-font-mono);
  font-size: 9px;
  opacity: 0.45;
  margin-top: 4px;
}

/* Right: Playlist */
.slo-audio-player__playlist {
  flex: 0 0 220px;
  background: rgba(168, 85, 247, 0.03);
  border-left: 1px solid rgba(168, 85, 247, 0.08);
  padding: 16px;
}
.slo-audio-playlist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: none;
  background: transparent;
  color: var(--slo-text);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
  margin-bottom: 4px;
}
.slo-audio-playlist__item:hover {
  background: rgba(168, 85, 247, 0.08);
}
.slo-audio-playlist__item--active {
  background: rgba(168, 85, 247, 0.1);
  border-left: 2px solid var(--slo-purple);
}
.slo-audio-playlist__num {
  font-family: var(--slo-font-mono);
  font-size: 10px;
  opacity: 0.4;
  flex-shrink: 0;
  width: 16px;
}
.slo-audio-playlist__name {
  font-size: 12px;
  font-weight: 600;
  flex: 1;
}
.slo-audio-playlist__badge {
  font-family: var(--slo-font-mono);
  font-size: 8px;
  opacity: 0.4;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .slo-audio-player { flex-direction: column; }
  .slo-audio-player__playlist {
    flex: none;
    border-left: none;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
  }
}

/* Video + backstory side-by-side */
.slo-video-backstory {
  margin-top: 24px;
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.slo-video-container {
  flex: 1;
  aspect-ratio: 16 / 9;
  min-width: 0;
}
.slo-video-embed {
  width: 100%;
  height: 100%;
  border-radius: 8px 0 0 8px;
}
.slo-video-more-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--slo-font-mono);
  font-size: 12px;
  color: var(--slo-emerald);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.slo-video-more-link:hover {
  text-decoration: underline;
}

/* Backstory panel */
.slo-video-backstory__story {
  flex: 0 0 280px;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 20px;
}
.slo-video-backstory__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.slo-video-backstory__avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(245, 240, 255, 0.15);
  flex-shrink: 0;
}
.slo-video-backstory__name {
  font-family: var(--slo-font-display);
  font-size: 14px;
  font-weight: 700;
}
.slo-video-backstory__quote {
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.85;
  border-left: 2px solid var(--slo-purple);
  padding-left: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .slo-video-backstory {
    flex-direction: column;
  }
  .slo-video-backstory__story {
    flex: none;
    width: 100%;
  }
}

/* ============ BEAT 5: GALLERY + EXTENDED BIO ============ */
.slo-showcase__gallery {
  background: var(--slo-bg, #0E0A14);
  padding: 56px clamp(24px, 5vw, 80px);
}
.slo-gallery__layout {
  margin-top: 24px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.slo-gallery__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slo-gallery__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(245, 240, 255, 0.08);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.slo-gallery__photo:hover {
  transform: scale(1.03);
  border-color: rgba(168, 85, 247, 0.3);
}

/* Gallery lightbox modal */
.slo-gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 10, 20, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.slo-gallery-modal.is-open {
  display: flex;
}
.slo-gallery-modal__img {
  max-width: 80vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}
.slo-gallery-modal__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.slo-gallery-modal__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 2px 8px 8px 8px;
  background: rgba(168, 85, 247, 0.08);
  color: var(--slo-text);
  font-family: var(--slo-font-mono);
  font-size: 11px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.slo-gallery-modal__btn:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.35);
}
.slo-gallery-modal__btn--like {
  border-color: rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.08);
}
.slo-gallery-modal__btn--like:hover {
  background: rgba(236, 72, 153, 0.15);
  border-color: rgba(236, 72, 153, 0.35);
}
.slo-gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--slo-text);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}
.slo-gallery-modal__close:hover {
  opacity: 1;
}
.slo-gallery__bio {
  flex: 1;
}
.slo-gallery__bio-heading {
  font-family: var(--slo-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.slo-gallery__bio p {
  font-size: 14px;
  opacity: 0.82;
  line-height: 1.65;
  margin: 14px 0 0;
}
@media (max-width: 768px) {
  .slo-gallery__layout { flex-direction: column; }
  .slo-gallery__grid { grid-template-columns: 1fr; }
}

/* ============ BEAT 6: CTA ============ */
.slo-showcase__cta {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: white;
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.slo-cta-bg-equalizer {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 120px;
  opacity: 0.12;
  pointer-events: none;
}
.slo-cta-bg-equalizer span {
  width: 16px;
  background: var(--slo-emerald);
}
.slo-cta-bg-equalizer span:nth-child(1) { height: 60%; }
.slo-cta-bg-equalizer span:nth-child(2) { height: 95%; }
.slo-cta-bg-equalizer span:nth-child(3) { height: 40%; }
.slo-cta-bg-equalizer span:nth-child(4) { height: 80%; }
.slo-cta-bg-equalizer span:nth-child(5) { height: 55%; }
.slo-cta-bg-equalizer span:nth-child(6) { height: 75%; }
.slo-cta-bg-equalizer span:nth-child(7) { height: 45%; }

.slo-cta-content {
  position: relative;
  z-index: 1;
}
.slo-cta-heading {
  margin-top: 12px;
  font-family: var(--slo-font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
}
.slo-cta-sub {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.92;
}
.slo-cta-proof-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--slo-font-mono);
  font-size: 10px;
  opacity: 0.7;
}
.slo-cta-button {
  display: inline-block;
  margin-top: 32px;
  background: var(--slo-void);
  color: var(--slo-text);
  padding: 16px 36px;
  font-family: var(--slo-font-display);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease-out;
}
.slo-cta-button:hover {
  transform: translateY(-1px);
}
.slo-cta-callback {
  margin-top: 14px;
  font-family: var(--slo-font-mono);
  font-size: 10px;
  opacity: 0.7;
}
