/* =============================================
   STRIVE.FM LANDING PAGE — Additive Styles
   Works on top of main.css + output.css (light theme)
   ============================================= */

/* =============================================
   GLASS NAVBAR — Mobbin-style floating pill
   ============================================= */
.glass-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(600px, calc(100% - 32px));
  height: 56px;
  padding: 0 24px;
  border-radius: 9999px;
  background: hsla(240, 20%, 96%, 0.65);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 2px 24px rgba(0, 0, 0, 0.06),
    0 0 0 0.5px rgba(0, 0, 0, 0.03),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.glass-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.glass-nav-icon {
  width: 28px;
  height: 28px;
}

.glass-nav-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.glass-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.glass-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a3e;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 9999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.glass-nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #5359ff;
  text-decoration: none;
}

/* Mobile hamburger */
.glass-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.glass-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1a1a3e;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.glass-nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.glass-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.glass-nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile dropdown */
.glass-nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, calc(100% - 32px));
  z-index: 1099;
  background: hsla(240, 20%, 96%, 0.78);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 12px 8px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.7);
  flex-direction: column;
}

.glass-nav-mobile.open {
  display: flex;
}

.glass-nav-mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a3e;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.glass-nav-mobile-link:hover {
  background: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

@media (max-width: 540px) {
  .glass-nav-links { display: none; }
  .glass-nav-toggle { display: flex; }
}

/* Override old navbar if it leaks through */
.index_navbar_bg {
  display: none !important;
}

/* --- Container (used in new sections) --- */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HOW IT WORKS (from /artists consolidated)
   ============================================= */
.landing-how-section {
  padding: 40px 0 60px;
}

.how-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-works-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0 28px 28px;
  text-align: center;
  border: 1px solid rgba(192, 196, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.how-works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(100, 110, 255, 0.12);
}

.how-works-img-wrap {
  width: 100%;
  margin: 0 -28px;
  padding: 0 0 16px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.how-works-img-wrap img {
  width: calc(100% + 56px);
  margin-left: -28px;
  border-radius: 20px 20px 0 0;
  display: block;
  max-height: 220px;
  object-fit: cover;
}

.how-works-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c72ff, #888eff);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.how-works-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a3e;
  margin: 0 0 10px;
}

.how-works-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Expandable card content */
.how-works-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #6c72ff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.how-works-expand-btn:hover {
  color: #4a4fff;
}

.how-works-chevron {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.how-works-card.expanded .how-works-chevron {
  transform: rotate(90deg);
}

.how-works-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.how-works-card.expanded .how-works-expand {
  max-height: 200px;
}

.how-works-expand-inner {
  padding-top: 12px;
}

.how-works-expand-inner p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.how-works-faq-link {
  color: #6c72ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
  margin-top: 6px;
}

.how-works-faq-link:hover {
  text-decoration: underline;
}

@media (max-width: 864px) {
  .how-works-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* =============================================
   PICK YOUR EXPOSURE (dark themed cards + own blobBreath)
   ============================================= */
.campaign-section {
  /* background-color: #020418; */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.campaign-section::before,
.campaign-section::after {
  content: '';
  position: absolute;
  width: 130vmax;
  height: 100vmax;
  filter: blur(40px);
  opacity: 0.8;
  z-index: 0;
  will-change: transform, filter;
  pointer-events: none;
}

.campaign-section::before {
  top: 25%;
  left: 25%;
  /* background: radial-gradient(75% 30% at 70% 65%, rgba(94, 102, 255, 0.8) 0%, #7500ff24 70%); */
  /* animation: blobBreath 5s cubic-bezier(0.4, 0, 0.6, 1) infinite; */
  transform-origin: center;
}

.campaign-section::after {
  top: 15%;
  left: 45%;
  /* background: radial-gradient(15% 42% at 80% 65%, #855effcc 0%, #3000ff12 70%); */
  /* animation: blobBreathReverse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite; */
  transform-origin: center;
}

/* blobBreath keyframes — used by fixed blob overlay */
@keyframes blobBreath {
  0%, 100% {
    transform: scale(1) translate(-50%, -50%);
    /* filter: blur(50px) brightness(1); */
  }
  50% {
    transform: scale(1.6) translate(-50%, -50%);
    /* filter: blur(70px) brightness(1.2); */
  }
}

@keyframes blobBreathReverse {
  0%, 100% {
    transform: scale(1.6) translate(-50%, -50%);
    /* filter: blur(50px) brightness(1.2); */
  }
  50% {
    transform: scale(1) translate(-50%, -50%);
    /* filter: blur(30px) brightness(1); */
  }
}

.campaign-section .landing-container {
  position: relative;
  z-index: 1;
}

.campaign-section-title {
  font-family: 'Rubik', 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.campaign-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* --- Campaign card animation elements --- */
.grid-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  background: #111;
  overflow: hidden;
  contain: strict;
}

.grid-line {
  position: absolute;
  background: #1a1a1a;
}
.grid-line.h { width: 100%; height: 3px; }
.grid-line.v { height: 100%; width: 3px; }

.cam-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgb(85, 92, 255);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cam-dot-sm {
  width: 6px;
  height: 6px;
}

.geo-boundary {
  position: absolute;
  border: 2px dashed rgba(85, 92, 255, 0.4);
  border-radius: 4px;
  pointer-events: none;
}

.campaign-dark-card {
  background: #222240;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.campaign-dark-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.campaign-dark-popular {
  border-color: rgb(130 246 255 / 40%);
  box-shadow: 0 0 20px rgba(255, 50, 50, 0.08);
}

.campaign-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgb(56 133 255);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}

.campaign-dark-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.campaign-dark-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaign-dark-body {
  padding: 24px;
}

.campaign-dark-title {
  font-family: 'Rubik', 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.2;
}

.campaign-dark-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.campaign-dark-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0 0 20px;
  font-family: monospace;
}

.campaign-dark-meta {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 13px;
  color: #fff;
  font-family: monospace;
}

.campaign-meta-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 864px) {
  .campaign-cards-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .campaign-section-title { font-size: 28px; }
}

/* =============================================
   REACH CALCULATOR + GLOBE
   ============================================= */
.calculator-globe-section {
  padding: 80px 0;
}

.calc-globe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Duration toggle (Monthly / 6mo / 12mo) */
.calc-duration-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.calc-dur-btn {
  position: relative;
  background: rgba(240, 240, 250, 0.6);
  border: 1px solid rgba(192, 196, 255, 0.25);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 0;
}
.calc-dur-btn:hover {
  border-color: rgba(108, 114, 255, 0.4);
}
.calc-dur-btn.active {
  background: #6c72ff;
  color: #fff;
  border-color: #6c72ff;
}
.calc-dur-save {
  position: absolute;
  top: -8px;
  right: -4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: #10B981;
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  line-height: 1.2;
  white-space: nowrap;
}
.calc-dur-btn.active .calc-dur-save {
  background: #10B981;
  color: #fff;
}

.calc-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(192, 196, 255, 0.3);
}

.calc-budget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #6c72ff 16.7%, #e0e0ef 16.7%);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #6c72ff;
  box-shadow: 0 2px 8px rgba(108, 114, 255, 0.3);
  cursor: pointer;
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #6c72ff;
  box-shadow: 0 2px 8px rgba(108, 114, 255, 0.3);
  cursor: pointer;
}

.calc-slider-wrap {
  position: relative;
  padding-bottom: 20px;
}

.calc-slider-ticks {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
}

.calc-tick {
  position: absolute;
  transform: translateX(-50%);
  font-size: 10px;
  color: #999;
  white-space: nowrap;
}

.calc-tick::before {
  content: '';
  display: block;
  width: 1px;
  height: 6px;
  background: #bbb;
  margin: 0 auto 2px;
}

.theme-exp .calc-tick { color: rgba(255, 255, 255, 0.35); }
.theme-exp .calc-tick::before { background: rgba(255, 255, 255, 0.2); }

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
  font-size: 12px;
  color: #888;
}

.calc-cps-tiers {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(192, 196, 255, 0.15);
}

.calc-tier {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}

.calc-tier strong {
  color: #6c72ff;
  font-weight: 700;
}

.theme-exp .calc-cps-tiers {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.theme-exp .calc-tier {
  color: rgba(255, 255, 255, 0.35);
}

.theme-exp .calc-tier strong {
  color: #888eff;
}

.calc-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.calc-metric {
  background: rgba(240, 240, 250, 0.6);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(192, 196, 255, 0.2);
}

.calc-metric-val {
  font-size: 24px;
  font-weight: 700;
}

.calc-metric-lbl {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Royalty tooltip on Streams Driven "?" box */
.calc-royalty-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.calc-royalty-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a2e;
}
#calc-streams-locked:hover .calc-royalty-tooltip {
  display: block;
}

.calc-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: rgba(240, 240, 250, 0.4);
  border: 1px solid rgba(192, 196, 255, 0.4);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.calc-cta-btn:hover {
  background: rgba(240, 240, 250, 0.7);
  text-decoration: none;
}

.calc-globe-wrap {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0f0f2a 0%, #06060f 100%);
  cursor: grab;
}

.calc-globe-wrap:active {
  cursor: grabbing;
}

@media (max-width: 864px) {
  .calc-globe-layout { grid-template-columns: 1fr; }
  .calc-globe-wrap { height: 320px; }
}

/* =============================================
   FIXED BLOB OVERLAY — follows scroll, entire page
   ============================================= */
.blob-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 130vmax;
  height: 100vmax;
  will-change: tranform;
  /* will-change: transform, filter; */
  filter: blur(60px) brightness(1.1);
  pointer-events: none;
  backface-visibility: hidden;
  contain: strict;

}

/* Default blob styles (used as base) */
.blob-1 {
  top: 25%;
  left: 25%;
  filter: blur(50px);
  opacity: 0.55;
  animation: blobBreath 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform-origin: center;
}

.blob-2 {
  top: 15%;
  left: 45%;
  filter: blur(50px);
  opacity: 0.55;
  animation: blobBreathReverse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform-origin: center;
}

/* =============================================
   THEME: LIGHT MODE
   Add .theme-light to body or .main-content
   ============================================= */
.theme-light._index_bg {
  background-image: radial-gradient(72.6% 28.5% at 32.9% 34.8%, rgb(177 180 255) 0%, rgb(240 240 246) 100%) !important;
}

.theme-light .blob-1 {
  background: radial-gradient(45% 30% at 70% 65%, rgb(94 142 255 / 54%) 0%, #7500ff24 70%);
}

.theme-light .blob-2 {
  background: radial-gradient(15% 42% at 80% 65%, #855effcc 0%, #3000ff12 70%);
}

.theme-light .hero-dark {
  background-color: transparent !important;
}

.theme-light .hero-title-line1,
.theme-light .hero-title-line2 {
  color: #000 !important;
}

.theme-light .hero-text p {
  color: #333 !important;
}

.theme-light .hero-stat-val {
  color: #1a1a3e;
}

.theme-light .hero-stat-lbl {
  color: rgba(0, 0, 0, 0.5);
}

.theme-light .hero-globe-stats {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.08);
}

/* =============================================
   THEME: DARK MODE
   Add .theme-dark to body or .main-content
   ============================================= */
.theme-dark._index_bg {
  background-image: radial-gradient(72.6% 28.5% at 32.9% 34.8%, rgb(177 180 255) 0%, rgb(0 0 0) 100%) !important;
}

.theme-dark .blob-1 {
  background: radial-gradient(45% 30% at 70% 65%, rgb(94 142 255 / 54%) 0%, #000000 70%);
}

.theme-dark .blob-2 {
  background: radial-gradient(15% 42% at 80% 65%, #6a4deeba 0%, #000000 70%);
}

.theme-dark .hero-dark {
  background-color: transparent !important;
}

.theme-dark .hero-title-line1,
.theme-dark .hero-title-line2 {
  color: #fff !important;
}

.theme-dark .hero-text p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.theme-dark .hero-stat-val {
  color: #fff;
}

.theme-dark .hero-stat-lbl {
  color: rgba(255, 255, 255, 0.4);
}

.theme-dark .hero-globe-stats {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

/* =============================================
   CPPN overlay — hidden by default
   ============================================= */
.cppn-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: none;
}

/* =============================================
   THEME: EXPERIMENTAL (CPPN shader bg)
   Add .theme-exp to body
   ============================================= */
.theme-exp .blob-overlay {
  display: none;
}

.theme-exp .cppn-overlay {
  display: block;
}

.theme-exp._index_bg {
  background: #030009 !important;
  background-image: none !important;
}

.theme-exp .hero-dark {
  background-color: transparent !important;
}

.theme-exp .hero-title-line1,
.theme-exp .hero-title-line2 {
  color: #fff !important;
}

.theme-exp .hero-text p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.theme-exp .hero-stat-val {
  color: #fff;
}

.theme-exp .hero-stat-lbl {
  color: rgba(255, 255, 255, 0.45);
}

.theme-exp .hero-globe-stats {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

/* --- theme-exp: iOS-style dark glass navbar --- */
.theme-exp .glass-nav {
  background: hsla(245, 25%, 14%, 0.52);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 2px 24px rgba(0, 0, 0, 0.3),
    0 0 0 0.5px rgba(255, 255, 255, 0.06),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.1);
}
.theme-exp .glass-nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}
.theme-exp .glass-nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}
.theme-exp .glass-nav-name {
  color: rgba(255, 255, 255, 0) !important;
  -webkit-text-fill-color: transparent !important;
  background: repeating-linear-gradient(90deg, #a5a8ff 1%, #c1b3ff, #ddd8ff, #c1b3ff, #a5a8ff 99%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
.theme-exp .glass-nav-toggle span {
  background: #fff;
}
.theme-exp .glass-nav-mobile {
  background: hsla(245, 25%, 14%, 0.72);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.1);
}
.theme-exp .glass-nav-mobile-link {
  color: rgba(255, 255, 255, 0.9) !important;
}
.theme-exp .glass-nav-mobile-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}

/* --- theme-exp: bright link labels --- */
.theme-exp .campaign-section a[href*="use-cases"] {
  color: #a5a8ff !important;
}
.theme-exp .artist-testimonials-glass a[href="/customers"] {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* --- theme-exp: section titles white, no gradient --- */
.theme-exp .h2.gradient-animation {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}

/* --- theme-exp: How It Works dark --- */
.theme-exp .landing-how-section p {
  color: rgba(255, 255, 255, 0.55) !important;
}
.theme-exp .how-works-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.theme-exp .how-works-card:hover {
  box-shadow: 0 12px 30px rgba(108, 114, 255, 0.15);
}
.theme-exp .how-works-card h3 {
  color: #fff;
}
.theme-exp .how-works-card p {
  color: rgba(255, 255, 255, 0.55);
}
.theme-exp .how-works-expand-inner p {
  color: rgba(255, 255, 255, 0.5);
}

/* --- theme-exp: Pricing / Calculator dark --- */
.theme-exp .calc-dur-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
.theme-exp .calc-dur-btn:hover {
  border-color: rgba(108, 114, 255, 0.5);
}
.theme-exp .calc-dur-btn.active {
  background: #6c72ff;
  color: #fff;
  border-color: #6c72ff;
}
.theme-exp .calculator-globe-section p {
  color: rgba(255, 255, 255, 0.55) !important;
}
.theme-exp .calc-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.theme-exp .calc-budget-row span {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-exp .calc-metric {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.theme-exp .calc-metric-lbl {
  color: rgba(255, 255, 255, 0.4);
}
.theme-exp .calc-slider-labels span {
  color: rgba(255, 255, 255, 0.4);
}
.theme-exp .calc-slider {
  background: linear-gradient(90deg, #6c72ff 16.7%, #1a1a2e 16.7%);
}
.theme-exp .calc-slider::-webkit-slider-thumb {
  background: #1a1a2e;
  border-color: #6c72ff;
}
.theme-exp .calc-slider::-moz-range-thumb {
  background: #1a1a2e;
  border-color: #6c72ff;
}
.theme-exp .calc-cta-btn {
  background: rgba(108, 114, 255, 0.1);
  border-color: rgba(108, 114, 255, 0.25);
}
.theme-exp .calc-cta-btn:hover {
  background: rgba(108, 114, 255, 0.2);
}

/* --- theme-exp: FAQ dark --- */
.theme-exp .faq-item-light {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.theme-exp .faq-item-light:hover {
  border-color: rgba(108, 114, 255, 0.3);
}
.theme-exp .faq-q-light {
  color: #fff;
}
.theme-exp .faq-q-light::after {
  color: rgba(255, 255, 255, 0.4);
}
.theme-exp .faq-a-inner {
  color: rgba(255, 255, 255, 0.55);
}
.theme-exp .faq-a-inner a {
  color: #888eff;
}

/* --- theme-exp: Testimonials dark --- */
.theme-exp .testimonials-badge {
  color: rgba(255, 255, 255, 0.5);
}
.theme-exp .testimonial-card-glass {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.theme-exp .testimonial-card-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(108, 114, 255, 0.2);
}
.theme-exp .testimonial-text {
  color: rgba(255, 255, 255, 0.7) !important;
}
.theme-exp .artist-handle {
  color: #fff;
}
.theme-exp .artist-credential {
  color: rgba(255, 255, 255, 0.45);
}
.theme-exp .mk-stat-lbl {
  color: rgba(255, 255, 255, 0.4);
}
.theme-exp .indie-review-stat {
  color: rgba(255, 255, 255, 0.35);
}
.theme-exp .mk-featured-left {
  background: rgba(136, 141, 255, 0.08);
  border-right-color: rgba(255, 255, 255, 0.06);
}
.theme-exp .mk-featured-stats {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* --- theme-exp: Hero dashboard card (same as theme-dark) --- */
.theme-exp .hero-dash-card {
  background: rgba(15, 15, 35, 0.85);
  border: 1px solid rgba(108, 114, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(108, 114, 255, 0.06);
}
.theme-exp .hero-dash-artist-name { color: #fff; }
.theme-exp .hero-dash-subtitle { color: rgba(255, 255, 255, 0.45); }
.theme-exp .hero-dash-track-name { color: rgba(255, 255, 255, 0.5); }
.theme-exp .hero-dash-footer { border-top-color: rgba(255, 255, 255, 0.08); }
.theme-exp .hero-dash-stat-val { color: #fff; }
.theme-exp .hero-dash-stat-lbl { color: rgba(255, 255, 255, 0.4); }
.theme-exp .hero-dash-stat-accent .hero-dash-stat-val { color: #10b981; }

/* --- theme-exp: Signup section --- */
.theme-exp .nested_index_signup p {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-exp .text-block-25 {
  color: rgba(255, 255, 255, 0.4) !important;
}
.theme-exp .text-block-20 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.theme-exp .text-block-22.gradient-animation {
  -webkit-text-fill-color: #fff;
}

/* =============================================
   LOGO ROWS — 3-row scrolling layout
   ============================================= */
.logo-rows-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
}

/* Edge fade on outer container */
.logo-rows-container::before,
.logo-rows-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.logo-rows-container::before { left: 0; background: linear-gradient(to right, var(--logo-fade-color, #fff), transparent); }
.logo-rows-container::after { right: 0; background: linear-gradient(to left, var(--logo-fade-color, #fff), transparent); }

.theme-dark .logo-rows-container { --logo-fade-color: #000; }
.theme-exp .logo-rows-container { --logo-fade-color: #030009; }

.logo-row {
  padding: 0;
  width: 100vw;
  overflow: hidden;
  contain: content;
}

.logo-row .logo-scroll-track {
  will-change: transform;
}

/* Hide per-row fades since outer container handles it */
.logo-row.logo-scroll-container::before,
.logo-row.logo-scroll-container::after {
  display: none;
}

.logo-row .logo-scroll-track {
  gap: 16px;
}

/* Override output.css default scroll animation for rows */
.logo-row .logo-scroll-track {
  animation: none;
}

/* Left-scrolling track (rows 1 & 3) */
.logo-track-left {
  animation: scrollLeft 90s linear infinite !important;
}

/* Right-scrolling track (row 2) */
.logo-track-right {
  animation: scrollRight 90s linear infinite !important;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-25%); }
  100% { transform: translateX(0); }
}

.logo-track-left:hover,
.logo-track-right:hover {
  animation-play-state: paused;
}

/* Glass card wrapper for each logo */
.logo-glass {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
  height: 72px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.logo-glass a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.logo-glass img {
  max-width: 130px;
  max-height: 48px;
  object-fit: contain;
  display: block;
}

.logo-glass img.wide_logo {
  max-width: 110px;
  max-height: 40px;
}

.logo-glass .case-study-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 8px;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-glass:hover {
  transform: scale(1.05);
}

/* Light theme — no glass, just subtle background */
.theme-light .logo-glass {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Dark themes — solid glass-like bg (no backdrop-filter for perf) */
.theme-dark .logo-glass,
.theme-exp .logo-glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.theme-dark .logo-glass:hover,
.theme-exp .logo-glass:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Invert dark logos on dark themes so they're visible */
.theme-dark .logo-glass img,
.theme-exp .logo-glass img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.theme-dark .logo-glass:hover img,
.theme-exp .logo-glass:hover img {
  opacity: 1;
}

/* Skip invert for logos that already have color/photos */
.theme-dark .logo-glass.no-invert img,
.theme-exp .logo-glass.no-invert img {
  filter: none;
  opacity: 1;
}

@media (max-width: 864px) {
  .logo-glass {
    width: 130px;
    height: 60px;
  }
  .logo-glass img {
    max-width: 100px;
    max-height: 36px;
  }
  .logo-rows-container {
    gap: 8px;
    padding: 16px 0;
  }
}

/* =============================================
   HERO — base styles
   ============================================= */
.hero-dark {
  position: relative;
  padding-top: 88px !important;
}

/* Make content sit above the fixed blob overlay */
.main-content {
  position: relative;
  z-index: 2;
}

.index_navbar_bg {
  z-index: 1002 !important;
}

/* Hero split layout */
.hero-split {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
  min-height: 520px;
  padding-bottom: 80px;
}

.hero-text {
  flex: 0 0 58%;
  min-width: 0;
}

/* Hero title — 2 lines only */
.hero-title-line1,
.hero-title-line2 {
  font-size: 32px !important;
  line-height: 1.25 !important;
}

.hero-title-line2 {
  margin-top: 4px;
}

.hero-gradient-wrap {
  position: relative;
  display: inline;
}

.gradient-underline {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  display: block;
  overflow: hidden;
  width: 106%;
  height: 7px;
  justify-content: center;
  align-items: flex-start;
  transform: translate(-50%, 0px);
}

.gradient-underline-div {
  position: absolute;
  left: 50%;
  top: 0;
  overflow: hidden;
  width: 200%;
  height: 60px;
  padding: 3px;
  border-radius: 50%;
  transform: translate(-50%, 0px);
}

.gradient-underline-color {
  background: repeating-linear-gradient(90deg, #6c72ff 1%, #3e4196, #888eff, #c1b3ff, #6c72ff 99%);
  background-size: 200% auto;
  animation: slidingGradient 8s linear infinite forwards;
}

.gradient-underline-inner-circle {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff8de;
}

.theme-light .gradient-underline-inner-circle {
  background-color: #b8b9fc;
}

.theme-dark .gradient-underline-inner-circle {
  background-color: #030009;
}

.theme-exp .gradient-underline-inner-circle {
  background-color: #030009;
}

/* =============================================
   THEME: EXPERIMENTAL LIGHT (CPPN shader, light palette)
   Add .theme-exp-light to body
   ============================================= */
.theme-exp-light .blob-overlay {
  display: none;
}

.theme-exp-light .cppn-overlay {
  display: block;
}

.theme-exp-light._index_bg {
  background: #f8f5ff !important;
  background-image: none !important;
}

.theme-exp-light {
  background: #f8f5ff;
}

.theme-exp-light .hero-dark {
  background-color: transparent !important;
}

.theme-exp-light .hero-title-line1,
.theme-exp-light .hero-title-line2 {
  color: #1a1a2e !important;
}

.theme-exp-light .hero-text p {
  color: #444 !important;
}

.theme-exp-light .hero-stat-val {
  color: #1a1a3e;
}

.theme-exp-light .hero-stat-lbl {
  color: rgba(0, 0, 0, 0.5);
}

.theme-exp-light .hero-globe-stats {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 0, 0.08);
}

.theme-exp-light .gradient-underline-inner-circle {
  background-color: #d0bde5;
}

.theme-exp-light .logo-glass {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.theme-exp-light .logo-glass:hover {
  background: rgba(255, 255, 255, 0.5);
}

.theme-exp-light .logo-rows-container { --logo-fade-color: #f8f5ff; }

/* Trusted by — darker gray on light exp */
.theme-exp-light .hero-trusted-label {
  color: #666;
}
.theme-exp-light .hero-trusted-name {
  color: #444;
}
.theme-exp-light .hero-trusted-sep {
  color: #999;
}

/* Section titles — black, no gradient */
.theme-exp-light .h2.gradient-animation {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #111 !important;
  color: #111 !important;
}

.theme-exp-light .campaign-section-title {
  color: #111 !important;
}

/* Testimonials — dark text for light bg */
.theme-exp-light .testimonial-text {
  color: #333 !important;
}

.theme-exp-light .testimonials-badge {
  color: #333;
}

.theme-exp-light .testimonial-card-glass {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(0, 0, 0, 0.06);
}

.theme-exp-light .testimonial-card-glass:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(136, 141, 255, 0.3);
}

/* Testimonial names, roles, stats — dark text */
.theme-exp-light .mk-name,
.theme-exp-light .mk-label,
.theme-exp-light .mk-stat-label,
.theme-exp-light .indie-name,
.theme-exp-light .indie-role {
  color: #444 !important;
}

.theme-exp-light .mk-stat-val {
  color: #333 !important;
  -webkit-text-fill-color: #333 !important;
}

/* Hero inline stats row */
.hero-inline-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  flex-wrap: wrap;
}

.hero-inline-stat {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.hero-inline-stat strong {
  font-size: 17px;
  font-weight: 800;
}

.hero-inline-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.theme-exp-light .hero-inline-stat {
  color: #666;
}

.theme-exp-light .hero-inline-sep {
  color: #ccc;
}

.theme-light .hero-inline-stat {
  color: #555;
}

.theme-light .hero-inline-sep {
  color: rgba(0, 0, 0, 0.15);
}

/* Logo wall section (between pricing and reviews) */
.logo-wall-section {
  padding: 40px 0 20px;
  overflow: hidden;
}

.hero-text .page--heading {
  text-align: left;
}

.hero-text .h1 {
  text-align: left !important;
}

.hero-text .header-gradient-text {
  text-align: left;
}

.hero-text .gradient-underline {
  justify-content: flex-start;
}

.hero-text .heading-buttons-div {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0;
}

.hero-globe-outer {
  flex: 1 1 48%;
  position: relative;
  min-width: 0;
  margin-left: -40px;
}

.hero-globe-canvas {
  display: block;
  width: 100%;
  height: 520px;
}

.hero-globe-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.hero-stat {
  text-align: center;
  flex: 1;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 500;
}

/* Dashboard card overlapping globe - diagonal bottom-right position */
.hero-dashboard-cards {
  position: absolute;
  bottom: 10px;
  right: -20px;
  z-index: 10;
}

.hero-dash-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  border: 1px solid rgba(200, 200, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 16px 20px;
  min-width: 320px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

/* Initial load animation - added via JS */
.hero-dash-card.hero-dash-init {
  animation: cardBounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Keep card visible after init */
.hero-dash-card.hero-dash-visible {
  opacity: 1;
  transform: none;
}

@keyframes cardBounceIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); }
  50% { transform: translateY(-10px) scale(1.03); }
  70% { transform: translateY(5px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Smooth swap animations */
.hero-dash-exit {
  animation: cardExit 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-dash-enter {
  animation: cardEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardExit {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.92); }
}

@keyframes cardEnter {
  0% { opacity: 0; transform: scale(0.92); }
  40% { transform: scale(1.04); }
  70% { transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

/* Header */
.hero-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hero-dash-artist-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dash-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-dash-artist-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-dash-artist-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a3e;
  letter-spacing: -0.01em;
}

.hero-dash-subtitle {
  font-size: 10px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-dash-live {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: #10b981;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.9; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

/* Chart wrapper */
.hero-dash-chart-wrap {
  margin-bottom: 14px;
}

.hero-dash-chart-area {
  height: 70px;
  margin-bottom: 8px;
}

.hero-sparkline {
  width: 100%;
  height: 100%;
}

.spark-line {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 1.2s ease-out forwards;
}

.spark-line-1 { animation-delay: 0.4s; }
.spark-line-2 { animation-delay: 0.6s; }
.spark-line-3 { animation-delay: 0.8s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Legend */
.hero-dash-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dash-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-dash-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-dash-track-name {
  font-size: 10px;
  color: #555;
  font-weight: 500;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Footer stats */
.hero-dash-footer {
  display: flex;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-dash-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-dash-stat-val {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a3e;
  letter-spacing: -0.02em;
}

.hero-dash-stat-lbl {
  font-size: 9px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.hero-dash-stat-accent .hero-dash-stat-val {
  color: #10b981;
}

@media (max-width: 864px) {
  .hero-dashboard-cards {
    bottom: 20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
  }
  .hero-dash-card {
    padding: 14px 16px;
    min-width: unset;
    width: 100%;
  }
  .hero-dash-avatar {
    width: 32px;
    height: 32px;
  }
  .hero-dash-artist-name {
    font-size: 13px;
  }
  .hero-dash-chart-area {
    height: 55px;
  }
  .hero-dash-footer {
    gap: 14px;
  }
  .hero-dash-stat-val {
    font-size: 14px;
  }
}

@media (max-width: 864px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 0;
  }
  .hero-text { flex: none; width: 100%; margin-top: 3rem;}
  .hero-text .page--heading,
  .hero-text .h1 { text-align: center !important; }
  .hero-title-line1,
  .hero-title-line2 { font-size: 28px !important; }
  .hero-text p { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-text .heading-buttons-div { justify-content: center; }
  .hero-globe-outer { flex: none; width: 100%; }
  .hero-globe-canvas { height: 360px; }
}

/* =============================================
   HERO CTA BUTTON — redesigned gradient fill
   ============================================= */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.hero-cta-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  color: #fff;
}

.hero-cta-arrow {
  font-size: 16px;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-cta-btn:hover .hero-cta-arrow {
  transform: translateX(2px);
  opacity: 0.9;
}

/* Light theme CTA */
.theme-light .hero-cta-btn {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a3e;
}

.theme-light .hero-cta-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  color: #1a1a3e;
}

/* =============================================
   DARK DASHBOARD CARD (theme-dark variant)
   ============================================= */
.theme-dark .hero-dash-card {
  background: rgba(15, 15, 35, 0.85);
  border: 1px solid rgba(108, 114, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(108, 114, 255, 0.06);
}

.theme-dark .hero-dash-artist-name {
  color: #fff;
}

.theme-dark .hero-dash-subtitle {
  color: rgba(255, 255, 255, 0.45);
}

.theme-dark .hero-dash-track-name {
  color: rgba(255, 255, 255, 0.5);
}

.theme-dark .hero-dash-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.theme-dark .hero-dash-stat-val {
  color: #fff;
}

.theme-dark .hero-dash-stat-lbl {
  color: rgba(255, 255, 255, 0.4);
}

.theme-dark .hero-dash-stat-accent .hero-dash-stat-val {
  color: #10b981;
}

/* =============================================
   TRUSTED BY — inline partner names
   ============================================= */
.hero-trusted-by {
  text-align: left;
  padding: 40px 0 0;
}

.hero-trusted-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.hero-trusted-names {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-trusted-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: -0.01em;
}

.hero-trusted-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 20px;
}

/* Light theme trusted overrides */
.theme-light .hero-trusted-label {
  color: rgba(0, 0, 0, 0.35);
}

.theme-light .hero-trusted-name {
  color: rgba(0, 0, 0, 0.3);
}

.theme-light .hero-trusted-sep {
  color: rgba(0, 0, 0, 0.15);
}

/* Responsive — hero stats + trusted */
@media (max-width: 864px) {
  .hero-globe-stats {
    max-width: calc(100% - 32px);
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 0;
  }
  .hero-stat {
    flex: 1 1 50%;
    padding: 8px 16px;
    border-right: none;
  }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-stat-val { font-size: 22px; }
  .hero-trusted-by { text-align: center; }
  .hero-trusted-names { justify-content: center; gap: 10px; }
  .hero-trusted-name { font-size: 14px; }
}

/* =============================================
   MK FEATURED CARD + INDIE REVIEWS
   ============================================= */
.mk-featured-card {
  flex: none !important;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 !important;
  min-height: auto !important;
  border-color: rgba(136, 141, 255, 0.35) !important;
}

.mk-featured-inner {
  display: flex;
  gap: 0;
}

.mk-featured-left {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  background: rgba(136, 141, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px 0 0 24px;
}

.mk-featured-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(136, 141, 255, 0.4);
}

.mk-featured-logo {
  text-align: center;
}

.mk-featured-right {
  flex: 1;
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mk-featured-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-stat {
  text-align: center;
}

.mk-stat-val {
  font-size: 22px;
  font-weight: 700;
}

.mk-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Featured duo row (NERIAH + Labit) */
.featured-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 28px;
}

.featured-duo-card {
  flex: none !important;
  padding: 24px !important;
  min-height: auto !important;
  display: flex !important;
  flex-direction: column;
  border-color: rgba(136, 141, 255, 0.2) !important;
}

.featured-duo-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.featured-duo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(136, 141, 255, 0.3);
  flex-shrink: 0;
}

.featured-duo-meta {
  min-width: 0;
}

/* Mini reviews grid */
.indie-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.indie-review-card {
  flex: none !important;
  min-height: auto !important;
  padding: 20px 18px !important;
}

.indie-review-stat {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

@media (max-width: 864px) {
  .mk-featured-inner { flex-direction: column; }
  .mk-featured-left {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px 24px 0 0;
    padding: 24px;
  }
  .mk-featured-img { width: 100px; height: 100px; }
  .mk-featured-right { padding: 24px; }
  .mk-featured-stats { flex-wrap: wrap; gap: 16px; }
  .featured-duo-grid { grid-template-columns: 1fr; }
  .indie-reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .indie-reviews-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PLATFORM METRICS BAR
   ============================================= */
.platform-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto 36px;
  padding: 20px 32px;
  background: rgba(136, 141, 255, 0.04);
  border: 1px solid rgba(136, 141, 255, 0.1);
  border-radius: 16px;
}
.platform-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.platform-metric-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.platform-metric-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.platform-metric-dot {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
}
@media (max-width: 640px) {
  .platform-metrics-bar {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }
  .platform-metric-dot {
    display: none;
  }
  .platform-metric {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
  }
  .platform-metric-val {
    font-size: 24px;
  }
}

/* =============================================
   CASE STUDIES PEEK / FADE OVERLAY
   ============================================= */
.case-studies-peek-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 140px;
}
.case-studies-peek-wrapper .featured-duo-grid {
  margin-bottom: 0;
  pointer-events: none;
}
.case-studies-fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10, 10, 26, 0) 0%,
    rgba(10, 10, 26, 0.55) 30%,
    rgba(10, 10, 26, 0.88) 60%,
    rgba(10, 10, 26, 0.97) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.case-studies-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(136, 141, 255, 0.1);
  border: 1px solid rgba(136, 141, 255, 0.25);
  border-radius: 12px;
  color: rgba(136, 141, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case-studies-see-all:hover {
  background: rgba(136, 141, 255, 0.18);
  border-color: rgba(136, 141, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(136, 141, 255, 0.15);
}

/* =============================================
   CASE STUDY HOVER ARROWS
   ============================================= */
a.case-study-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.case-study-link .testimonial-card-glass {
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
a.case-study-link:hover .testimonial-card-glass {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(136, 141, 255, 0.12);
}
.case-study-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(136, 141, 255, 0.12);
  border: 1px solid rgba(136, 141, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}
.case-study-arrow svg {
  width: 14px;
  height: 14px;
}
a.case-study-link:hover .case-study-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* Label below arrow on hover */
.case-study-arrow-label {
  position: absolute;
  top: 48px;
  right: 16px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(136, 141, 255, 0.7);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s 0.05s ease;
}
a.case-study-link:hover .case-study-arrow-label {
  opacity: 1;
  transform: translateY(0);
}
/* MK card: position arrow differently since layout is horizontal */
.mk-featured-card .case-study-arrow {
  top: 20px;
  right: 24px;
}
.mk-featured-card .case-study-arrow-label {
  top: 52px;
  right: 24px;
}

/* =============================================
   FAQ (light theme)
   ============================================= */
.landing-faq-section {
  padding: 80px 0 60px;
}

.faq-list-light {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item-light {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(192, 196, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item-light:hover {
  border-color: rgba(108, 114, 255, 0.4);
}

.faq-q-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a3e;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-q-light::after {
  content: '+';
  font-size: 20px;
  color: #888;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item-light.active .faq-q-light::after {
  content: '\2212';
}

.faq-a-light {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-item-light.active .faq-a-light {
  max-height: 300px;
}
