/* ==========================================================================
   Creator Connect - Main Stylesheet
   Brand: Dark navy SaaS / Premium music industry aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #080c18;
}

body {
  background-color: #080c18;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(81, 114, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(121, 81, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(81, 114, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(81, 114, 255, 0.03) 1px, transparent 0);
  background-size: 100% 100%, 100% 100%, 100% 100%, 24px 24px;
  background-attachment: fixed, fixed, fixed, fixed;
  color: #FAFBFF;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select, button {
  font-family: 'Manrope', sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  color: #FAFBFF;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FAFBFF;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: #FAFBFF;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #FAFBFF;
}

p {
  font-weight: 400;
  color: #9DA2B3;
  line-height: 1.7;
}

.label-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5172FF;
  display: inline-block;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

/* ==========================================================================
   3. Navigation
   ========================================================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  padding: 20px 0;
}

nav.nav-scrolled {
  background: rgba(15, 23, 51, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img,
.nav-logo svg {
  height: 36px;
  width: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: #FAFBFF;
  gap: 10px;
  padding: 4px 0;
}

.nav-wordmark {
  font-weight: 800;
  font-size: 1.5rem;
  color: #FAFBFF;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-logo-img {
  height: 22px !important;
  width: auto !important;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  justify-self: center;
}

.nav-cta-wrap {
  justify-self: end;
}

.nav-links a {
  color: #FAFBFF;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: #5172FF;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle,
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after,
.dropdown-toggle::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu,
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0F1733;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 0;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a,
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #FAFBFF;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:hover,
.dropdown-menu a:hover {
  color: #FAFBFF;
  background: rgba(81, 114, 255, 0.08);
}

.nav-cta {
  background: #5172FF;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAFBFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav — hidden on desktop */
.mobile-nav {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: fixed;
  top: 0;
  right: 0;
  background: #080c18;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 100px 24px 40px;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FAFBFF;
  border-bottom: 1px solid #1E2847;
  transition: color 0.25s ease;
}

.mobile-nav a:hover {
  color: #5172FF;
}

.mobile-nav .nav-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.9375rem;
}

.mobile-nav .dropdown-parent {
  border-bottom: 1px solid #1E2847;
}

.mobile-nav .dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FAFBFF;
  font-family: inherit;
  cursor: pointer;
}

.mobile-nav .dropdown-trigger::after {
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.mobile-nav .dropdown-parent.open .dropdown-trigger::after {
  transform: rotate(180deg);
}

.mobile-nav .dropdown {
  display: none;
  padding: 0 0 8px 12px;
}

.mobile-nav .dropdown-parent.open .dropdown,
.mobile-nav .dropdown.open {
  display: block;
}

.mobile-nav .dropdown a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    grid-template-columns: none;
  }

  .nav-logo {
    justify-self: start;
    min-width: 0;
  }

  .nav-logo-img {
    height: 20px !important;
    max-width: 180px;
    object-fit: contain;
  }

  .nav-links {
    display: none;
  }

  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    background: none;
    border: none;
    box-shadow: none;
    padding: 8px;
  }

  .mobile-nav {
    display: none !important;
    visibility: visible !important;
    width: 100% !important;
    height: 100vh !important;
    overflow-y: auto !important;
  }

  .mobile-nav.active {
    display: block !important;
  }
}

/* ==========================================================================
   4. Hero Sections (Too Lost style)
   ========================================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 0;
  margin-bottom: 0;
  text-align: center;
  background: #080c18;
  border: none;
  box-shadow: none;
}

.hero-subpage {
  min-height: auto;
  text-align: center;
}

.hero-subpage .hero-content { max-width: 900px; margin: 0 auto; }
.hero-subpage .hero-content p { margin-left: auto; margin-right: auto; }
.hero-subpage .hero-ctas,
.hero-subpage .hero-buttons { justify-content: center; }

/* Gradient blobs */
.hero-blob-purple {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(89, 52, 180, 0.5) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-amber {
  position: absolute;
  right: -5%;
  bottom: 0%;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 110, 30, 0.4) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-blue {
  position: absolute;
  right: 10%;
  top: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 50, 140, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Hero text — upper portion */
.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
  padding: 0 24px;
  margin-bottom: 48px;
}

.hero-h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-h1-dim {
  opacity: 0.75;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: #9DA2B3;
  line-height: 1.7;
  max-width: 520px;
}

.hero-buttons,
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Diagonal scrolling card strip */
.hero-strip-wrap {
  width: 120vw;
  margin-left: -10vw;
  transform: rotate(-5deg);
  position: relative;
  z-index: 1;
  margin-top: 48px;
  flex-shrink: 0;
  padding: 20px 0 60px;
}

.hero-strip {
  display: flex;
  gap: 24px;
  animation: heroStripScroll 35s linear infinite;
  width: max-content;
  perspective: 1000px;
}

@keyframes heroStripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-strip-card {
  width: 400px;
  min-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-strip-card--up,
.hero-strip-card--down {
  transform: none;
}

.hero-strip-card img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-art-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 12px;
  z-index: 4;
  border-radius: 12px;
  pointer-events: none;
}

.hero-art-platform {
  display: none;
}

.hero-art-card-logo {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 48px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 48px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1) !important;
  opacity: 0;
  z-index: 6;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-art-card-logo[src*="disorderrecords"] {
  height: 96px !important;
  max-height: 96px !important;
  max-width: 360px !important;
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
}

.hero-art-card-logo[src*="polydor"] {
  height: 96px !important;
  max-height: 96px !important;
  max-width: 360px !important;
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
}

.hero-art-card-logo[src*="atlantic"] {
  height: 72px !important;
  max-height: 72px !important;
  max-width: 270px !important;
}

.hero-art-card-logo[src*="Island_Records"] {
  height: 96px !important;
  max-height: 96px !important;
  max-width: 360px !important;
}

.hero-art-card-logo[src*="rise-festival"] {
  height: 96px !important;
  max-height: 96px !important;
  max-width: 360px !important;
}

.hero-art-stat {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FAFBFF;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-art-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-art-platform--dual { gap: 4px; }
.hero-art-platform--dual svg { width: 18px; height: 18px; }

/* Subpage hero layout */
.hero-inner,
.hero-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }

  .hero-h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .hero-strip-wrap {
    width: 140vw;
    margin-left: -20vw;
  }

  .hero-strip-card {
    width: 148px;
    min-width: 148px;
  }
}

/* Legacy classes — hidden */
/* .hero-blob base — visible */
.hero-collage { display: none; }
.hero-glow { display: none; }
.hero-art { display: none; }

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn-primary {
  background: #5172FF;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary:hover {
  background: #6183FF;
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(81, 114, 255, 0.3);
}

.btn-secondary {
  background: #1E2847;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1.4;
}

.btn-secondary:hover {
  background: #131B3A;
}

.btn-ghost {
  background: transparent;
  color: #FAFBFF;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid #1E2847;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1.4;
}

.btn-ghost:hover {
  background: rgba(30, 40, 71, 0.5);
  border-color: #5172FF;
}

/* ==========================================================================
   6. Cards (Base)
   ========================================================================== */

.card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   7. Service Cards Grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(81, 114, 255, 0.4);
  box-shadow: 0 0 40px rgba(81, 114, 255, 0.1);
  transform: translateY(-4px);
}

.service-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #5172FF;
  margin-bottom: 20px;
  line-height: 1;
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(81, 114, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  padding: 10px 0;
  border-bottom: none;
  color: #9DA2B3;
  padding-left: 24px;
  position: relative;
  font-size: 0.9375rem;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li::before {
  content: "\2713";
  color: #5172FF;
  position: absolute;
  left: 0;
  font-weight: 700;
}

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

/* ==========================================================================
   8. Stats Bar
   ========================================================================== */

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 64px 0;
  border-top: none;
  border-bottom: none;
}

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

.stat-number {
  font-size: clamp(5rem, 8vw, 6.25rem);
  font-weight: 800;
  color: #5172FF;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #9DA2B3;
  font-weight: 400;
  margin-top: 4px;
}

/* Stats section (homepage) */
.stats-section {
  background: transparent;
  text-align: center;
}

.stats-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6E7180;
  margin-bottom: 60px;
  margin-bottom: 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.stats-item {
  text-align: center;
}

.stats-num {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  color: #5172FF;
  line-height: 1;
  text-shadow: 0 0 40px rgba(81, 114, 255, 0.5);
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 200px;
  min-width: 180px;
  text-align: center;
}

.stats-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  align-self: center;
  flex-shrink: 0;
}

.stats-label {
  font-size: 0.875rem;
  color: rgba(250, 251, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 24px;
  margin-top: 8px;
}

.stats-accent-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #5172FF, #7951FF, transparent);
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .stats-bar {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
}

/* ==========================================================================
   9. Logo / Trust Bar
   ========================================================================== */

/* Logos section — tight to hero */
.logos-section {
  padding-top: 0 !important;
  padding-bottom: 40px !important;
}

.logo-bar-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.logo-bar-wrapper::before,
.logo-bar-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-bar-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #080c18, transparent);
}

.logo-bar-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #080c18, transparent);
}

.logo-bar {
  display: flex;
  gap: 72px;
  align-items: center;
  animation: scrollLogos 20s linear infinite;
  width: max-content;
}

.logo-bar:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Image logos */
.logo-img {
  height: 36px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 4px 8px;
  background: transparent;
}

.logo-img:hover {
  opacity: 1;
}

/* Text logo fallback — kept for pages that still use text */
.logo-pill {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(250, 251, 255, 0.7);
  white-space: nowrap;
  transition: color 0.3s ease, opacity 0.3s ease;
  letter-spacing: -0.01em;
}

.logo-pill:hover {
  color: rgba(250, 251, 255, 1);
}

/* ==========================================================================
   10. Testimonials
   ========================================================================== */

.testimonials-section {
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(81, 114, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(25, 30, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Client logo area on testimonial cards */
.testimonial-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(250, 251, 255, 0.1);
  background: rgba(250, 251, 255, 0.04);
  margin-bottom: 8px;
}

.testimonial-client-logo img {
  max-height: 24px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.testimonial-client-name {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6E7180;
  margin-bottom: 20px;
}

.quote-mark {
  font-size: 3rem;
  color: #5172FF;
  line-height: 1;
  margin-bottom: 16px;
}

.stars {
  color: #5172FF;
  font-size: 1.25rem;
  margin: 16px 0;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #D3D6E0;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  margin-top: 24px;
}

.testimonial-author .author-name {
  font-weight: 600;
  color: #FAFBFF;
  font-size: 1rem;
}

.testimonial-author .author-title {
  color: #9DA2B3;
  font-size: 0.875rem;
  margin-top: 4px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(81, 114, 255, 0.3);
  margin-bottom: 16px;
}

.testimonial-avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(81, 114, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 700;
  color: #5172FF;
  font-size: 1.125rem;
}

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

/* ==========================================================================
   11. Case Study Cards
   ========================================================================== */

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: rgba(25, 30, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.case-card .img-placeholder {
  height: 200px;
  background: #1E2847;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6E7180;
  font-size: 0.875rem;
}

.case-card-content {
  padding: 24px;
}

/* Case study preview cards (homepage) */
.case-study-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-study-card {
  display: flex;
  gap: 24px;
  background: rgba(25, 30, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.case-study-content {
  padding: 32px;
  flex: 1;
}

.case-study-stats {
  font-weight: 700;
  color: #5172FF;
  font-size: 1rem;
  margin-bottom: 8px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Testimonial elements */
.testimonial-stars {
  color: #5172FF;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #D3D6E0;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-name {
  font-weight: 600;
  color: #FAFBFF;
  font-size: 1rem;
}

.testimonial-title {
  color: #9DA2B3;
  font-size: 0.875rem;
  margin-top: 4px;
}

/* Mobile nav label */
.mobile-nav-label {
  display: block;
  padding: 16px 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5172FF;
  border-bottom: none;
}

/* Hero card labels */
.hero-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5172FF;
  margin-bottom: 8px;
}

.hero-card-stat {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FAFBFF;
  margin-bottom: 4px;
}

.hero-card-sub {
  display: block;
  font-size: 0.8125rem;
  color: #9DA2B3;
}

/* Case study placeholder image */
.case-study-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #1E2847;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6E7180;
}

/* Blog card placeholder */
.blog-card-placeholder {
  width: 100%;
  height: 200px;
  background: #1E2847;
}

@media (max-width: 768px) {
  .case-study-card {
    flex-direction: column;
  }

  .case-study-image {
    width: 100% !important;
    height: 200px;
  }
}

.case-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.case-tag.campaigns {
  background: rgba(81, 114, 255, 0.15);
  color: #5172FF;
}

.case-tag.fan-pages {
  background: rgba(121, 81, 255, 0.15);
  color: #7951FF;
}

.case-tag.events {
  background: rgba(0, 194, 168, 0.15);
  color: #00C2A8;
}

.case-card h3 {
  margin-bottom: 8px;
}

.case-card p {
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.case-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1E2847;
}

.case-stat-value {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: #5172FF;
  line-height: 1;
}

.case-stat-label {
  font-size: 0.75rem;
  color: #9DA2B3;
  margin-top: 2px;
}

.result-card {
  background: rgba(25, 30, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  background: rgba(81, 114, 255, 0.15);
  color: #5172FF;
}

.result-artist {
  margin-bottom: 8px;
}

.result-stat {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #5172FF;
  line-height: 1;
  margin-bottom: 8px;
}

.result-stat .stat-counter {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.result-sub {
  font-size: 0.875rem;
  color: #6E7180;
  margin-bottom: 16px;
}

.result-link {
  color: #5172FF;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease;
}

.result-link:hover {
  gap: 8px;
}

.stat-counter {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #5172FF;
  line-height: 1;
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   12. FAQ Accordion
   ========================================================================== */

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 8px;
  overflow: hidden;
}

.faq-list {
  max-width: none;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.125rem;
  color: #FAFBFF;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  line-height: 1.4;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #5172FF;
}

.faq-question span {
  flex: 1;
}

.faq-question::after {
  display: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #5172FF;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: #9DA2B3;
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ==========================================================================
   13. Pricing Cards
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  border: 1px solid #5172FF;
  position: relative;
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5172FF;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card .label-tag {
  margin-bottom: 8px;
}

.pricing-card h3 {
  margin-bottom: 16px;
}

.price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FAFBFF;
  line-height: 1.1;
  margin-bottom: 4px;
}

.price-sub {
  color: #9DA2B3;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.pricing-card p.pricing-desc {
  color: #9DA2B3;
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #1E2847;
  color: #9DA2B3;
  padding-left: 20px;
  position: relative;
  font-size: 0.9375rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "\2713";
  color: #5172FF;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  margin-top: 24px;
}

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

  .pricing-card.featured {
    transform: none;
  }
}

/* ==========================================================================
   14. Comparison Table
   ========================================================================== */

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-card {
  background: rgba(25, 30, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.comparison-card.traditional {
  border: none;
}

.comparison-card.cc {
  border: none;
}

.comparison-card h3 {
  margin-bottom: 24px;
}

.comparison-item {
  padding: 16px 0;
  border-bottom: 1px solid #1E2847;
  display: flex;
  align-items: start;
  gap: 12px;
  color: #9DA2B3;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-icon-negative {
  color: #FF5C5C;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

.comparison-icon-positive {
  color: #5172FF;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   15. Blog Cards
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(81, 114, 255, 0.4);
  box-shadow: 0 8px 32px rgba(81, 114, 255, 0.15);
}

.blog-card .img-placeholder {
  height: 200px;
  background: #1E2847;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6E7180;
  font-size: 0.875rem;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: #6E7180;
}

.blog-card h3 {
  margin-bottom: 8px;
}

.blog-card h3 a {
  color: #FAFBFF;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card h3 a:hover {
  color: #5172FF;
}

.blog-card p {
  color: #9DA2B3;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.blog-card .read-more {
  color: #5172FF;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease;
}

.blog-card .read-more:hover {
  gap: 8px;
}

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

/* ==========================================================================
   16. Blog Post / Article
   ========================================================================== */

.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 48px;
}

.article-header .label-tag {
  margin-bottom: 16px;
}

.article-header h1 {
  margin-bottom: 16px;
}

.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #9DA2B3;
  font-size: 0.875rem;
  margin-top: 24px;
}

.article-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  margin-bottom: 24px;
  color: #D3D6E0;
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  color: #D3D6E0;
  margin-bottom: 24px;
  padding-left: 24px;
  line-height: 1.8;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 3px solid #5172FF;
  padding-left: 24px;
  margin: 32px 0;
  color: #BCBFCC;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.article-content a {
  color: #5172FF;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.article-content a:hover {
  color: #7951FF;
}

.article-content img {
  border-radius: 12px;
  margin: 32px 0;
}

.article-content code {
  background: #1E2847;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #5172FF;
}

.article-content pre {
  background: #131B3A;
  border: 1px solid #1E2847;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  overflow-x: auto;
}

.article-content pre code {
  background: transparent;
  padding: 0;
}

/* ==========================================================================
   17. Contact Form
   ========================================================================== */

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-grid .form-group.full-width {
  grid-column: 1 / -1;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #FAFBFF;
  font-size: 0.875rem;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  max-width: none;
  padding: 0;
  min-width: 18px;
  height: 18px;
  flex-shrink: 0;
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  background: #1E2847;
  border: 1px solid #1E2847;
  border-radius: 12px;
  color: #FAFBFF;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: #6E7180;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #5172FF;
  box-shadow: 0 0 0 3px rgba(81, 114, 255, 0.2);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239DA2B3' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-hint {
  font-size: 0.8125rem;
  color: #6E7180;
  margin-top: 6px;
}

.form-error {
  font-size: 0.8125rem;
  color: #FF5C5C;
  margin-top: 6px;
}

input.error,
textarea.error,
select.error {
  border-color: #FF5C5C;
}

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

/* ==========================================================================
   18. CTA Banner
   ========================================================================== */

.cta-banner {
  background: transparent;
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(81, 114, 255, 0.0375) 0%, rgba(121, 81, 255, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-banner > .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.cta-banner p {
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.125rem;
}

.cta-banner .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-social-proof {
  font-size: 0.8125rem;
  color: #6E7180;
  font-weight: 500;
}

.cta-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-bottom: 32px;
}

.cta-label-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.3s ease;
  background: none !important;
  border: none !important;
}

.cta-label-logo:hover {
  opacity: 1;
}

/* Warner logo */
.cta-label-logo[alt="Warner Music Group"] {
  height: 40px !important;
}

/* Universal logo */
.cta-label-logo[alt="Universal Music Group"] {
  height: 90px !important;
}

/* Sony logo */
.cta-label-logo[alt="Sony Music"] {
  height: 95px !important;
}

/* Legacy slot — no longer used */
.cta-trust-slot {
  width: 100px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-trust-slot img {
  max-height: 18px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.cta-trust-text {
  font-size: 0.8125rem;
  color: #6E7180;
  margin-bottom: 16px;
}

/* Animated gradient border around CTA */
.cta-border-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.cta-border-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(81, 114, 255, 0.4), rgba(121, 81, 255, 0.2), rgba(81, 114, 255, 0.1), rgba(121, 81, 255, 0.4));
  background-size: 300% 300%;
  animation: gradientBorder 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   19. Footer
   ========================================================================== */

.footer {
  background: transparent;
  border-top: none;
  padding: 80px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #5172FF, #7951FF, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .nav-logo-img {
  height: auto !important;
  width: auto !important;
  max-height: 32px !important;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  color: #9DA2B3;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  color: #FAFBFF;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-link {
  color: #9DA2B3;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 0.9375rem;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: #5172FF;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9DA2B3;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  font-size: 1rem;
}

.social-icon:hover {
  border-color: #5172FF;
  color: #5172FF;
  box-shadow: 0 0 20px rgba(81, 114, 255, 0.2);
  background: transparent;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: none;
  text-align: center;
  color: #6E7180;
  font-size: 0.8125rem;
  opacity: 0.4;
}

.footer-bottom a {
  color: #9DA2B3;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: #5172FF;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   20. Scroll Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   21. Image Placeholders
   ========================================================================== */

.img-placeholder {
  background: #1E2847;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #6E7180;
  font-size: 0.875rem;
  gap: 12px;
}

.img-placeholder .cc-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #6E7180;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #6E7180;
}

/* ==========================================================================
   22. Filter Tabs (Case Studies)
   ========================================================================== */

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #1E2847;
  color: #9DA2B3;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: 'Manrope', sans-serif;
}

.filter-tab.active,
.filter-tab:hover {
  background: #5172FF;
  border-color: #5172FF;
  color: #FFFFFF;
}

/* ==========================================================================
   23. Process Steps
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.process-step {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(81, 114, 255, 0.15);
  color: #5172FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9375rem;
}

/* Connector line (optional, between steps on desktop) */
.process-connector {
  display: none;
}

/* ==========================================================================
   24. Tabs (What You'll See Each Month)
   ========================================================================== */

.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #1E2847;
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: #9DA2B3;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}

.tab-btn:hover {
  color: #FAFBFF;
}

.tab-btn.active {
  color: #5172FF;
  border-bottom-color: #5172FF;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ==========================================================================
   25. Guarantee Badges
   ========================================================================== */

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guarantee-badge {
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.guarantee-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(81, 114, 255, 0.15);
  color: #5172FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.guarantee-badge h4 {
  margin-bottom: 8px;
}

.guarantee-badge p {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   26. Floating Service Cards (Homepage Hero)
   ========================================================================== */

.hero-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.hero-card {
  background: rgba(25, 30, 55, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 24px;
  padding: 24px;
  width: 280px;
}

.hero-card:nth-child(1) {
  transform: translateX(20px);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
  transform: translateX(-20px);
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-card:nth-child(3) {
  transform: translateX(40px);
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-card .card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5172FF;
  margin-bottom: 8px;
}

.hero-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.8125rem;
  color: #9DA2B3;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .hero-cards {
    display: none;
  }
}

/* ==========================================================================
   27. Section Spacing
   ========================================================================== */

section {
  padding: 100px 0;
  background: transparent;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.text-center {
  text-align: center;
}

.section-header .label-tag {
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  color: #9DA2B3;
}

.section-header.text-center p {
  margin: 0 auto;
}

@media (max-width: 768px) {
  section:not(.hero):not(.hero-subpage):not(.cta-banner) {
    padding: 64px 0;
  }
}

/* ==========================================================================
   28. Responsive Breakpoints
   ========================================================================== */

/* Large tablets and below */
@media (max-width: 1024px) {
  .hero-inner,
  .hero-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons,
  .hero-ctas {
    justify-content: center;
  }
}

/* Tablets and below */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .hero-subpage {
    min-height: auto;
    padding-bottom: 48px;
  }

  .stats-bar {
    gap: 32px;
    padding: 32px 0;
  }

  .cta-banner {
    padding: 64px 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 56px 0;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: auto;
    justify-content: center;
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .hero-buttons,
  .hero-ctas {
    flex-direction: column;
  }

  .cta-banner .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-tabs {
    margin-bottom: 32px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .pricing-card {
    padding: 24px;
  }
}

/* ==========================================================================
   Dot Grid Texture Overlay
   ========================================================================== */

/* Dot grid now applied globally via body background */
.section-dotgrid {
  position: relative;
}

/* ==========================================================================
   Section Contrast — Glow effects only, all sections transparent
   ========================================================================== */

.section-light {
  background: transparent;
}

.section-stats {
  background: transparent;
  position: relative;
}

.section-stats::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(81, 114, 255, 0.08);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-stats > .container {
  position: relative;
  z-index: 1;
}

/* Testimonials — strong blue glow */
.section-testi-glow {
  position: relative;
}

.section-testi-glow > .container {
  position: relative;
  z-index: 1;
}

/* Case studies — purple glow top-right */
.section-cs-glow {
  position: relative;
}

.section-cs-glow > .container {
  position: relative;
  z-index: 1;
}

/* CTA — standout */
.section-cta-glow {
  background: transparent !important;
}

/* ==========================================================================
   Stat-forward Case Study Cards
   ========================================================================== */

.case-card-stat {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #5172FF;
  line-height: 1;
  margin-bottom: 4px;
}

.case-card-stat-label {
  font-size: 0.8125rem;
  color: #9DA2B3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-card-stats-row {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.case-card-stat-item {
  min-width: 0;
}

.case-card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.case-card.expanded .case-card-detail {
  max-height: 300px;
  padding-top: 16px;
}

.case-card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5172FF;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0;
  font-family: 'Manrope', sans-serif;
  transition: gap 0.25s ease;
}

.case-card-toggle:hover {
  gap: 10px;
}

.case-card-toggle .toggle-icon {
  transition: transform 0.3s ease;
}

.case-card.expanded .case-card-toggle .toggle-icon {
  transform: rotate(180deg);
}

/* ==========================================================================
   Case Study Images (Unsplash Placeholders)
   ========================================================================== */

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-image {
  width: 280px;
  min-height: 200px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .case-study-image {
    width: 100%;
    height: 200px;
  }
}

/* ==========================================================================
   Case Study Modal
   ========================================================================== */

.cs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 24px;
}

.cs-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal V2 layout */
.cs-modal-v2 {
  background: rgba(15, 20, 40, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(81, 114, 255, 0.12);
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 32px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
}

.cs-modal-overlay.active .cs-modal-v2 {
  transform: translateY(0) scale(1);
}

.cs-modal-top {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  min-height: 400px;
}

.cs-modal-images {
  display: flex;
  gap: 12px;
  padding: 32px 0 32px 32px;
  align-items: flex-start;
  height: 400px;
}

.cs-modal-img-left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.cs-modal-img-portrait {
  overflow: hidden;
  flex-shrink: 0;
}

.cs-modal-img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Left image: 4:5 portrait (taller than wide) */
.cs-modal-img-portrait.ratio-4-5 {
  width: 280px;
  height: 350px;
  border-radius: 16px 16px 0 0;
}

/* Right image: 9:16 tall portrait */
.cs-modal-img-portrait.ratio-9-16 {
  width: 200px;
  height: 400px;
  border-radius: 16px;
}

/* Blue client logo bar under left image */
.cs-modal-logo-bar {
  width: 280px;
  height: 48px;
  background: #5172FF;
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-modal-logo-bar img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.cs-modal-top-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 32px;
}

.cs-modal-bottom {
  padding: 0 32px 24px;
}

.cs-modal-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Photo grid removed — using portrait pair layout */

.cs-modal-nav-bottom {
  display: flex;
  gap: 12px;
}

.cs-modal-nav-bottom button {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(81, 114, 255, 0.15);
  border: none;
  color: #FAFBFF;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background 0.2s ease;
}

.cs-modal-nav-bottom button:hover {
  background: rgba(81, 114, 255, 0.3);
}

@media (max-width: 768px) {
  .cs-modal-v2 {
    padding: 20px;
    border-radius: 16px;
  }

  .cs-modal-top {
    grid-template-columns: 1fr;
  }

  .cs-modal-images {
    flex-direction: row;
    padding: 20px;
    height: 300px;
  }

  .cs-modal-img-portrait.ratio-4-5 {
    width: 180px;
    height: 225px;
  }

  .cs-modal-logo-bar {
    width: 180px;
  }

  .cs-modal-img-portrait.ratio-9-16 {
    width: 140px;
    height: 300px;
  }

  .cs-modal-top-stats {
    padding: 20px;
  }

  .cs-modal-bottom {
    padding: 0 20px 20px;
  }
}

.cs-modal {
  background: rgba(19, 27, 58, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(81, 114, 255, 0.15);
  border-radius: 24px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
}

.cs-modal-overlay.active .cs-modal {
  transform: translateY(0) scale(1);
}

.cs-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FAFBFF;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.cs-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Left panel — photos */
.cs-modal-photos {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-modal-photo-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.cs-modal-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-modal-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cs-modal-photo-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

/* Middle panel — vertical photo */
.cs-modal-middle {
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-modal-vertical-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

/* Right panel — stats + quote */
.cs-modal-info {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid rgba(81, 114, 255, 0.1);
}

.cs-modal-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(81, 114, 255, 0.15);
  color: #5172FF;
  width: fit-content;
}

.cs-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FAFBFF;
  line-height: 1.2;
}

.cs-modal-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-modal-stat {
  display: flex;
  flex-direction: column;
}

.cs-modal-stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #5172FF;
  line-height: 1;
}

.cs-modal-stat-label {
  font-size: 0.8125rem;
  color: #9DA2B3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.cs-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-modal-pill {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(121, 81, 255, 0.12);
  color: #9DA2B3;
}

.cs-modal-date {
  font-size: 0.8125rem;
  color: #6E7180;
}

.cs-modal-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: #D3D6E0;
  line-height: 1.7;
  border-left: 3px solid #5172FF;
  padding-left: 16px;
}

.cs-modal-nav {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.cs-modal-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(81, 114, 255, 0.15);
  border: none;
  color: #FAFBFF;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cs-modal-nav button:hover {
  background: rgba(81, 114, 255, 0.3);
}

/* Responsive modal */
@media (max-width: 1024px) {
  .cs-modal {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .cs-modal-middle {
    display: none;
  }

  .cs-modal-info {
    border-left: none;
    border-top: 1px solid rgba(81, 114, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .cs-modal {
    border-radius: 16px;
  }

  .cs-modal-photos,
  .cs-modal-info {
    padding: 24px;
  }
}

/* Homepage case study cards — clickable */
.cs-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(81, 114, 255, 0.4);
  box-shadow: 0 8px 32px rgba(81, 114, 255, 0.15);
}

.cs-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.cs-card-body {
  padding: 24px;
}

.cs-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(81, 114, 255, 0.15);
  color: #5172FF;
  margin-bottom: 12px;
}

.cs-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #FAFBFF;
  margin-bottom: 16px;
}

.cs-card-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cs-card-stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #5172FF;
  line-height: 1;
}

.cs-card-stat-lbl {
  font-size: 0.6875rem;
  color: #9DA2B3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.cs-card-summary {
  font-size: 0.875rem;
  color: #9DA2B3;
  margin-top: 16px;
  line-height: 1.6;
}

.cs-card-label-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  margin-top: 16px;
  margin-left: auto;
  display: block;
}

/* ==========================================================================
   Testimonial 3D Coverflow
   ========================================================================== */

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.testi-coverflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.testi-coverflow-track {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 420px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-card {
  background: rgba(15, 20, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 480px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform-style: preserve-3d;
}

.testi-card--center {
  transform: scale(1) rotateY(0deg) translateZ(0px);
  opacity: 1;
  z-index: 3;
}

.testi-card--left {
  transform: scale(0.85) rotateY(15deg) translateX(-320px) translateZ(-80px);
  opacity: 0.5;
  z-index: 1;
}

.testi-card--right {
  transform: scale(0.85) rotateY(-15deg) translateX(320px) translateZ(-80px);
  opacity: 0.5;
  z-index: 1;
}

.testi-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FAFBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
  z-index: 5;
}

.testi-arrow:hover {
  background: rgba(81, 114, 255, 0.3);
}

@media (max-width: 768px) {
  .testi-coverflow-track {
    height: 480px;
  }

  .testi-card {
    width: 85vw;
    max-width: 400px;
    padding: 32px;
  }

  .testi-card--left,
  .testi-card--right {
    display: none;
  }

  .testi-card--center {
    position: relative;
  }
}

.testi-pill-row {
  text-align: center;
  margin-bottom: 16px;
}

.testi-service-pill {
  background: rgba(81, 114, 255, 0.15);
  border: 1px solid rgba(81, 114, 255, 0.4);
  color: #5172FF;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 0;
}

.testi-card-quote-mark {
  font-size: 4.5rem;
  color: #5172FF;
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 12px;
  font-weight: 700;
}

.testi-card-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: #D3D6E0;
  flex: 1;
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(81, 114, 255, 0.2);
  flex-shrink: 0;
}

.testi-card-avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(81, 114, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5172FF;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.testi-card-info {
  flex: 1;
  min-width: 0;
}

.testi-card-name {
  font-weight: 700;
  color: #FAFBFF;
  font-size: 0.9375rem;
}

.testi-card-role {
  color: #9DA2B3;
  font-size: 0.8125rem;
  margin-top: 2px;
}

.testi-card-logo--top {
  display: none;
}

.testi-card-logo {
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  border: none !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-shrink: 0;
}

.testi-card-logo img {
  max-height: 16px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

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

/* ==========================================================================
   Service Cards (3-column grid)
   ========================================================================== */

.services-section {
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(121, 81, 255, 0.08);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-section > .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px;
  min-height: 500px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card ul {
  flex: 1;
}

.service-card:hover,
.service-card.active {
  transform: scale(1.03);
  border-color: rgba(81, 114, 255, 0.6);
  box-shadow: 0 0 48px rgba(81, 114, 255, 0.15);
  z-index: 2;
  position: relative;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  white-space: nowrap;
  height: 40px;
  display: flex;
  align-items: center;
}

.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.6;
  height: calc(1.6em * 4);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card ul li {
  font-size: 0.85rem;
  line-height: 1.8;
  white-space: nowrap;
}

.svc-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(81, 114, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-number {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: #5172FF;
  margin-bottom: 24px;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  padding: 10px 0;
  border-bottom: none;
  color: #9DA2B3;
  padding-left: 24px;
  position: relative;
  font-size: 0.9375rem;
}

.service-card ul li::before {
  content: "\2713";
  color: #5172FF;
  position: absolute;
  left: 0;
  font-weight: 700;
}

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

/* ==========================================================================
   Vertical Timeline (How we work)
   ========================================================================== */

.vtl-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.vtl-tab {
  padding: 10px 24px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #9DA2B3;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
}

.vtl-tab:hover {
  color: #FAFBFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.vtl-tab.active {
  background: #5172FF;
  color: #FFFFFF;
  border-color: #5172FF;
}

.proc-panel {
  display: none;
  animation: vtlFadeIn 0.4s ease;
}

.proc-panel.active {
  display: block;
}

@keyframes vtlFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.vtl-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  padding: 48px 56px;
  max-width: 640px;
  margin: 0 auto;
}

.vtl {
  position: relative;
  padding-left: 48px;
}

/* Vertical line */
.vtl::before {
  display: none;
}

/* Draw line segments between steps only, not after the last */
.vtl-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 38px;
  bottom: -32px;
  width: 2px;
  background: #5172FF;
  z-index: 0;
}

.vtl-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.vtl-step:last-child {
  padding-bottom: 0;
}

.vtl-node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #5172FF;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: -48px;
  top: 0;
  box-shadow: 0 0 16px rgba(81, 114, 255, 0.3);
  z-index: 1;
}

.vtl-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FAFBFF;
  margin-bottom: 4px;
  line-height: 1.4;
}

.vtl-content p {
  font-size: 0.875rem;
  color: rgba(250, 251, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vtl-card {
    padding: 32px 24px;
  }

  .vtl {
    padding-left: 44px;
  }

  .vtl-node {
    left: -44px;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   Labels Grid (5x3 static)
   ========================================================================== */

.labels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.labels-grid-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.labels-grid-logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .labels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .labels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ==========================================================================
   Logo Grid (Brands)
   ========================================================================== */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 28px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.logo-grid-item {
  height: auto;
  width: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo-grid-item[alt="Atlantic Records"] { width: 96px; }
.logo-grid-item[alt="Polydor Records"] { width: 120px; }
.logo-grid-item[alt="Island Records"] { width: 72px; }
.logo-grid-item[alt="Interscope Records"] { width: 72px; }
.logo-grid-item[alt="EMI Records"] { width: 84px; }
.logo-grid-item[alt="Republic Records"] { width: 108px; }
.logo-grid-item[alt="Relentless Records"] { width: 152px; }
.logo-grid-item[alt="Virgin Records"] { width: 120px; }
.logo-grid-item[alt="Material Music"] { width: 124px; }
.logo-grid-item[alt="Disorder Records"] { width: 156px; }
.logo-grid-item[alt="Libre Music"] { width: 172px; }
.logo-grid-item[alt="3 Beat Records"] { width: 112px; }
.logo-grid-item[alt="Sony Music"] { width: 128px; }
.logo-grid-item[alt="Universal Music Group"] { width: 156px; }
.logo-grid-item[alt="Warner Music Group"] { width: 140px; }

.logo-grid-item:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ==========================================================================
   29. Utility Classes
   ========================================================================== */

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-gradient {
  background: linear-gradient(135deg, #5172FF, #7951FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Spacing utilities */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-96 { margin-top: 96px; }

.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.pt-24 { padding-top: 24px; }
.pt-48 { padding-top: 48px; }
.pb-24 { padding-bottom: 24px; }
.pb-48 { padding-bottom: 48px; }

/* Grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.case-studies-section > .container {
  max-width: 1265px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

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

/* Flex utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* Display utilities */
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Width utilities */
.w-full { width: 100%; }
.max-w-600 { max-width: 600px; }
.max-w-720 { max-width: 720px; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   30. Miscellaneous / Additional Components
   ========================================================================== */

/* Divider */
.divider {
  height: 1px;
  background: #1E2847;
  border: none;
  margin: 48px 0;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-blue {
  background: rgba(81, 114, 255, 0.15);
  color: #5172FF;
}

.badge-purple {
  background: rgba(121, 81, 255, 0.15);
  color: #7951FF;
}

.badge-teal {
  background: rgba(0, 194, 168, 0.15);
  color: #00C2A8;
}

/* Tooltip */
.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #131B3A;
  border: 1px solid #1E2847;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: #D3D6E0;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 100;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #5172FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 900;
  border: none;
  box-shadow: 0 4px 16px rgba(81, 114, 255, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

/* Loading spinner */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #1E2847;
  border-top-color: #5172FF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success/error states */
.form-success {
  background: rgba(0, 194, 168, 0.1);
  border: 1px solid rgba(0, 194, 168, 0.3);
  border-radius: 12px;
  padding: 24px;
  color: #00C2A8;
  text-align: center;
}

.form-error-message {
  background: rgba(255, 92, 92, 0.1);
  border: 1px solid rgba(255, 92, 92, 0.3);
  border-radius: 12px;
  padding: 24px;
  color: #FF5C5C;
  text-align: center;
}

/* Smooth page transitions (optional) */
.page-transition {
  animation: pageIn 0.4s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Selection color */
::selection {
  background: rgba(81, 114, 255, 0.3);
  color: #FAFBFF;
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #080c18;
}

::-webkit-scrollbar-thumb {
  background: #1E2847;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2A3560;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid #5172FF;
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

body {
  background-color: #080c18;
  background-image: none;
}

.glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 800px 600px at 15% 8%, rgba(81,114,255,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 700px 500px at 85% 25%, rgba(121,81,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 55%, rgba(121,81,255,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 800px 500px at 90% 75%, rgba(81,114,255,0.12) 0%, transparent 70%);
}

body,
body > *:not(.hero-strip-wrap):not(.hero-strip):not(.hero-strip-card):not(.hero-strip-card-up):not(.hero-strip-card-down):not(.hero-art-link) {
  background-color: #080c18;
}

.hero-strip-wrap,
.hero-strip,
.hero-strip-card,
.hero-strip-card-up,
.hero-strip-card-down,
.hero-art-link {
  background-color: transparent;
}


/* ==========================================================================
   HOME PAGE — coherent phone scale (390-wide)
   Overrides inline Home styles. Desktop rules above are unchanged.
   ========================================================================== */

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  /* ---- Hero ---- */
  .hero {
    padding-top: 104px !important;
    padding-bottom: 12px !important;
    background: #080c18;
  }

  .hero-h1 {
    font-size: clamp(1.7rem, 7vw, 2.15rem) !important;
    margin-bottom: 14px;
    line-height: 1.2;
  }

  h1 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }

  .hero-content {
    padding: 0 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-content[style] {
    max-width: 100% !important;
    margin-top: 16px !important;
  }

  .hero-content p,
  .hero-subtext {
    font-size: 0.9375rem;
    max-width: 100%;
    margin-bottom: 20px;
    line-height: 1.55;
  }

  h2 {
    font-size: clamp(1.2rem, 4.5vw, 1.45rem) !important;
  }

  .section:not(.hero):not(.hero-subpage) {
    padding: 64px 0;
  }

  .label-tag {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .hero-buttons,
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: auto;
    justify-content: center;
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .hero-strip-wrap {
    margin-top: 32px !important;
    padding: 12px 0 20px !important;
  }

  .hero-strip {
    gap: 14px;
  }

  .hero-strip-card .hero-art-overlay span {
    font-size: 0.75rem !important;
  }

  /* Phone strip cards. Do not touch desktop 400px. */

  /* ---- Testimonials ---- */
  .testimonials-section {
    padding-top: 28px !important;
    padding-bottom: 48px !important;
    overflow-x: hidden;
    background: #080c18;
  }

  .testimonials-section .section-header {
    padding-bottom: 16px !important;
  }

  .testi-coverflow {
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 100%;
  }

  .testi-coverflow-track {
    height: auto;
    min-height: 0;
    max-width: 100%;
  }

  .testi-card {
    width: min(82vw, 340px) !important;
    max-width: calc(100vw - 88px) !important;
    padding: 24px !important;
    position: relative;
  }

  .testi-arrow {
    width: 36px;
    height: 36px;
  }

  .testi-card-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .testi-card-quote-mark {
    font-size: 3rem;
  }

  .testi-card-avatar {
    width: 48px;
    height: 48px;
  }

  .testi-card-footer {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Inline logo imgs use height:80px / max-width:300px !important.
     zoom shrinks used layout on WebKit (iPhone); transform would not. */
  .testi-card-logo {
    zoom: 0.45;
    max-width: 140px !important;
    flex-shrink: 1;
  }

  /* ---- Logo / client grid ---- */
  .logo-grid,
  .labels-grid {
    max-width: 100%;
    gap: 24px 16px;
  }

  .logo-grid-item,
  .labels-grid-logo {
    max-width: min(90px, 28vw);
    height: auto;
  }

  /* ---- Services (Home alternating rows — all inline) ---- */
  section.section.fade-in[style*="padding:120px"] {
    padding: 64px 0 !important;
  }

  section.section.fade-in[style*="padding:120px"] > div[style*="max-width:1400px"] {
    max-width: 100% !important;
    padding: 0 20px !important;
  }

  #hpFanRow,
  #hpCampRow,
  #hpEvRow {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 28px !important;
    padding: 48px 0 !important;
    width: 100% !important;
  }

  #hpFanRow > div,
  #hpCampRow > div,
  #hpEvRow > div {
    width: 100% !important;
    max-width: 100% !important;
  }

  #hpFanRow span[style*="font-size:64px"],
  #hpCampRow span[style*="font-size:64px"],
  #hpEvRow span[style*="font-size:64px"],
  #sound-seeding span[style*="font-size:64px"] {
    font-size: 40px !important;
  }

  #hpFanRow h3[style],
  #hpCampRow h3[style],
  #hpEvRow h3[style],
  #sound-seeding h3[style] {
    font-size: 22px !important;
  }

  #hpFanRow h2[style],
  #hpCampRow h2[style],
  #hpEvRow h2[style] {
    white-space: normal !important;
    overflow: visible !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
    line-height: 1.35;
  }

  #hpFanRow [style*="border-radius:24px"],
  #hpCampRow [style*="border-radius:24px"],
  #hpEvRow [style*="border-radius:24px"] {
    padding: 18px 14px !important;
    max-width: 100%;
  }

  #hpFanRow [style*="height:289px"],
  #hpCampRow [style*="height:289px"],
  #hpEvRow [style*="height:289px"] {
    height: 200px !important;
  }

  #hpFanRow [style*="white-space:nowrap"],
  #hpCampRow [style*="white-space:nowrap"],
  #hpEvRow [style*="white-space:nowrap"] {
    white-space: normal !important;
    overflow: visible !important;
    max-width: 100%;
  }

  #hpFanPills,
  #hpCampPills,
  #hpEvPills {
    overflow: hidden;
  }

  .chart-annotation {
    max-width: 42vw;
  }

  .chart-annotation .camp-act-pill {
    font-size: 9px !important;
    padding: 2px 6px !important;
    white-space: nowrap;
  }

  #sound-seeding {
    padding: 48px 0 !important;
    width: 100% !important;
  }

  /* ---- Shared cards / grids ---- */
  .card,
  .blog-card,
  .cs-card,
  .pricing-card,
  .service-card,
  .result-card,
  .process-step,
  .guarantee-badge {
    min-width: 0;
    max-width: 100%;
  }

  .service-card {
    min-height: 0;
    padding: 28px;
  }

  .service-card h3,
  .service-card ul li {
    white-space: normal;
    height: auto;
  }

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

  .cs-card-img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .stats-num {
    min-width: 0;
  }

  .stats-label {
    white-space: normal;
  }

  /* ---- FAQ / CTA / Footer ---- */
  .faq-question {
    font-size: 1rem;
    padding: 18px 16px;
  }

  .faq-answer p {
    padding: 0 16px 18px;
  }

  .cta-banner {
    padding: 56px 16px;
  }

  .cta-banner h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .cta-border-wrap {
    padding: 40px 20px;
    max-width: 100%;
  }

  .cta-trust-logos {
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
  }

  .cta-label-logo[alt="Warner Music Group"] {
    height: 28px !important;
  }

  .cta-label-logo[alt="Universal Music Group"],
  .cta-label-logo[alt="Sony Music"] {
    height: 44px !important;
  }

  .footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  /* Case study modal — don't force 180+140px portraits side by side */
  .cs-modal-images {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
  }

  .cs-modal-img-portrait.ratio-4-5,
  .cs-modal-logo-bar {
    width: min(180px, 70vw);
  }

  .cs-modal-img-portrait.ratio-9-16 {
    width: min(140px, 42vw);
    height: auto;
    max-height: 240px;
  }

  .hero-card {
    width: min(280px, 90vw);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section.section.fade-in[style*="padding:120px"] {
    padding: 64px 0 !important;
  }

  section.section.fade-in[style*="padding:120px"] > div[style*="max-width:1400px"] {
    padding: 0 16px !important;
  }

  #hpFanRow,
  #hpCampRow,
  #hpEvRow {
    padding: 36px 0 !important;
    gap: 20px !important;
  }

  #hpFanRow span[style*="font-size:64px"],
  #hpCampRow span[style*="font-size:64px"],
  #hpEvRow span[style*="font-size:64px"],
  #sound-seeding span[style*="font-size:64px"] {
    font-size: 36px !important;
  }

  #hpFanRow [style*="height:289px"],
  #hpCampRow [style*="height:289px"],
  #hpEvRow [style*="height:289px"] {
    height: 180px !important;
  }

  .testimonials-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .testi-card {
    width: min(78vw, 320px) !important;
    max-width: calc(100vw - 72px) !important;
    padding: 20px !important;
  }

  .cta-border-wrap {
    padding: 32px 16px;
  }

  .cta-label-logo[alt="Universal Music Group"],
  .cta-label-logo[alt="Sony Music"] {
    height: 36px !important;
  }
}

/* ==========================================================================
   PHONE — sections smaller (do not touch Home hero)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-live {
    min-height: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 96px 20px 32px !important;
    overflow: hidden !important;
  }

  .hero-live-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 28px !important;
  }

  .hero-live-copy,
  .hero-live-videos {
    width: 100% !important;
  }

  .hero-live-copy .hero-h1 {
    text-align: center !important;
    font-size: clamp(1.7rem, 7vw, 2.15rem) !important;
  }

  .hero-live-copy .hero-subtext {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
    font-size: 0.9375rem !important;
    max-width: 100% !important;
  }

  .hero-live-copy .hero-ctas {
    justify-content: center !important;
  }

  .hero-live-videos {
    justify-content: center !important;
    gap: 10px !important;
  }

  .hero-live-phone {
    width: 120px !important;
    height: 214px !important;
    margin-top: 0 !important;
  }

  /* Sections: smaller type and chrome, not more padding */
  .section h2,
  .section-header h2 {
    font-size: clamp(1.15rem, 4.2vw, 1.4rem) !important;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .price {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .pricing-card,
  .pricing-card[style] {
    min-width: 0 !important;
    max-width: 100%;
    padding: 24px !important;
  }

  .pricing-features li {
    font-size: 0.8125rem;
    padding: 6px 0 6px 18px;
  }

  .vtl-content h4 {
    font-size: 0.95rem;
  }

  .vtl-content p {
    font-size: 0.8125rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 14px 0;
  }

  .blog-card h3 {
    font-size: 1rem;
  }

  .blog-card p {
    font-size: 0.8125rem;
  }

  .testi-card-text {
    font-size: 0.8125rem !important;
  }

  .cta-banner h2,
  .cta-banner .hero-h1 {
    font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
  }

  #hpFanRow span[style*="font-size:64px"],
  #hpCampRow span[style*="font-size:64px"],
  #hpEvRow span[style*="font-size:64px"] {
    font-size: 28px !important;
  }

  #hpFanRow h3,
  #hpCampRow h3,
  #hpEvRow h3 {
    font-size: 1.1rem !important;
  }


  [style*="min-width:464px"] {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px !important;
  }

  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .hero-live-copy img {
    max-height: 28px !important;
  }

  .hero-live-copy [style*="margin-top:40px"] {
    margin-top: 20px !important;
    gap: 14px !important;
    justify-content: center;
  }

  #sound-seeding span[style*="font-size:64px"] {
    font-size: 28px !important;
  }

  #sound-seeding h3 {
    font-size: 1.1rem !important;
  }

  /* Service-page quote / proof cards (not heroes) */
  .section [style*="padding:48px"] {
    padding: 22px !important;
  }

  .section [style*="font-size:1.2rem"] {
    font-size: 0.9rem !important;
  }


  [style*="grid-template-columns:repeat(3,200px)"] {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0 16px;
    gap: 8px !important;
    justify-content: stretch !important;
  }

  [style*="width:200px;height:356px"] {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 200 / 356;
  }


  /* Section headings wrap and drop size. Leave .hero-h1 alone. */
  .section h2,
  .section-header h2,
  .testimonials-section h2,
  #hpFanRow h2,
  #hpCampRow h2,
  #hpEvRow h2 {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100% !important;
    font-size: 1.15rem !important;
    line-height: 1.25 !important;
    padding: 0 4px;
  }

  .testimonials-section .section-header[style*="padding-bottom:100px"] {
    padding-bottom: 20px !important;
  }


  .cs-card-body {
    padding: 14px !important;
  }

  .cs-card-name {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }

  .cs-card img[style*="height:200px"] {
    height: 120px !important;
  }

  [style*="grid-template-columns:repeat(2,1fr)"] {
    gap: 12px !important;
  }


  .testi-card {
    width: min(76vw, 300px) !important;
    max-width: calc(100vw - 64px) !important;
    padding: 16px !important;
  }

  .testi-card-text {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }

  .testi-card-quote-mark {
    font-size: 2rem !important;
  }

  .testi-card-avatar {
    width: 36px !important;
    height: 36px !important;
  }

  .section p[style*="font-style:italic"] {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
    max-width: 100% !important;
    padding: 0 2px;
  }

  .section [style*="padding:48px"] {
    padding: 20px 18px !important;
  }


  .testimonials-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .testi-coverflow {
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
    gap: 6px;
    justify-content: center;
    box-sizing: border-box;
  }

  .testi-coverflow-track {
    width: auto !important;
    flex: 0 1 auto;
    max-width: calc(100% - 72px);
  }

  .testi-arrow {
    width: 28px !important;
    height: 28px !important;
    position: relative;
    left: auto;
    right: auto;
  }

  .testi-card {
    width: min(64vw, 250px) !important;
    max-width: 250px !important;
    padding: 14px !important;
  }

  .testi-card-text {
    font-size: 0.75rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .testi-card-quote-mark {
    font-size: 1.6rem !important;
  }

  .section p[style*="font-style:italic"] {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }


  .testi-card-name {
    font-size: 0.75rem !important;
    line-height: 1.3;
  }

  .testi-card-role {
    font-size: 0.6875rem !important;
    line-height: 1.3;
  }

  .section [style*="font-weight:700"][style*="font-size:1rem"] {
    font-size: 0.75rem !important;
  }

  .section [style*="color:#9DA2B3"][style*="font-size:0.8125rem"] {
    font-size: 0.6875rem !important;
  }


  .testi-card-footer {
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 8px !important;
  }

  .testi-card-info {
    min-width: 0;
    flex: 1 1 auto;
  }

  .testi-card-role {
    white-space: nowrap !important;
    font-size: 0.625rem !important;
    overflow: hidden;
    text-overflow: clip;
  }

  .testi-card-logo {
    zoom: 0.32;
    max-width: 64px !important;
    flex-shrink: 0;
  }


  .testi-card-logo {
    zoom: 1 !important;
    max-width: 80px !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .testi-card-logo img,
  .testi-card-logo img[style] {
    height: 20px !important;
    min-height: 0 !important;
    max-height: 20px !important;
    width: auto !important;
    max-width: 72px !important;
  }


  .testi-card {
    position: relative !important;
  }

  .testi-pill-row {
    padding-right: 88px;
  }

  .testi-card-logo {
    position: absolute !important;
    top: 12px;
    right: 12px;
    left: auto;
    zoom: 1 !important;
    max-width: 96px !important;
    margin: 0;
  }

  .testi-card-logo img,
  .testi-card-logo img[style] {
    height: 16px !important;
    min-height: 0 !important;
    max-height: 16px !important;
    width: auto !important;
    max-width: 88px !important;
  }

  .testi-card-footer {
    padding-right: 0;
  }


  .testi-card > [style*="color:#FFD700"] {
    display: none !important;
  }

  .testi-card-logo--foot {
    display: none !important;
  }

  .testi-card-logo--top {
    display: flex !important;
    justify-content: center;
    position: static !important;
    zoom: 1 !important;
    margin: 8px auto 10px;
    max-width: 100% !important;
  }

  .testi-card-logo--top img,
  .testi-card-logo--top img[style] {
    height: 50px !important;
    min-height: 0 !important;
    max-height: 50px !important;
    width: auto !important;
    max-width: 160px !important;
  }

  .testi-pill-row {
    padding-right: 0 !important;
    justify-content: center;
  }


  .testi-card-text {
    text-align: center !important;
  }

  .testi-card-quote-mark {
    text-align: center !important;
    display: block !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }


  .logo-grid,
  .labels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px 12px !important;
    max-width: 100%;
    padding: 0 8px;
  }

  .logo-grid-item,
  .logo-grid-item[alt],
  .labels-grid-logo {
    width: 48px !important;
    max-width: 48px !important;
    height: auto !important;
  }


  .logo-grid-item,
  .logo-grid-item[alt] {
    height: auto !important;
  }

  .logo-grid-item[alt="Atlantic Records"] { width: 48px !important; max-width: 48px !important; }
  .logo-grid-item[alt="Polydor Records"] { width: 60px !important; max-width: 60px !important; }
  .logo-grid-item[alt="Island Records"] { width: 36px !important; max-width: 36px !important; }
  .logo-grid-item[alt="Interscope Records"] { width: 36px !important; max-width: 36px !important; }
  .logo-grid-item[alt="EMI Records"] { width: 42px !important; max-width: 42px !important; }
  .logo-grid-item[alt="Republic Records"] { width: 54px !important; max-width: 54px !important; }
  .logo-grid-item[alt="Relentless Records"] { width: 66px !important; max-width: 66px !important; }
  .logo-grid-item[alt="Virgin Records"] { width: 60px !important; max-width: 60px !important; }
  .logo-grid-item[alt="Material Music"] { width: 54px !important; max-width: 54px !important; }
  .logo-grid-item[alt="Disorder Records"] { width: 66px !important; max-width: 66px !important; }
  .logo-grid-item[alt="Libre Music"] { width: 72px !important; max-width: 72px !important; }
  .logo-grid-item[alt="3 Beat Records"] { width: 48px !important; max-width: 48px !important; }
  .logo-grid-item[alt="Sony Music"] { width: 54px !important; max-width: 54px !important; }
  .logo-grid-item[alt="Universal Music Group"] { width: 66px !important; max-width: 66px !important; }
  .logo-grid-item[alt="Warner Music Group"] { width: 60px !important; max-width: 60px !important; }


  #hpFanRow,
  #hpCampRow,
  #hpEvRow {
    gap: 16px !important;
    padding: 28px 0 !important;
  }

  #hpFanRow span[style*="font-size:64px"],
  #hpCampRow span[style*="font-size:64px"],
  #hpEvRow span[style*="font-size:64px"],
  #sound-seeding span[style*="font-size:64px"] {
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }

  #hpFanRow h3,
  #hpCampRow h3,
  #hpEvRow h3,
  #sound-seeding h3 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  #hpFanRow p,
  #hpCampRow p,
  #hpEvRow p,
  #sound-seeding p {
    font-size: 0.8125rem !important;
  }

  #hpFanRow h2,
  #hpCampRow h2,
  #hpEvRow h2 {
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
  }

  #hpFanRow [style*="border-radius:24px"],
  #hpCampRow [style*="border-radius:24px"],
  #hpEvRow [style*="border-radius:24px"] {
    padding: 12px 10px !important;
  }

  #hpFanRow [style*="height:289px"],
  #hpCampRow [style*="height:289px"],
  #hpEvRow [style*="height:289px"] {
    height: 120px !important;
  }

  #sound-seeding {
    padding: 28px 0 !important;
  }


  #hpFanRow > div[style*="width:62%"],
  #hpCampRow > div[style*="width:62%"],
  #hpEvRow > div[style*="width:62%"] {
    display: none !important;
  }

  #hpFanRow,
  #hpCampRow,
  #hpEvRow {
    padding: 20px 0 !important;
    gap: 0 !important;
  }


  #hpFanRow ul,
  #hpCampRow ul,
  #hpEvRow ul,
  #sound-seeding ul {
    display: none !important;
  }

  #hpFanRow a,
  #hpCampRow a,
  #hpEvRow a,
  #sound-seeding a {
    margin-top: 8px !important;
  }

  #hpFanRow p,
  #hpCampRow p,
  #hpEvRow p,
  #sound-seeding p {
    margin-bottom: 8px !important;
  }


  #sound-seeding {
    align-items: flex-start !important;
    text-align: left !important;
  }
}


/* Phone Home: designed Fan Pages card */
.hp-proof { display: none; }
@media (max-width: 768px), (min-width: 769px) {
  #hpFanRow > div[style*="width:38%"] > h3,
  #hpFanRow > div[style*="width:38%"] > p {
    display: none !important;
  }

  .hp-proof--fan {
    display: block;
    margin: 8px 0 12px;
  }

  .hp-stage {
    position: relative;
    background: #f6f7fb;
    border-radius: 32px;
    border: 1px solid #e4e7ee;
    padding: 28px 22px 0;
    overflow: hidden;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.9) inset,
      0 18px 40px rgba(0,0,0,0.28);
  }

  .hp-stage-copy h3 {
    display: block !important;
    color: #111827 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em;
    margin: 0 0 10px !important;
    font-family: Manrope, sans-serif !important;
  }

  .hp-stage-copy p {
    display: block !important;
    color: #6b7280 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    font-family: Manrope, sans-serif !important;
  }

  .hp-stage-collage {
    position: relative;
    height: 250px;
    margin: 32px -22px 0;
  }

  .hp-drawn-lines {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 132px;
    display: block;
  }

  .hp-mini {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
    padding: 12px 14px 10px;
  }

  .hp-mini p {
    display: block !important;
    margin: 0 0 10px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #9aa1ad !important;
    font-family: Manrope, sans-serif !important;
    white-space: nowrap;
  }

  .hp-mini-age {
    left: -16%;
    top: 0;
    width: 72%;
    height: 164px;
  }

  .hp-age-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 112px;
    gap: 8px;
  }

  .hp-age-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }

  .hp-age-bars {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
  }

  .hp-bar {
    width: 7px;
    border-radius: 99px;
    display: block;
  }

  .hp-bar-m {
    background: linear-gradient(180deg, #3b6bff 0%, #d7e3ff 100%);
  }

  .hp-bar-f {
    background: linear-gradient(180deg, #f4707f 0%, #fde4e7 100%);
  }

  .hp-age-col em {
    margin-top: 6px;
    font-style: normal;
    font-size: 8px;
    color: #9aa1ad;
    font-family: Manrope, sans-serif;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .hp-mini-loc {
    right: -20%;
    top: 78px;
    width: 54%;
    padding-right: 28px;
  }

  #hpFanRow .hp-mini-loc ul {
    display: block !important;
    list-style: none;
    margin: 0 !important;
    padding: 0;
  }

  #hpFanRow .hp-mini-loc li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 12px;
    color: #4b5563;
    font-family: Manrope, sans-serif;
    border-top: 1px solid #f1f3f7;
    white-space: nowrap;
  }

  #hpFanRow .hp-mini-loc li:first-child { border-top: 0; padding-top: 0; }
  .hp-mini-loc li span { font-size: 13px; line-height: 1; }
}


/* Phone Home: light services band, no 01–04 */
@media (max-width: 768px), (min-width: 769px) {
  .hp-services {
    background: #f6f7fb;
    padding: 48px 0 36px !important;
  }

  .hp-services .section-header h2,
  .hp-services h2 {
    color: #111827 !important;
  }

  .hp-services .label-tag {
    color: #5172FF !important;
  }

  #hpFanRow span[style*="font-size:64px"],
  #hpCampRow span[style*="font-size:64px"],
  #hpEvRow span[style*="font-size:64px"],
  #sound-seeding span[style*="font-size:64px"] {
    display: none !important;
  }

  .hp-services #hpCampRow h3,
  .hp-services #hpEvRow h3,
  .hp-services #sound-seeding h3 {
    color: #111827 !important;
  }

  .hp-services #hpCampRow p,
  .hp-services #hpEvRow p,
  .hp-services #sound-seeding p {
    color: #6b7280 !important;
  }

  .hp-stage {
    background: #f6f7fb;
    border: 1px solid #e5e7ee;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  }
}


/* Phone Home: Campaigns designed card */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow > div[style*="width:38%"] > h3,
  #hpCampRow > div[style*="width:38%"] > p {
    display: none !important;
  }

  .hp-proof--camp {
    display: block;
    margin: 8px 0 12px;
  }

  .hp-create-chart .hp-bar {
    width: 10px;
  }

  .hp-av {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e8ebf4;
    color: #3b6bff;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: Manrope, sans-serif;
  }
}


/* Phone Home: Campaigns trend list */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage {
    padding-bottom: 18px;
  }

  .hp-trend {
    margin: 22px -6px 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .hp-trend-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(90deg, #e85d8a 0%, #9b6bff 42%, #f6f7fb 100%);
  }

  .hp-trend-head img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .hp-trend-tt {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .hp-trend-head-copy {
    min-width: 0;
  }

  .hp-trend-head-copy strong,
  .hp-trend-head-copy span {
    display: block;
    color: #fff !important;
    font-family: Manrope, sans-serif !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hp-trend-head-copy strong {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 0 !important;
  }

  .hp-trend-head-copy span {
    font-size: 11px !important;
    font-weight: 500 !important;
    opacity: 0.9;
    margin: 2px 0 0 !important;
  }

  #hpFanRow .hp-trend-list,
  #hpCampRow .hp-trend-list {
    display: block !important;
    list-style: none;
    margin: 0 !important;
    padding: 6px 14px 12px;
    background: #fff;
  }

  #hpCampRow .hp-trend-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #f1f3f7;
  }

  #hpCampRow .hp-trend-list li:first-child {
    border-top: 0;
    padding-top: 8px;
  }

  .hp-trend-list img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .hp-trend-list strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    font-family: Manrope, sans-serif;
  }

  .hp-trend-user {
    display: block;
    font-size: 11px;
    color: #6b7280;
    font-family: Manrope, sans-serif;
    margin-top: 1px;
  }

  #hpCampRow .hp-trend-list p {
    display: block !important;
    margin: 5px 0 0 !important;
    font-size: 11px !important;
    color: #9aa1ad !important;
    font-family: Manrope, sans-serif !important;
    line-height: 1.3 !important;
  }
}


@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage { padding-bottom: 0; }
  .hp-trend-list {
    max-height: 248px;
    overflow: hidden;
    position: relative;
  }
  .hp-trend::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 80%);
    pointer-events: none;
    border-radius: 0 0 18px 18px;
  }
  .hp-trend { position: relative; }
}


/* Phone Campaigns: cobrand trend card */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage { padding: 28px 18px 0; }
  .hp-trend {
    margin: 20px -4px 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15,23,42,0.08);
    position: relative;
  }
  .hp-trend-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 12px 2px;
    padding: 12px;
    min-height: 68px;
    border-radius: 14px;
    overflow: hidden;
  }
  .hp-trend-blur {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hp-trend-cover {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid #fff;
    object-fit: cover;
    flex-shrink: 0;
  }
  .hp-trend-head-copy { position: relative; z-index: 1; min-width: 0; }
  .hp-trend-head-copy strong {
    display: flex !important;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-family: Manrope, sans-serif !important;
    white-space: nowrap;
  }
  .hp-trend-tt { width: 13px; height: 13px; flex-shrink: 0; }
  .hp-trend-head-copy span {
    display: block !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    opacity: 0.92;
    margin: 2px 0 0 !important;
    font-family: Manrope, sans-serif !important;
  }

  #hpCampRow .hp-trend-list {
    display: block !important;
    list-style: none;
    margin: 0 !important;
    padding: 4px 14px 10px;
    max-height: 268px;
    overflow: hidden;
  }
  #hpCampRow .hp-trend-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid #eef0f4;
  }
  #hpCampRow .hp-trend-list li:first-child { border-top: 0; }

  .hp-still {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: visible;
    flex-shrink: 0;
    position: relative;
  }
  .hp-still img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 18px rgba(232, 93, 138, 0.38);
  }

  .hp-trend-list strong {
    display: flex !important;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    font-family: Manrope, sans-serif;
  }
  .hp-tick { width: 13px; height: 13px; flex-shrink: 0; }

  #hpCampRow .hp-mets,
  #hpCampRow .hp-trend-list p {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin: 4px 0 0 !important;
    font-size: 11px !important;
    color: #8b93a1 !important;
    font-family: Manrope, sans-serif !important;
    line-height: 1 !important;
  }
  .hp-mets span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .hp-mets svg { width: 10px; height: 10px; }

  .hp-trend::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 52px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 78%);
    pointer-events: none;
    border-radius: 0 0 18px 18px;
  }
}


/* Phone Campaigns: song card sits on the list, list bottom-right */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage {
    padding: 28px 18px 0;
    overflow: hidden;
  }

  .hp-trend {
    position: relative;
    margin: 22px -18px 0 10px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
  }

  .hp-trend-head {
    position: absolute;
    left: -14px;
    right: 0;
    top: 0;
    z-index: 3;
    margin: 0;
    min-height: 86px;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  }

  .hp-trend-cover {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 2.5px solid #fff;
  }

  .hp-trend-head-copy strong {
    font-size: 15px !important;
  }

  .hp-trend-tt { width: 15px; height: 15px; }

  .hp-trend-head-copy span {
    font-size: 12px !important;
  }

  #hpCampRow .hp-trend-list {
    margin: 52px 0 0 18px !important;
    padding: 46px 16px 24px !important;
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
    max-height: 300px;
  }

  .hp-trend::after {
    height: 72px;
    background: linear-gradient(180deg, rgba(246,247,251,0), #f6f7fb 82%);
    border-radius: 0;
  }
}


/* Phone Campaigns: closer cobrand stack */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage {
    padding: 26px 18px 0;
    overflow: hidden;
  }

  .hp-trend {
    position: relative;
    margin: 28px -18px -2px 0;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible;
    min-height: 320px;
  }

  .hp-trend-head {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 4;
    margin: 0 !important;
    min-height: 96px;
    padding: 16px 18px !important;
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.32);
  }

  .hp-trend-cover {
    width: 64px !important;
    height: 64px !important;
    border-radius: 12px !important;
    border: 3px solid #fff !important;
  }

  .hp-trend-head-copy strong {
    font-size: 16px !important;
  }
  .hp-trend-tt { width: 16px !important; height: 16px !important; }
  .hp-trend-head-copy span { font-size: 13px !important; }

  #hpCampRow .hp-trend-list {
    margin: 58px 0 0 36px !important;
    padding: 52px 14px 28px 14px !important;
    background: #fff;
    border-radius: 20px 0 0 0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    max-height: 310px !important;
  }

  .hp-still,
  .hp-still img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 13px !important;
  }
  .hp-still img {
    box-shadow: 0 10px 22px rgba(232, 93, 138, 0.42) !important;
  }

  .hp-trend::after {
    height: 90px;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 70%);
  }
}


/* Phone Campaigns: album-colour banner, no white cover frame */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend-head {
    background: #141018;
    overflow: hidden;
  }
  .hp-trend-blur {
    opacity: 1;
    filter: none;
  }
  .hp-trend-cover {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
  }
}


/* Phone Campaigns: 2 full rows + half fade, like cobrand */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow .hp-trend-list {
    max-height: 232px !important;
    padding-bottom: 8px !important;
  }
  .hp-trend::after {
    height: 78px;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 62%);
  }
}


/* Phone Campaigns: one card like cobrand — blur fills the bar, 2.5 rows */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage {
    padding: 26px 18px 0 !important;
    overflow: hidden !important;
  }

  .hp-trend {
    position: relative !important;
    margin: 18px 0 0 !important;
    min-height: 0 !important;
    background: #fff !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10) !important;
    overflow: hidden !important;
  }

  .hp-trend-head {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    min-height: 88px !important;
    padding: 14px 14px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #1a1410 !important;
    overflow: hidden !important;
  }

  .hp-trend-head img.hp-trend-blur,
  .hp-trend-blur {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border: 0 !important;
    border-radius: 0 !important;
    z-index: 0 !important;
  }

  .hp-trend-cover {
    position: relative !important;
    z-index: 1 !important;
    width: 56px !important;
    height: 56px !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
  }

  .hp-trend-head-copy { position: relative; z-index: 1; }

  #hpCampRow .hp-trend-list {
    display: block !important;
    margin: 0 !important;
    padding: 2px 14px 0 !important;
    max-height: 178px !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  #hpCampRow .hp-trend-list li {
    padding: 10px 0 !important;
  }

  .hp-still,
  .hp-still img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .hp-trend::after {
    height: 52px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 55%, #f6f7fb 100%) !important;
    border-radius: 0 !important;
  }
}


/* Phone Campaigns: cobrand stack — song floats on list, bleeds right */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage {
    padding: 26px 18px 0 !important;
    overflow: hidden !important;
  }

  .hp-trend {
    position: relative !important;
    margin: 22px -18px -2px 0 !important;
    min-height: 268px !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .hp-trend-head {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 4 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    min-height: 88px !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.30) !important;
    background: #1a1410 !important;
    overflow: hidden !important;
  }

  .hp-trend-head img.hp-trend-blur,
  .hp-trend-blur {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border: 0 !important;
    border-radius: 0 !important;
    z-index: 0 !important;
  }

  .hp-trend-cover {
    position: relative !important;
    z-index: 1 !important;
    width: 56px !important;
    height: 56px !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
  }

  .hp-trend-head-copy { position: relative; z-index: 1; }

  #hpCampRow .hp-trend-list {
    display: block !important;
    margin: 58px 0 0 36px !important;
    padding: 38px 16px 0 !important;
    max-height: 210px !important;
    background: #fff !important;
    border-radius: 18px 0 0 0 !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10) !important;
    overflow: hidden !important;
  }

  #hpCampRow .hp-trend-list li {
    padding: 10px 0 !important;
  }

  .hp-still,
  .hp-still img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .hp-trend::after {
    content: "" !important;
    position: absolute !important;
    left: 0; right: 0; bottom: 0;
    height: 72px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 68%) !important;
    pointer-events: none;
    z-index: 5;
    border-radius: 0 !important;
  }
}


/* Phone Campaigns: real album blur fills the bar; 3rd row keeps name + stats */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend-head {
    background: #1a1410 !important;
  }

  .hp-trend-head img {
    width: auto;
    height: auto;
  }

  .hp-trend-head img.hp-trend-blur,
  .hp-trend-blur {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    border: 0 !important;
    border-radius: 0 !important;
    z-index: 0 !important;
  }

  .hp-trend-cover {
    width: 56px !important;
    height: 56px !important;
    border: 0 !important;
  }

  #hpCampRow .hp-trend-list {
    display: block !important;
    max-height: 268px !important;
    padding-top: 38px !important;
  }

  .hp-trend::after {
    height: 48px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 78%) !important;
  }
}


/* Phone Campaigns: drop the list so @bellehassan is fully clear of the song card */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow .hp-trend-list {
    margin-top: 78px !important;
    padding-top: 24px !important;
    max-height: 280px !important;
  }
}


/* Phone Campaigns: song+list right, matching edge fade, graphic up, extra row */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage {
    padding: 22px 18px 0 !important;
  }

  .hp-proof--camp .hp-stage-copy {
    margin-bottom: 0 !important;
  }

  .hp-trend {
    margin: 6px -18px -2px 28px !important;
    min-height: 310px !important;
  }

  .hp-trend-head {
    left: 0 !important;
    right: 0 !important;
  }

  #hpCampRow .hp-trend-list {
    margin: 78px 0 0 0 !important;
    padding-top: 24px !important;
    max-height: 320px !important;
  }

  .hp-trend::before {
    content: "" !important;
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, #f6f7fb 80%);
    pointer-events: none;
    z-index: 6;
  }

  .hp-trend::after {
    height: 56px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 80%) !important;
    z-index: 6;
  }
}


/* Phone Campaigns: undo v26 wash. Song only right, graphic up, one more row */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend {
    margin: 8px -18px -2px 0 !important;
  }

  .hp-trend-head {
    left: 32px !important;
    right: 0 !important;
  }

  .hp-trend-head::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 56px;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, #f6f7fb 80%);
    pointer-events: none;
    z-index: 3;
  }

  .hp-trend::before {
    display: none !important;
  }

  #hpCampRow .hp-trend-list {
    margin: 78px 0 0 36px !important;
    padding-top: 24px !important;
    max-height: 310px !important;
  }

  .hp-trend::after {
    height: 56px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 80%) !important;
  }
}


/* Phone Campaigns: smaller card, song less right, weaker fade */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend {
    margin: 8px -12px -2px 0 !important;
    min-height: 268px !important;
  }

  .hp-trend-head {
    left: 12px !important;
    right: 0 !important;
  }

  .hp-trend-head::after {
    width: 36px;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.55) 100%);
  }

  #hpCampRow .hp-trend-list {
    margin: 78px 0 0 36px !important;
    max-height: 268px !important;
  }

  .hp-trend::after {
    height: 40px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.55) 100%) !important;
  }
}


/* Phone Campaigns: close the gap under the one-line sub */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage-copy {
    margin: 0 !important;
    padding: 0 !important;
  }
  .hp-proof--camp .hp-stage-copy p {
    margin: 0 !important;
  }
  .hp-trend {
    margin-top: 0 !important;
  }
}


/* Phone Campaigns: graphic flush to the card's right edge, soft bleed */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage {
    overflow: hidden !important;
  }

  .hp-trend {
    margin-right: -18px !important;
  }

  .hp-trend-head {
    right: 0 !important;
  }

  #hpCampRow .hp-trend-list {
    margin-right: 0 !important;
  }

  .hp-trend::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.4) 100%);
    pointer-events: none;
    z-index: 6;
  }
}


/* Phone Campaigns: song bar square on the right so it meets the card edge */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend-head {
    border-radius: 16px 0 0 16px !important;
    right: 0 !important;
  }
}


/* Phone Campaigns: slightly stronger right + bottom bleed */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend-head::after {
    width: 48px;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.7) 100%);
  }

  .hp-trend::before {
    width: 52px !important;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.7) 100%) !important;
  }

  .hp-trend::after {
    height: 56px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.7) 100%) !important;
  }
}


/* Phone Campaigns: pull graphic up under the one-line sub */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--camp .hp-stage-copy p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .hp-trend {
    margin-top: -14px !important;
  }
}


/* Phone Campaigns: yank song+list up under the sub line */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend {
    margin-top: 0 !important;
  }
  .hp-trend-head {
    top: -32px !important;
  }
  #hpCampRow .hp-trend-list {
    margin-top: 46px !important;
  }
}


/* Phone Campaigns: longer, slower edge fade like cobrand */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend-head::after {
    width: 88px;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.12) 35%, rgba(246,247,251,0.4) 65%, rgba(246,247,251,0.88) 100%);
  }

  .hp-trend::before {
    width: 88px !important;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.12) 35%, rgba(246,247,251,0.4) 65%, rgba(246,247,251,0.88) 100%) !important;
  }

  .hp-trend::after {
    height: 96px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.12) 35%, rgba(246,247,251,0.4) 65%, rgba(246,247,251,0.88) 100%) !important;
  }
}


/* Phone Campaigns: kill the top-right seam */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend-head::after {
    display: none !important;
  }

  #hpCampRow .hp-trend-list {
    margin-top: 36px !important;
    padding-top: 40px !important;
  }
}


/* Phone Campaigns: one right fade covering the pulled-up song bar + list */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend-head::after {
    display: none !important;
  }

  .hp-trend::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    top: -40px !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 88px !important;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.12) 35%, rgba(246,247,251,0.4) 65%, rgba(246,247,251,0.88) 100%) !important;
    pointer-events: none;
    z-index: 10 !important;
  }
}


/* Phone Campaigns: same 32px text-to-graphic gap as Fan Pages */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend {
    margin-top: 32px !important;
  }
  .hp-trend-head {
    top: 0 !important;
  }
  #hpCampRow .hp-trend-list {
    margin-top: 68px !important;
  }
  .hp-trend::before {
    top: 0 !important;
  }
}


/* Phone Campaigns: tighter than Fan Pages 32px */
@media (max-width: 768px), (min-width: 769px) {
  .hp-trend {
    margin-top: 14px !important;
  }
}


/* Phone Campaigns: break the gap lock — highest specificity */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow .hp-proof--camp .hp-stage-copy,
  #hpCampRow .hp-proof--camp .hp-stage-copy h3,
  #hpCampRow .hp-proof--camp .hp-stage-copy p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  #hpCampRow .hp-proof--camp .hp-trend {
    margin-top: 8px !important;
    padding-top: 0 !important;
  }
  #hpCampRow .hp-proof--camp .hp-trend-head {
    top: 0 !important;
    margin-top: 0 !important;
  }
}


/* Phone Campaigns: move the bar with top, not wrapper margin */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow .hp-trend {
    position: relative !important;
    margin-top: 0 !important;
  }
  #hpCampRow .hp-trend-head {
    position: absolute !important;
    top: -16px !important;
  }
  #hpCampRow .hp-trend-list {
    margin-top: 52px !important;
  }
  #hpCampRow .hp-trend::before {
    top: -16px !important;
  }
}


/* Phone Campaigns: a little more down */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow .hp-trend-head {
    top: -8px !important;
  }
  #hpCampRow .hp-trend-list {
    margin-top: 60px !important;
  }
  #hpCampRow .hp-trend::before {
    top: -8px !important;
  }
}


/* Phone Campaigns: up, not down */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow .hp-trend-head {
    top: -24px !important;
  }
  #hpCampRow .hp-trend-list {
    margin-top: 44px !important;
  }
  #hpCampRow .hp-trend::before {
    top: -24px !important;
  }
}


/* Phone Home: Live Activations designed card — two overlapping phones */
@media (max-width: 768px), (min-width: 769px) {
  #hpEvRow > div[style*="width:38%"] > h3,
  #hpEvRow > div[style*="width:38%"] > p {
    display: none !important;
  }

  .hp-proof--live {
    display: block;
    margin: 8px 0 12px;
  }

  .hp-proof--live .hp-stage {
    padding: 28px 18px 0;
    overflow: hidden;
  }

  #hpEvRow .hp-proof--live .hp-phones {
    position: relative;
    height: 280px;
    margin: 20px -18px 0;
  }

  #hpEvRow .hp-proof--live .hp-phones::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background-image:
      linear-gradient(90deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.12) 35%, rgba(246,247,251,0.4) 65%, #f6f7fb 100%),
      linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.12) 35%, rgba(246,247,251,0.4) 65%, #f6f7fb 100%);
    background-repeat: no-repeat;
    background-size: 110px 100%, 100% 120px;
    background-position: right top, left bottom;
  }

  #hpEvRow .hp-proof--live .hp-phone {
    position: absolute;
    width: 164px;
    height: 336px;
    background: #111;
    padding: 8px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    box-sizing: border-box;
  }

  #hpEvRow .hp-proof--live .hp-phone img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
  }

  #hpEvRow .hp-proof--live .hp-phone--back {
    left: -26px;
    bottom: -86px;
    transform: rotate(-4deg);
    z-index: 1;
  }

  #hpEvRow .hp-proof--live .hp-phone--front {
    left: 78px;
    right: auto;
    bottom: -28px;
    transform: rotate(3deg);
    z-index: 2;
  }

  #hpEvRow #homepage-events-chart,
  #hpEvRow #hpEvPills {
    display: none !important;
  }
}


/* Phone: pin Campaigns album blur to the song bar; hide Live desktop chart */
@media (max-width: 768px), (min-width: 769px) {
  .hp-desk-only,
  #hpEvRow #homepage-events-chart,
  #hpEvRow #hpEvPills {
    display: none !important;
  }
  #hpCampRow .hp-trend-head {
    height: 88px !important;
    max-height: 88px !important;
    overflow: hidden !important;
  }
  #hpCampRow img.hp-trend-blur {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 88px !important;
    max-height: 88px !important;
    object-fit: cover !important;
  }
  #hpCampRow .hp-proof--camp,
  #hpCampRow .hp-proof--camp .hp-stage {
    overflow: hidden !important;
    contain: paint;
  }
}


/* Phone Live card must stay visible — do not use last-child hides on #hpEvRow */
@media (max-width: 768px), (min-width: 769px) {
  #hpEvRow .hp-proof--live,
  #hpEvRow .hp-proof--live .hp-stage,
  #hpEvRow .hp-phones {
    display: block !important;
  }
}


/* Phone Live: cobrand stack — centred pair, no tilt, bottom fade only */
@media (max-width: 768px), (min-width: 769px) {
  #hpEvRow .hp-proof--live .hp-stage {
    padding: 28px 20px 0 !important;
    overflow: hidden !important;
    text-align: center;
  }
  #hpEvRow .hp-proof--live .hp-stage-copy,
  #hpEvRow .hp-proof--live .hp-stage-copy h3,
  #hpEvRow .hp-proof--live .hp-stage-copy p {
    text-align: center !important;
  }
  #hpEvRow .hp-proof--live .hp-phones {
    position: relative !important;
    display: block !important;
    height: 300px !important;
    width: 100% !important;
    margin: 28px 0 0 !important;
  }
  #hpEvRow .hp-proof--live .hp-phones::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    height: 140px !important;
    z-index: 4 !important;
    pointer-events: none !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.2) 38%, rgba(246,247,251,0.75) 72%, #f6f7fb 100%) !important;
    background-image: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.2) 38%, rgba(246,247,251,0.75) 72%, #f6f7fb 100%) !important;
    background-size: 100% 100% !important;
    background-position: left bottom !important;
  }
  #hpEvRow .hp-proof--live .hp-phone {
    width: 150px !important;
    height: 308px !important;
    padding: 7px !important;
    border-radius: 26px !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22) !important;
  }
  #hpEvRow .hp-proof--live .hp-phone--back {
    left: 50% !important;
    right: auto !important;
    top: 40px !important;
    bottom: auto !important;
    margin-left: -142px !important;
    transform: none !important;
    z-index: 1 !important;
  }
  #hpEvRow .hp-proof--live .hp-phone--front {
    left: 50% !important;
    right: auto !important;
    top: 10px !important;
    bottom: auto !important;
    margin-left: -18px !important;
    transform: none !important;
    z-index: 2 !important;
  }
}


/* Phone Live: two separate iPhone 15 Pro frames, Dynamic Island */
@media (max-width: 768px), (min-width: 769px) {
  #hpEvRow .hp-proof--live .hp-phones {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    gap: 14px !important;
    height: 310px !important;
    width: 100% !important;
    margin: 28px 0 0 !important;
    position: relative !important;
  }
  #hpEvRow .hp-proof--live .hp-phones::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    height: 120px !important;
    z-index: 5 !important;
    pointer-events: none !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.18) 36%, rgba(246,247,251,0.78) 74%, #f6f7fb 100%) !important;
    background-image: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.18) 36%, rgba(246,247,251,0.78) 74%, #f6f7fb 100%) !important;
    background-size: 100% 100% !important;
  }
  #hpEvRow .hp-proof--live .hp-phone {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    transform: none !important;
    width: 142px !important;
    height: 292px !important;
    padding: 6px !important;
    border-radius: 34px !important;
    background: #1d1d1f !important;
    box-shadow:
      0 0 0 1px #3a3a3c,
      0 16px 32px rgba(15, 23, 42, 0.22) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    flex: 0 0 142px !important;
  }
  #hpEvRow .hp-proof--live .hp-phone--back {
    margin-bottom: 0 !important;
    z-index: 1 !important;
  }
  #hpEvRow .hp-proof--live .hp-phone--front {
    margin-bottom: 22px !important;
    z-index: 2 !important;
  }
  #hpEvRow .hp-proof--live .hp-phone img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 28px !important;
  }
  #hpEvRow .hp-proof--live .hp-island {
    position: absolute !important;
    top: 11px !important;
    left: 50% !important;
    width: 54px !important;
    height: 16px !important;
    margin-left: -27px !important;
    background: #000 !important;
    border-radius: 20px !important;
    z-index: 6 !important;
    box-shadow: inset 0 0 0 1px #111 !important;
  }
  #hpEvRow .hp-proof--live .hp-island::after {
    content: "" !important;
    position: absolute !important;
    top: 4px !important;
    right: 7px !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #1a1a1c !important;
    box-shadow: inset 0 0 0 1.5px #2a2a2e !important;
  }
}


/* Phone Live: stills fill the iPhone 15 Pro screen */
@media (max-width: 768px), (min-width: 769px) {
  #hpEvRow .hp-proof--live .hp-phone {
    position: relative !important;
    overflow: hidden !important;
  }
  #hpEvRow .hp-proof--live .hp-phone img {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    width: calc(100% - 12px) !important;
    height: calc(100% - 12px) !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 28px !important;
  }
}


/* Phone Live: Canva iPhone mockup, background already cut */
@media (max-width: 768px), (min-width: 769px) {
  #hpEvRow .hp-proof--live .hp-phones {
    display: block !important;
    position: relative !important;
    height: 390px !important;
    margin: 52px -8px 0 !important;
    overflow: hidden !important;
  }
  #hpEvRow .hp-proof--live .hp-phones::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    height: 90px !important;
    z-index: 3 !important;
    pointer-events: none !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.25) 40%, #f6f7fb 100%) !important;
    background-image: linear-gradient(180deg, rgba(246,247,251,0) 0%, rgba(246,247,251,0.25) 40%, #f6f7fb 100%) !important;
  }
  #hpEvRow .hp-proof--live .hp-canva-phone {
    display: block !important;
    width: 94% !important;
    max-width: 360px !important;
    height: auto !important;
    margin: 36px auto 0 !important;
    position: relative !important;
    inset: auto !important;
    border-radius: 0 !important;
    object-fit: contain !important;
    background: none !important;
    box-shadow: none !important;
  }
  #hpEvRow .hp-proof--live .hp-phone,
  #hpEvRow .hp-proof--live .hp-island {
    display: none !important;
  }
}


/* Phone Home: Fan / Campaigns / Live cards same size */
@media (max-width: 768px), (min-width: 769px) {
  .hp-proof--fan .hp-stage,
  .hp-proof--camp .hp-stage,
  .hp-proof--live .hp-stage {
    height: 410px !important;
    min-height: 410px !important;
    max-height: 410px !important;
    box-sizing: border-box !important;
  }
  #hpEvRow .hp-proof--live .hp-stage {
    display: flex !important;
    flex-direction: column !important;
  }
  #hpEvRow .hp-proof--live .hp-phones {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 16px -8px 0 !important;
  }
  #hpEvRow .hp-proof--live .hp-canva-phone {
    /* fill is set in the final Live block — do not constrain width here */
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}


/* Phone Home: all service cards same box */
@media (max-width: 768px), (min-width: 769px) {
  #hpFanRow,
  #hpCampRow,
  #hpEvRow {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
  }
  #hpFanRow > div[style*="width:38%"],
  #hpCampRow > div[style*="width:38%"],
  #hpEvRow > div[style*="width:38%"] {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
  #hpFanRow .hp-proof--fan,
  #hpCampRow .hp-proof--camp,
  #hpEvRow .hp-proof--live {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 8px 0 12px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
  }
  #hpFanRow .hp-proof--fan .hp-stage,
  #hpCampRow .hp-proof--camp .hp-stage,
  #hpEvRow .hp-proof--live .hp-stage {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 410px !important;
    min-height: 410px !important;
    max-height: 410px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-radius: 32px !important;
    align-self: stretch !important;
  }
  #hpEvRow .hp-proof--live .hp-phones {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}


/* Phone Campaigns: same width as before; fill card height; bottom clipped to card corners */
@media (max-width: 768px), (min-width: 769px) {
  #hpCampRow .hp-proof--camp {
    overflow: hidden !important;
    border-radius: 32px !important;
  }
  #hpCampRow .hp-proof--camp .hp-stage {
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 18px 0 !important;
    overflow: hidden !important;
    border-radius: 32px !important;
    isolation: isolate !important;
  }
  #hpCampRow .hp-proof--camp .hp-trend {
    flex: 1 1 auto !important;
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin-top: 36px !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
    margin-bottom: 0 !important;
    border-radius: 18px 0 32px 32px !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }
  #hpCampRow .hp-trend-list {
    display: block !important;
    max-height: none !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    padding-bottom: 56px !important;
  }
  #hpCampRow .hp-trend::after {
    border-radius: 0 0 32px 32px !important;
  }
}

/* Phone Home: Sound Seeding Prospa catalog card */
@media (max-width: 768px), (min-width: 769px) {
  #sound-seeding {
    width: 100% !important;
    max-width: 100% !important;
    align-items: stretch !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }
  #sound-seeding > span[style*="font-size:64px"],
  #sound-seeding > h3,
  #sound-seeding > p {
    display: none !important;
  }
  #sound-seeding .hp-proof--seed {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 8px 0 12px !important;
  }
  #sound-seeding .hp-proof--seed .hp-stage {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 410px !important;
    min-height: 410px !important;
    max-height: 410px !important;
    padding: 32px 24px 0 !important;
    overflow: hidden !important;
    border-radius: 32px !important;
    box-sizing: border-box !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10) !important;
  }
  #sound-seeding .hp-proof--seed .hp-stage-copy {
    text-align: left !important;
  }
  #sound-seeding .hp-catalog {
    flex: 1 1 auto !important;
    position: relative !important;
    min-height: 0 !important;
    margin: 28px -24px 0 16px !important;
    overflow: hidden !important;
    background: #fff !important;
    border-radius: 16px 0 0 0 !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12) !important;
  }
  #sound-seeding .hp-catalog-shot {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: top left !important;
  }
  #sound-seeding .hp-catalog::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 56px !important;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, #f6f7fb 88%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }
  #sound-seeding .hp-catalog::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 80px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 88%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }
}


/* Phone Fan: same right bleed + fade as Seeding */
@media (max-width: 768px), (min-width: 769px) {
  #hpFanRow .hp-proof--fan .hp-stage {
    display: flex !important;
    flex-direction: column !important;
  }
  #hpFanRow .hp-stage-collage {
    flex: 1 1 auto !important;
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 24px -22px 0 0 !important;
    overflow: hidden !important;
  }
  #hpFanRow .hp-mini-age {
    left: 0 !important;
  }
  #hpFanRow .hp-stage-collage::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 56px !important;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, #f6f7fb 88%) !important;
    pointer-events: none !important;
    z-index: 6 !important;
  }
  #hpFanRow .hp-stage-collage::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 80px !important;
    background: linear-gradient(180deg, rgba(246,247,251,0) 0%, #f6f7fb 88%) !important;
    pointer-events: none !important;
    z-index: 6 !important;
  }
  #hpFanRow .hp-mini-loc {
    right: -28% !important;
  }
}



/* Desktop Home: same designed cards as phone, bigger, no graphs */
@media (min-width: 769px) {
  .hp-desk-only,
  #hpFanChartCol, #hpCampChartCol, #hpEvChartCol,
  #homepage-fan-chart, #homepage-campaign-chart, #homepage-events-chart,
  #hpFanPills, #hpCampPills, #hpEvPills {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  .hp-services {
    padding: 88px 0 72px !important;
  }
  #hpFanRow,
  #hpCampRow,
  #hpEvRow,
  #sound-seeding {
    padding: 36px 0 !important;
  }
  #hpFanRow > div[style*="width:38%"],
  #hpCampRow > div[style*="width:38%"],
  #hpEvRow > div[style*="width:38%"],
  #sound-seeding {
    width: 100% !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #hpFanRow .hp-proof--fan .hp-stage,
  #hpCampRow .hp-proof--camp .hp-stage,
  #hpEvRow .hp-proof--live .hp-stage,
  #sound-seeding .hp-proof--seed .hp-stage {
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
  }
  #hpEvRow .hp-proof--live .hp-canva-phone {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

/* Desktop Services: open on click / keyboard as well as hover. Button, not a dead # */
.nav-links .dropdown-toggle {
  color: #FAFBFF;
  font-weight: 500;
  font-size: 0.9375rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  line-height: inherit;
}
.nav-links .dropdown-toggle:hover {
  color: #5172FF;
}
.nav-dropdown.open .dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown.open .dropdown-toggle::after,
.nav-dropdown:focus-within .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Home hero artist tiles are decoration, not links */
.hero-art-link {
  cursor: default;
  pointer-events: none;
}


/* ==========================================================================
   Nav — clear on hero, floating pill on scroll (keep menu content)
   ========================================================================== */
nav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 18px 16px 0 !important;
}
nav.nav-scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}
.nav-container {
  transition: background 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease, padding 0.3s ease, max-width 0.3s ease;
}
nav.nav-scrolled .nav-container {
  background: #111318 !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 10px 20px !important;
  max-width: min(1200px, calc(100% - 24px)) !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 768px) {
  nav {
    padding: 10px 10px 0 !important;
  }
  nav.nav-scrolled .nav-container {
    padding: 8px 14px !important;
    max-width: calc(100% - 20px) !important;
  }
}


/* Desktop Home: ticks beside cards, alternating sides, readable on light band */
@media (min-width: 769px) {
  #hpFanRow > div[style*="width:38%"],
  #hpCampRow > div[style*="width:38%"],
  #hpEvRow > div[style*="width:38%"],
  #sound-seeding {
    display: grid !important;
    column-gap: 56px;
    row-gap: 16px;
    align-items: center;
    max-width: 1280px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #hpFanRow > div[style*="width:38%"],
  #hpCampRow > div[style*="width:38%"] {
    grid-template-columns: 720px minmax(240px, 1fr);
  }
  #sound-seeding,
  #hpEvRow > div[style*="width:38%"] {
    grid-template-columns: minmax(240px, 1fr) 720px;
  }

  #hpFanRow > div[style*="width:38%"] > ul.hp-ticks,
  #hpCampRow > div[style*="width:38%"] > ul.hp-ticks,
  #hpEvRow > div[style*="width:38%"] > ul.hp-ticks,
  #sound-seeding > ul.hp-ticks {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #hpFanRow > div[style*="width:38%"] > ul.hp-ticks li,
  #hpCampRow > div[style*="width:38%"] > ul.hp-ticks li,
  #hpEvRow > div[style*="width:38%"] > ul.hp-ticks li,
  #sound-seeding > ul.hp-ticks li {
    color: #374151 !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
  }
  #hpCampRow .hp-trend-list {
    display: block !important;
  }

  /* Fan + Campaigns: graphic left, ticks right */
  #hpFanRow .hp-proof--fan,
  #hpCampRow .hp-proof--camp {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
  #hpFanRow > div[style*="width:38%"] > ul.hp-ticks,
  #hpCampRow > div[style*="width:38%"] > ul.hp-ticks {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  #hpFanRow > div[style*="width:38%"] > a,
  #hpCampRow > div[style*="width:38%"] > a {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    align-self: start;
    margin-top: 8px !important;
  }

  /* Seeding + Live: ticks left, graphic right */
  #sound-seeding .hp-proof--seed,
  #hpEvRow .hp-proof--live {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
  #sound-seeding > ul.hp-ticks,
  #hpEvRow > div[style*="width:38%"] > ul.hp-ticks {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  #sound-seeding > a,
  #hpEvRow > div[style*="width:38%"] > a {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: start;
    margin-top: 8px !important;
  }

  #hpFanRow .hp-proof--fan,
  #hpCampRow .hp-proof--camp,
  #sound-seeding .hp-proof--seed,
  #hpEvRow .hp-proof--live,
  #hpFanRow .hp-proof--fan .hp-stage,
  #hpCampRow .hp-proof--camp .hp-stage,
  #sound-seeding .hp-proof--seed .hp-stage,
  #hpEvRow .hp-proof--live .hp-stage {
    width: 720px !important;
    max-width: 720px !important;
    min-width: 720px !important;
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
    box-sizing: border-box !important;
  }
}



/* Desktop Seeding: wide crop so two tracks show; window fills like Fan, bleed + fade right */
@media (min-width: 769px) {
  #sound-seeding .hp-catalog {
    margin: 28px -24px 0 16px !important;
    border-radius: 16px 0 0 0 !important;
    background: #fff !important;
  }
  #sound-seeding .hp-catalog picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }
  #sound-seeding .hp-catalog::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 56px !important;
    background: linear-gradient(90deg, rgba(246,247,251,0) 0%, #f6f7fb 88%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }
  #sound-seeding .hp-catalog-shot {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: top left !important;
  }
}


/* Live copy left-aligned like the other service cards */
@media (max-width: 768px), (min-width: 769px) {
  #hpEvRow .hp-proof--live .hp-stage-copy,
  #hpEvRow .hp-proof--live .hp-stage-copy h3,
  #hpEvRow .hp-proof--live .hp-stage-copy p {
    text-align: left !important;
  }
}

/* Live: two-phone drop-in. Cause of 390 side gaps was stage padding 20px
   + .hp-phones max-width:100% so the -20px bleed could not grow the box.
   Fix: no side padding on the stage; copy stays inset; img is 100% of the card. */
#hpEvRow .hp-proof--live .hp-stage {
  padding: 28px 0 0 !important;
}
#hpEvRow .hp-proof--live .hp-stage-copy,
#hpEvRow .hp-proof--live .hp-stage-copy h3,
#hpEvRow .hp-proof--live .hp-stage-copy p {
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}
#hpEvRow .hp-proof--live .hp-phones {
  display: block !important;
  overflow: hidden !important;
  flex: 1 1 auto !important;
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 12px 0 0 !important;
  position: relative !important;
  text-align: center !important;
  box-shadow: none !important;
}
#hpEvRow .hp-proof--live .hp-phones::before {
  display: none !important;
}
#hpEvRow .hp-proof--live .hp-canva-phone {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  position: relative !important;
  left: 0 !important;
  transform: scale(1.05) !important;
  transform-origin: center top !important;
  z-index: 1 !important;
  object-fit: cover !important;
  object-position: center top !important;
}


/* Home Learn More: real button + whole card is tappable */
.hp-proof {
  position: relative;
}
.hp-proof .hp-card-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
}
.hp-services a.hp-learn {
  display: flex !important;
  width: fit-content !important;
  margin-top: 8px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;
  justify-self: center !important;
  border-radius: 8px !important;
  text-decoration: none !important;
}
.hp-services a.hp-learn.btn-secondary {
  background: #1E2847 !important;
  color: #FFFFFF !important;
  border: none !important;
}
.hp-services a.hp-learn.btn-primary:hover {
  text-decoration: none !important;
}
.hp-services a.hp-learn.btn-secondary:hover {
  background: #131B3A !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .hp-services a.hp-learn {
    padding: 8px 16px !important;
    font-size: 0.8125rem !important;
    min-height: 40px;
  }
}
@media (max-width: 768px), (min-width: 769px) {
  #hpFanRow > div[style*="width:38%"],
  #hpCampRow > div[style*="width:38%"],
  #hpEvRow > div[style*="width:38%"],
  #sound-seeding {
    text-align: left !important;
  }
}


/* Header logo: slightly smaller on desktop and phone */
nav .nav-logo-img {
  height: 18px !important;
}
@media (max-width: 768px) {
  nav .nav-logo-img {
    height: 16px !important;
  }
}


/* Site buttons: rectangle, centered in CTA groups */
.hero-ctas,
.hero-buttons,
.section-cta,
.cta-buttons,
.cta-banner .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}


/* Home / blog: snap carousel on phone, smaller cards */
a.cs-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
@media (max-width: 768px) {
  .snap-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 8px;
    margin: 0 -16px;
  }
  .snap-row::-webkit-scrollbar { display: none; }
  .snap-row .cs-card,
  .snap-row .blog-card {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: center;
  }
  .snap-row .cs-card-img,
  .cs-card-img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
  }
  .snap-row .cs-card-body,
  .cs-card-body {
    padding: 14px !important;
  }
  .snap-row .cs-card-name,
  .cs-card-name {
    font-size: 15px !important;
    margin-bottom: 0 !important;
  }
  .snap-row .blog-card-image img,
  .blog-card-image img {
    height: 140px !important;
  }
  .snap-row .blog-card p,
  .blog-section .blog-card p {
    display: none;
  }
  .snap-row .blog-card h3,
  .blog-card h3 {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .case-studies-section .grid-4 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .case-studies-section .grid-4 .cs-card {
    flex: none !important;
    max-width: none !important;
  }
  .case-studies-section .cs-card-img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
  }
  .case-studies-section .cs-card-body { padding: 10px !important; }
  .case-studies-section .cs-card-name { font-size: 13px !important; margin-bottom: 0 !important; }
  .case-studies-section .cs-card-badge { font-size: 0.6rem !important; margin-bottom: 6px !important; }
}
@media (max-width: 480px) {
  .case-studies-section .grid-4 { grid-template-columns: 1fr 1fr !important; }
}


/* CTA closer: no glow, equal buttons */
.cta-banner::before,
.cta-border-wrap::before {
  display: none !important;
  animation: none !important;
}
.cta-border-wrap {
  background: none !important;
  padding: 0 !important;
  max-width: 560px !important;
}
.cta-banner .cta-buttons {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 auto !important;
  width: 100%;
  max-width: 280px;
}
.cta-banner .cta-buttons .btn-primary,
.cta-banner .cta-buttons .btn-secondary {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .cta-banner .cta-buttons {
    flex-direction: row !important;
    max-width: 480px;
  }
  .cta-banner .cta-buttons .btn-primary,
  .cta-banner .cta-buttons .btn-secondary {
    width: auto !important;
    min-width: 200px !important;
    flex: 1 1 0;
  }
}


/* CTA logos: optical match like hero strip */
.cta-trust-logos {
  gap: 28px !important;
}
.cta-label-logo {
  height: auto !important;
}
.cta-label-logo[alt="Warner Music Group"] {
  width: 96px !important;
  height: auto !important;
}
.cta-label-logo[alt="Universal Music Group"] {
  width: 108px !important;
  height: auto !important;
}
.cta-label-logo[alt="Sony Music"] {
  width: 88px !important;
  height: auto !important;
}
@media (max-width: 768px) {
  .cta-trust-logos {
    gap: 20px !important;
    flex-wrap: nowrap !important;
  }
  .cta-label-logo[alt="Warner Music Group"] {
    width: 64px !important;
  }
  .cta-label-logo[alt="Universal Music Group"] {
    width: 72px !important;
  }
  .cta-label-logo[alt="Sony Music"] {
    width: 58px !important;
  }
}


/* Campaigns heading gap match Fan / Seeding / Live */
#hpCampRow .hp-proof--camp .hp-stage-copy h3 {
  margin-bottom: 10px !important;
}

/* Service CS: 2-up on phone and desktop */
.cs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .cs-pair { gap: 12px; }
  body.page-campaigns [style*="max-width:720px"] {
    padding-left: 22px !important;
    padding-right: 22px !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}


/* Campaigns hero strip: desktop stays original. Mobile type + bottom fade only. */
body.page-campaigns .camp-hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  padding: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 48%, transparent 78%);
}
body.page-campaigns .camp-hero-name,
body.page-campaigns .camp-hero-song {
  position: absolute;
  left: 12px;
  right: 12px;
  color: #fff;
  font-family: Manrope, sans-serif;
  text-align: left;
}
body.page-campaigns .camp-hero-name {
  bottom: 34px;
  font-weight: 700;
  font-size: 1.35rem;
}
body.page-campaigns .camp-hero-song {
  bottom: 12px;
  font-weight: 400;
  font-size: 1.05rem;
  opacity: 0.75;
}
@media (max-width: 768px) {
  body.page-campaigns .camp-hero-fade {
    height: 62%;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 48%, transparent 78%);
  }
  body.page-campaigns .camp-hero-name,
  body.page-campaigns .camp-hero-song {
    left: 8px;
    right: 8px;
  }
  body.page-campaigns .camp-hero-name {
    bottom: 24px;
    font-size: 0.78rem;
  }
  body.page-campaigns .camp-hero-song {
    bottom: 8px;
    font-size: 0.64rem;
  }
}

body.page-campaigns .camp-net-user {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
body.page-campaigns .camp-net-user span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
@media (max-width: 768px) {
  body.page-campaigns .camp-net {
    width: 86% !important;
    max-width: 86% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 6px !important;
  }
  body.page-campaigns .camp-net-user {
    bottom: 7px;
    left: 6px;
    right: 6px;
    gap: 3px;
  }
  body.page-campaigns .camp-net-user span:first-child {
    font-size: 9px !important;
  }
  body.page-campaigns .camp-net-user span:last-child {
    width: 10px !important;
    height: 10px !important;
    font-size: 6px !important;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  body.page-campaigns .vtl-card {
    padding: 20px 16px !important;
    border-radius: 14px;
    max-width: calc(100% - 32px);
  }
  body.page-campaigns .vtl {
    padding-left: 34px !important;
  }
  body.page-campaigns .vtl-node {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.65rem !important;
    left: -34px !important;
  }
  body.page-campaigns .vtl-step {
    gap: 12px;
    padding-bottom: 18px !important;
  }
  body.page-campaigns .vtl-step:not(:last-child)::before {
    left: -23px;
    top: 26px;
    bottom: -18px;
  }
  body.page-campaigns .vtl-content h4 {
    font-size: 0.82rem !important;
    margin-bottom: 2px;
  }
  body.page-campaigns .vtl-content p {
    font-size: 1.04rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 768px) {
  body.page-campaigns .camp-net-sub {
    font-size: 13px !important;
    line-height: 1.4;
    margin-top: 8px !important;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  body.page-campaigns #scSection .container > div[style*="border-radius:24px"] {
    padding: 14px 8px !important;
  }
  body.page-campaigns .camp-chart-wrap {
    height: 328px !important;
    margin: 0 -2px;
  }
  body.page-campaigns #scPills .camp-act-dot {
    width: 8px !important;
    height: 8px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;
  }
}


/* 21 Aug: phone graph is first + last labels only; hide block removed */

.logo-grid-item[alt="Material Music"] { width: 168px; }
.logo-grid-item[alt="Disorder Records"] { width: 200px; }
.logo-grid-item[alt="Libre Music"] { width: 220px; }
.logo-grid-item[alt="3 Beat Records"] { width: 160px; }
.logo-grid-item[alt="Sony Music"] { width: 168px; }
.logo-grid-item[alt="Universal Music Group"] { width: 196px; }
.logo-grid-item[alt="Warner Music Group"] { width: 180px; }

@media (max-width: 768px) {
  .logo-grid-item[alt="Material Music"] { width: 88px !important; max-width: 88px !important; }
  .logo-grid-item[alt="Disorder Records"] { width: 100px !important; max-width: 100px !important; }
  .logo-grid-item[alt="Libre Music"] { width: 102px !important; max-width: 102px !important; }
  .logo-grid-item[alt="3 Beat Records"] { width: 86px !important; max-width: 86px !important; }
  .logo-grid-item[alt="Sony Music"] { width: 80px !important; max-width: 80px !important; }
  .logo-grid-item[alt="Universal Music Group"] { width: 92px !important; max-width: 92px !important; }
  .logo-grid-item[alt="Warner Music Group"] { width: 88px !important; max-width: 88px !important; }
}

.logo-grid-item[alt="Libre Music"] { width: 248px; }
.logo-grid-item[alt="EMI Records"] { width: 112px; }

@media (max-width: 768px) {
  .logo-grid-item[alt="Libre Music"] { width: 118px !important; max-width: 118px !important; }
  .logo-grid-item[alt="EMI Records"] { width: 70px !important; max-width: 70px !important; }
  body.page-campaigns .camp-last-note { display: block; }
}


.camp-chart-umg {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
@media (max-width: 768px) {
  .camp-chart-umg { height: 52px; }
}

/* Ink-matched logo weights + slightly smaller clients block */
.logo-grid-item[alt="Atlantic Records"] { width: 48px; }
.logo-grid-item[alt="Polydor Records"] { width: 48px; }
.logo-grid-item[alt="Island Records"] { width: 28px; }
.logo-grid-item[alt="Interscope Records"] { width: 28px; }
.logo-grid-item[alt="EMI Records"] { width: 38px; }
.logo-grid-item[alt="Republic Records"] { width: 44px; }
.logo-grid-item[alt="Relentless Records"] { width: 72px; }
.logo-grid-item[alt="Virgin Records"] { width: 48px; }
.logo-grid-item[alt="Material Music"] { width: 62px; }
.logo-grid-item[alt="Disorder Records"] { width: 68px; }
.logo-grid-item[alt="Libre Music"] { width: 110px; }
.logo-grid-item[alt="3 Beat Records"] { width: 56px; }
.logo-grid-item[alt="Sony Music"] { width: 32px; }
.logo-grid-item[alt="Universal Music Group"] { width: 50px; }
.logo-grid-item[alt="Warner Music Group"] { width: 50px; }

@media (max-width: 768px) {
  .logo-grid-section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .logo-grid-section .section-header {
    margin-bottom: 20px !important;
  }
  .logo-grid-section .section-header h2 {
    font-size: 1.35rem !important;
  }
  .logo-grid {
    gap: 12px 10px !important;
  }
  .logo-grid-item[alt="Atlantic Records"] { width: 42px !important; max-width: 42px !important; }
  .logo-grid-item[alt="Polydor Records"] { width: 42px !important; max-width: 42px !important; }
  .logo-grid-item[alt="Island Records"] { width: 24px !important; max-width: 24px !important; }
  .logo-grid-item[alt="Interscope Records"] { width: 24px !important; max-width: 24px !important; }
  .logo-grid-item[alt="EMI Records"] { width: 34px !important; max-width: 34px !important; }
  .logo-grid-item[alt="Republic Records"] { width: 40px !important; max-width: 40px !important; }
  .logo-grid-item[alt="Relentless Records"] { width: 64px !important; max-width: 64px !important; }
  .logo-grid-item[alt="Virgin Records"] { width: 42px !important; max-width: 42px !important; }
  .logo-grid-item[alt="Material Music"] { width: 56px !important; max-width: 56px !important; }
  .logo-grid-item[alt="Disorder Records"] { width: 62px !important; max-width: 62px !important; }
  .logo-grid-item[alt="Libre Music"] { width: 108px !important; max-width: 108px !important; }
  .logo-grid-item[alt="3 Beat Records"] { width: 50px !important; max-width: 50px !important; }
  .logo-grid-item[alt="Sony Music"] { width: 28px !important; max-width: 28px !important; }
  .logo-grid-item[alt="Universal Music Group"] { width: 44px !important; max-width: 44px !important; }
  .logo-grid-item[alt="Warner Music Group"] { width: 44px !important; max-width: 44px !important; }
}


@media (max-width: 768px) {
  body.page-campaigns #scSection {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  body.page-campaigns #scSection .section-header {
    margin-bottom: 16px !important;
  }
  body.page-campaigns #scSection .container > div[style*="border-radius:24px"] {
    padding: 12px 10px !important;
  }
  body.page-campaigns .camp-chart-wrap {
    height: 118px !important;
    max-height: 28vh;
    margin: 0;
  }
}


@media (max-width: 768px) {
  body.page-campaigns .camp-price-wrap {
    max-width: 300px !important;
  }
  body.page-campaigns .camp-price-card {
    padding: 16px 16px 20px !important;
  }
  body.page-campaigns .camp-price-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
  }
  body.page-campaigns .camp-price-card .price-sub {
    margin-bottom: 8px !important;
  }
  body.page-campaigns .camp-price-card .pricing-features {
    margin-top: 4px !important;
  }
}


@media (max-width: 768px) {
  .logo-grid-item[alt="Atlantic Records"] { width: 36px !important; max-width: 36px !important; }
  .logo-grid-item[alt="Sony Music"] { width: 40px !important; max-width: 40px !important; }
  .logo-grid-item[alt="Universal Music Group"] { width: 52px !important; max-width: 52px !important; }
}


/* Site-wide hero carousel: Campaigns-style bottom fade, desktop + phone */
.hero-strip-card .hero-art-overlay {
  inset: auto !important;
  top: auto !important;
  left: 0; right: 0; bottom: 0;
  height: 60% !important;
  padding: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 48%, transparent 78%) !important;
}
.hero-strip-card > div[style*="linear-gradient"] {
  height: 60% !important;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 48%, transparent 78%) !important;
}
@media (max-width: 768px) {
  .hero-strip-card .hero-art-overlay,
  .hero-strip-card > div[style*="linear-gradient"] {
    height: 62% !important;
  }
}


/* Sasha-style quote card (Home + services) */
.sasha-quote {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 28px;
}
.sasha-quote-pill {
  display: inline-block;
  background: rgba(81,114,255,0.15);
  border: 1px solid rgba(81,114,255,0.4);
  color: #5172FF;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 12px;
  margin: 0 auto 16px;
  font-family: Manrope, sans-serif;
}
.sasha-quote-stars {
  color: #FFD700;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}
.sasha-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,251,255,0.85);
  line-height: 1.8;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}
.sasha-quote-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sasha-quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.sasha-quote-name {
  font-weight: 700;
  color: #FAFBFF;
  font-size: 1rem;
  margin: 0;
}
.sasha-quote-role {
  color: #9DA2B3;
  font-size: 0.8125rem;
  margin: 2px 0 0;
}
.sasha-quote-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* Home coverflow flattened to the Sasha card */
.testimonials-section .section-header {
  padding-bottom: 0 !important;
  margin-bottom: 48px !important;
}
.testi-coverflow-track {
  height: auto !important;
  max-width: 720px !important;
  perspective: none !important;
}
.testi-card {
  position: relative !important;
  width: 100% !important;
  max-width: 720px !important;
  padding: 48px 28px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  box-shadow: none !important;
  transform: none !important;
}
.testi-card--left,
.testi-card--right {
  display: none !important;
}
.testi-card--center {
  display: flex !important;
  opacity: 1 !important;
  z-index: 3;
  transform: none !important;
}
.testi-card-quote-mark,
.testi-card-logo--top { display: none !important; }
.testi-pill-row {
  text-align: center;
  margin-bottom: 16px;
}
.testi-card-text {
  font-size: 1.05rem !important;
  font-style: italic;
  line-height: 1.8;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px !important;
  color: rgba(250,251,255,0.85);
}
.testi-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.testi-card-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
}
.testi-card-logo--foot img {
  height: 48px !important;
  width: auto !important;
  max-width: 160px !important;
  min-height: 0 !important;
}
@media (max-width: 768px) {
  .sasha-quote,
  .testi-card {
    padding: 28px 20px !important;
  }
}

.testi-coverflow-track .testi-card { display: none !important; }
.testi-coverflow-track .testi-card--center { display: flex !important; }

.home-testi-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}


/* Home: no glow/blur between hero and testimonial */
.glow-overlay { display: none !important; }
[data-home-testi] {
  background: #080c18;
  position: relative;
  z-index: 1;
}
[data-home-testi]::before,
[data-home-testi]::after { content: none !important; display: none !important; }
.hero { background: #080c18; }


/* Fan Pages hero names: one line on phone */
@media (max-width: 768px) {
  body.page-fanpages .hero-strip-card span {
    font-size: 0.72rem !important;
    white-space: nowrap;
    letter-spacing: -0.02em;
    left: 8px !important;
  }
}


/* Fan Pages KI/KI chart: Campaigns phone treatment */
.fan-chart-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
@media (max-width: 768px) {
  body.page-fanpages #fpSection {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  body.page-fanpages #fpSection .section-header {
    margin-bottom: 16px !important;
  }
  body.page-fanpages #fpSection .container > div[style*="border-radius:24px"] {
    padding: 12px 10px !important;
  }
  body.page-fanpages .fan-chart-wrap {
    height: 118px !important;
    max-height: 28vh;
    margin: 0;
  }
  body.page-fanpages #fpPills .camp-act-dot {
    width: 8px !important;
    height: 8px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;
  }
}


/* Campaigns process: shrink card + type (body was 1.04rem) */
@media (max-width: 768px) {
  body.page-campaigns .vtl-card {
    padding: 16px 14px !important;
    border-radius: 14px;
    max-width: calc(100% - 32px);
  }
  body.page-campaigns .vtl {
    padding-left: 30px !important;
  }
  body.page-campaigns .vtl-node {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.6rem !important;
    left: -30px !important;
  }
  body.page-campaigns .vtl-step {
    gap: 10px;
    padding-bottom: 12px !important;
  }
  body.page-campaigns .vtl-step:not(:last-child)::before {
    left: -21px;
    top: 22px;
    bottom: -12px;
  }
  body.page-campaigns .vtl-content h4 {
    font-size: 0.78rem !important;
    margin-bottom: 2px;
  }
  body.page-campaigns .vtl-content p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }
  body.page-campaigns .section:has(.vtl-card) .section-header h2 {
    font-size: 1.25rem !important;
  }
}


/* Campaigns blog cards: smaller cards + type */
@media (max-width: 768px) {
  body.page-campaigns .blog-section .section-header h2 {
    font-size: 1.2rem !important;
  }
  body.page-campaigns .snap-row .blog-card {
    flex: 0 0 64% !important;
    max-width: 64% !important;
  }
  body.page-campaigns .blog-card-image img,
  body.page-campaigns .snap-row .blog-card-image img {
    height: 110px !important;
  }
  body.page-campaigns .blog-card-content {
    padding: 12px 14px 14px !important;
  }
  body.page-campaigns .snap-row .blog-card h3,
  body.page-campaigns .blog-card h3 {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }
  body.page-campaigns .blog-card .result-link {
    font-size: 0.72rem !important;
  }
}


/* Fan Pages showcase usernames: same as Campaigns (desktop) */
body.page-fanpages .camp-net-user {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
body.page-fanpages .camp-net-user span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* Fan Pages phone: match Campaigns showcase / process / pricing */
@media (max-width: 768px) {
  body.page-fanpages .camp-net-sub {
    font-size: 13px !important;
    line-height: 1.4;
    margin-top: 8px !important;
    padding: 0 20px;
  }
  body.page-fanpages .camp-net {
    width: 86% !important;
    max-width: 86% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 6px !important;
  }
  body.page-fanpages .camp-net-user {
    position: absolute;
    bottom: 7px;
    left: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    min-width: 0;
  }
  body.page-fanpages .camp-net-user span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    font-size: 7.5px !important;
  }
  body.page-fanpages .camp-net-user span:last-child {
    width: 10px !important;
    height: 10px !important;
    font-size: 6px !important;
    flex-shrink: 0;
  }

  body.page-fanpages .vtl-card {
    padding: 16px 14px !important;
    border-radius: 14px;
    max-width: calc(100% - 32px);
  }
  body.page-fanpages .vtl {
    padding-left: 30px !important;
  }
  body.page-fanpages .vtl-node {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.6rem !important;
    left: -30px !important;
  }
  body.page-fanpages .vtl-step {
    gap: 10px;
    padding-bottom: 12px !important;
  }
  body.page-fanpages .vtl-step:not(:last-child)::before {
    left: -21px;
    top: 22px;
    bottom: -12px;
  }
  body.page-fanpages .vtl-content h4 {
    font-size: 0.78rem !important;
    margin-bottom: 2px;
  }
  body.page-fanpages .vtl-content p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }
  body.page-fanpages .section:has(.vtl-card) .section-header h2 {
    font-size: 1.25rem !important;
  }

  body.page-fanpages #pricing .container {
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }
  body.page-fanpages #pricing .section-header h2 {
    font-size: 1.25rem !important;
  }
  body.page-fanpages .fan-price-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 16px !important;
  }
  body.page-fanpages .fan-price-card {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 300px !important;
    padding: 16px 16px 20px !important;
    box-sizing: border-box;
  }
  body.page-fanpages .fan-price-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1rem !important;
  }
  body.page-fanpages .fan-price-card .price {
    font-size: 1.6rem !important;
  }
  body.page-fanpages .fan-price-card .price-sub {
    margin-bottom: 8px !important;
    font-size: 0.8rem !important;
  }
  body.page-fanpages .fan-price-card > p:not(.price):not(.price-sub) {
    font-size: 0.78rem !important;
    line-height: 1.4;
  }
  body.page-fanpages .fan-price-card .pricing-features {
    margin-top: 4px !important;
  }
  body.page-fanpages .fan-price-card .pricing-features li {
    font-size: 0.75rem !important;
    padding: 5px 0 5px 16px;
  }
}


/* Fan Pages: compare logo, CS size, pricing carousel */
.fan-compare-logo {
  height: 14px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
  background: transparent !important;
  filter: none !important;
  border: 0 !important;
  padding: 0 !important;
}
.fan-compare-logo-th {
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 768px) {
  body.page-fanpages .fan-compare-logo {
    height: 12px !important;
    max-width: none !important;
  }
  body.page-fanpages table th,
  body.page-fanpages table td {
    padding: 10px 8px !important;
    font-size: 0.72rem !important;
  }

  body.page-fanpages .cs-pair {
    gap: 10px;
  }
  body.page-fanpages .cs-card-img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
  }
  body.page-fanpages .cs-card-body {
    padding: 12px 10px !important;
  }
  body.page-fanpages .cs-card-badge {
    font-size: 0.58rem !important;
    padding: 3px 8px !important;
    margin-bottom: 6px !important;
  }
  body.page-fanpages .cs-card-name {
    font-size: 13px !important;
    line-height: 1.25 !important;
    margin-bottom: 0 !important;
  }

  body.page-fanpages .fan-price-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px !important;
    padding: 0 16px 8px !important;
    margin: 0 -16px !important;
    align-items: stretch;
  }
  body.page-fanpages .fan-price-grid::-webkit-scrollbar { display: none; }
  body.page-fanpages .fan-price-card {
    flex: 0 0 78% !important;
    max-width: 78% !important;
    min-width: 0 !important;
    width: auto !important;
    scroll-snap-align: center;
    padding: 16px 16px 20px !important;
    box-sizing: border-box;
  }
}


/* Fan Pages blog cards: same as Campaigns */
@media (max-width: 768px) {
  body.page-fanpages .blog-section .section-header h2 {
    font-size: 1.2rem !important;
  }
  body.page-fanpages .snap-row .blog-card {
    flex: 0 0 64% !important;
    max-width: 64% !important;
  }
  body.page-fanpages .blog-card-image img,
  body.page-fanpages .snap-row .blog-card-image img {
    height: 110px !important;
  }
  body.page-fanpages .blog-card-content {
    padding: 12px 14px 14px !important;
  }
  body.page-fanpages .snap-row .blog-card h3,
  body.page-fanpages .blog-card h3 {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }
  body.page-fanpages .blog-card .result-link {
    font-size: 0.72rem !important;
  }
}


/* Live + Seeding phone: match Campaigns blog / CS / process / pricing */
@media (max-width: 768px) {
  body.page-live .blog-section .section-header h2,
  body.page-seeding .blog-section .section-header h2 {
    font-size: 1.2rem !important;
  }
  body.page-live .snap-row .blog-card,
  body.page-seeding .snap-row .blog-card {
    flex: 0 0 64% !important;
    max-width: 64% !important;
  }
  body.page-live .blog-card-image img,
  body.page-live .snap-row .blog-card-image img,
  body.page-seeding .blog-card-image img,
  body.page-seeding .snap-row .blog-card-image img {
    height: 110px !important;
  }
  body.page-live .blog-card-content,
  body.page-seeding .blog-card-content {
    padding: 12px 14px 14px !important;
  }
  body.page-live .snap-row .blog-card h3,
  body.page-live .blog-card h3,
  body.page-seeding .snap-row .blog-card h3,
  body.page-seeding .blog-card h3 {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }
  body.page-live .blog-card .result-link,
  body.page-seeding .blog-card .result-link {
    font-size: 0.72rem !important;
  }

  body.page-live .cs-pair,
  body.page-seeding .cs-pair {
    gap: 10px;
  }
  body.page-live .cs-card-img,
  body.page-seeding .cs-card-img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
  }
  body.page-live .cs-card-body,
  body.page-seeding .cs-card-body {
    padding: 12px 10px !important;
  }
  body.page-live .cs-card-badge,
  body.page-seeding .cs-card-badge {
    font-size: 0.58rem !important;
    padding: 3px 8px !important;
    margin-bottom: 6px !important;
  }
  body.page-live .cs-card-name,
  body.page-seeding .cs-card-name {
    font-size: 13px !important;
    line-height: 1.25 !important;
    margin-bottom: 0 !important;
  }
  body.page-live .cs-card-pills,
  body.page-live .cs-card-stats,
  body.page-live .cs-card-summary {
    display: none !important;
  }

  body.page-live .vtl-card,
  body.page-seeding .vtl-card {
    padding: 16px 14px !important;
    border-radius: 14px;
    max-width: calc(100% - 32px);
  }
  body.page-live .vtl,
  body.page-seeding .vtl {
    padding-left: 30px !important;
  }
  body.page-live .vtl-node,
  body.page-seeding .vtl-node {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.6rem !important;
    left: -30px !important;
  }
  body.page-live .vtl-step,
  body.page-seeding .vtl-step {
    gap: 10px;
    padding-bottom: 12px !important;
  }
  body.page-live .vtl-step:not(:last-child)::before,
  body.page-seeding .vtl-step:not(:last-child)::before {
    left: -21px;
    top: 22px;
    bottom: -12px;
  }
  body.page-live .vtl-content h4,
  body.page-seeding .vtl-content h4 {
    font-size: 0.78rem !important;
    margin-bottom: 2px;
  }
  body.page-live .vtl-content p,
  body.page-seeding .vtl-content p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }
  body.page-live .section:has(.vtl-card) .section-header h2,
  body.page-seeding .section:has(.vtl-card) .section-header h2 {
    font-size: 1.25rem !important;
  }

  body.page-live .camp-price-wrap,
  body.page-seeding .camp-price-wrap {
    max-width: 300px !important;
  }
  body.page-live .camp-price-card,
  body.page-seeding .camp-price-card {
    padding: 16px 16px 20px !important;
  }
  body.page-live .camp-price-card h3,
  body.page-seeding .camp-price-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
  }
  body.page-live .camp-price-card .price-sub,
  body.page-seeding .camp-price-card .price-sub {
    margin-bottom: 8px !important;
  }
  body.page-live .camp-price-card .pricing-features,
  body.page-seeding .camp-price-card .pricing-features {
    margin-top: 4px !important;
  }
}


/* Live showcase: same as Campaigns */
body.page-live .camp-net-user {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
body.page-live .camp-net-user span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
@media (max-width: 768px) {
  body.page-live .camp-net-sub {
    font-size: 13px !important;
    line-height: 1.4;
    margin-top: 8px !important;
    padding: 0 20px;
  }
  body.page-live .camp-net {
    width: 86% !important;
    max-width: 86% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 6px !important;
  }
  body.page-live .camp-net-user {
    bottom: 7px;
    left: 6px;
    right: 6px;
    gap: 3px;
  }
  body.page-live .camp-net-user span:first-child {
    font-size: 9px !important;
  }
  body.page-live .camp-net-user span:last-child {
    width: 10px !important;
    height: 10px !important;
    font-size: 6px !important;
    flex-shrink: 0;
  }
}


/* Seeding showcase: same as Campaigns */
body.page-seeding .camp-net-user {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
body.page-seeding .camp-net-user span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
@media (max-width: 768px) {
  body.page-seeding .camp-net-sub {
    font-size: 13px !important;
    line-height: 1.4;
    margin-top: 8px !important;
    padding: 0 20px;
  }
  body.page-seeding .camp-net {
    width: 86% !important;
    max-width: 86% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 6px !important;
  }
  body.page-seeding .camp-net-user {
    bottom: 7px;
    left: 6px;
    right: 6px;
    gap: 3px;
  }
  body.page-seeding .camp-net-user span:first-child {
    font-size: 9px !important;
  }
  body.page-seeding .camp-net-user span:last-child {
    width: 10px !important;
    height: 10px !important;
    font-size: 6px !important;
    flex-shrink: 0;
  }
}


/* Seeding Spend The Night graph: same phone treatment as Campaigns */
@media (max-width: 768px) {
  body.page-seeding #scSection {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  body.page-seeding #scSection .section-header {
    margin-bottom: 16px !important;
  }
  body.page-seeding #scSection .container > div[style*="border-radius:24px"] {
    padding: 12px 10px !important;
  }
  body.page-seeding .camp-chart-wrap {
    height: 118px !important;
    max-height: 28vh;
    margin: 0;
  }
  body.page-seeding #scPills .camp-act-dot {
    width: 8px !important;
    height: 8px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;
  }
}


/* Live hero logos — invert only black SVGs; Rise/UMG/EMI already white */
body.page-live .hero-live-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 546px;
}
body.page-live .hero-live-logo {
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}
body.page-live .hero-live-logo[alt="Rise Festival"] { height: 44px; filter: none; }
body.page-live .hero-live-logo[alt="Island Records"] { height: 48px; filter: brightness(0) invert(1); }
body.page-live .hero-live-logo[alt="Interscope Records"] { height: 44px; filter: brightness(0) invert(1); }
body.page-live .hero-live-logo[alt="EMI Records"] { height: 36px; filter: none; }
@media (max-width: 768px) {
  body.page-live .hero-live-copy img {
    max-height: none !important;
  }
  body.page-live .hero-live-logos {
    margin-top: 20px;
    gap: 16px 18px;
    justify-content: center;
    max-width: 100%;
  }
  body.page-live .hero-live-logo[alt="Rise Festival"] { height: 32px; }
  body.page-live .hero-live-logo[alt="Island Records"] { height: 34px; }
  body.page-live .hero-live-logo[alt="Interscope Records"] { height: 32px; }
  body.page-live .hero-live-logo[alt="EMI Records"] { height: 26px; }
}


/* Hide case-study fact pills (between stats and quote) */
.cs-modal-pills,
.cs-modal-pill {
  display: none !important;
}

/* Hide case-study modal logo bar under cover */
.cs-modal-logo-bar {
  display: none !important;
}

/* CS modal cover: round all corners, match video frame height */
.cs-modal-img-portrait.ratio-4-5 {
  height: 400px !important;
  border-radius: 16px !important;
}
.cs-modal-img-portrait.ratio-4-5 img {
  border-radius: 16px;
}
@media (max-width: 768px) {
  .cs-modal-img-portrait.ratio-4-5 {
    height: 300px !important;
    border-radius: 16px !important;
  }
  .cs-modal-img-portrait.ratio-9-16 {
    height: 300px !important;
    max-height: none !important;
  }
}

/* Tinie mobile CS modal: 6-vid grid, no cover. Desktop unchanged. */
@media (max-width: 768px) {
  .cs-modal-v2.cs-has-grid .cs-modal-images {
    display: none !important;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-top {
    grid-template-columns: 1fr !important;
  }
  .cs-modal-net {
    display: none;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-net {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 86%;
    max-width: 86%;
    margin: 12px auto 8px;
  }
  .cs-modal-v2.cs-has-grid.cs-net-one .cs-modal-net {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    width: 42%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
  }
  .cs-modal-v2.cs-has-grid.cs-net-one .cs-modal-net-tile {
    width: 100%;
  }
  .cs-modal-net-tile {
    position: relative;
    width: 100%;
    aspect-ratio: 200 / 356;
    border-radius: 16px;
    overflow: hidden;
    background: #080c18;
  }
  .cs-modal-net-tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .cs-modal-net-user {
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 7px;
    display: flex;
    align-items: center;
    z-index: 2;
  }
  .cs-modal-net-user span {
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    font-family: Manrope, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  .cs-modal-net { display: none !important; }
}

@media (max-width: 768px) {
  .cs-modal-v2.cs-has-grid .cs-modal-stats {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-stat {
    flex: 1;
    min-width: 0;
    text-align: center;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-stat-value {
    font-size: 1.55rem;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-stat-label {
    font-size: 0.65rem;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-top-stats {
    padding: 8px 8px 0;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .cs-modal-v2.cs-has-grid {
    padding: 72px 20px 24px;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-top {
    display: flex;
    flex-direction: column;
    min-height: 0 !important;
    gap: 22px;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-top-stats {
    display: contents;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-badge {
    display: none;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-title {
    order: -1;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 0 8px;
    margin: 0;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-net {
    order: 0;
    margin: 4px auto 0;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-stats {
    order: 1;
    margin: 4px 8px 0;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-bottom {
    padding: 22px 8px 8px;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-details {
    gap: 14px;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-date {
    text-align: center;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-quote {
    text-align: center;
    line-height: 1.55;
    margin: 0;
  }
  .cs-modal-v2.cs-has-grid .cs-modal-nav-bottom {
    justify-content: center;
    margin-top: 16px;
  }
}

/* Rise graph: same size as Fender / Campaigns chart */
@media (min-width: 769px) {
  body.page-live .ev-chart-wrap {
    height: 380px !important;
  }
}
@media (max-width: 768px) {
  body.page-live .ev-chart-wrap {
    height: 158px !important;
    max-height: 38vh;
    margin: 0;
  }
}

/* Contact: centered wide form; email under it */
body.page-contact .section [style*="grid-template-columns: 2fr 1fr"] {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 24px !important;
  max-width: 800px;
  margin: 0 auto;
}
body.page-contact .section [style*="grid-template-columns: 2fr 1fr"] > .card {
  width: 100%;
}
body.page-contact .contact-form {
  max-width: none;
}
@media (max-width: 768px) {
  body.page-contact .hero-subpage {
    text-align: left;
    min-height: 0 !important;
    padding-top: 140px !important;
    padding-bottom: 36px !important;
  }
  body.page-contact .hero-content {
    max-width: none !important;
  }
  body.page-contact .hero-subpage .container,
  body.page-contact .section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-contact .form-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body.page-contact .form-group {
    margin-bottom: 0;
  }
  body.page-contact .card {
    padding: 18px 16px !important;
  }
}


/* Wave1 mobile tap targets — btn-primary / nav-cta */
@media (max-width: 768px) {
  .btn-primary,
  a.btn-primary,
  .nav-cta {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* ==========================================================================
   Punch list — unified section padding, contact mobile, blog cards
   ========================================================================== */

section.section:not(.hero):not(.hero-subpage) {
  padding: 100px 0;
}

section.section[style*="padding:100px"],
section.section[style*="padding:80px"],
section.section[style*="padding:64px"],
section.section[style*="padding:120px"] {
  padding: 100px 0 !important;
}

.hero,
.hero-subpage,
section.hero,
section.hero-subpage {
  /* heroes keep their own padding */
}

a.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.contact-mobile-calendly {
  display: none;
}

@media (max-width: 768px) {
  section.section:not(.hero):not(.hero-subpage) {
    padding: 64px 0;
  }
  section.section[style*="padding:100px"],
  section.section[style*="padding:80px"],
  section.section[style*="padding:64px"],
  section.section[style*="padding:120px"] {
    padding: 64px 0 !important;
  }

  /* Legal / article pages stay a bit tighter */
  .article-content {
    padding-bottom: 48px;
  }

  .contact-mobile-calendly {
    display: block;
    width: 100%;
    margin: 0 0 20px;
  }
  /* contact aside: keep Calendly visible with Contact form */
  body.page-contact .contact-split,
  body.page-contact .section [style*="grid-template-columns: 2fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  body.page-contact .card,
  body.page-contact .contact-form,
  body.page-contact .form-grid,
  body.page-contact .form-group {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  body.page-contact input:not([type="checkbox"]),
  body.page-contact textarea,
  body.page-contact select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  body.page-contact textarea {
    min-height: 120px;
    resize: vertical;
  }
  body.page-contact .gdpr-label,
  body.page-contact label[for="gdpr"] {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  body.page-contact .gdpr-label span,
  body.page-contact label[for="gdpr"] span {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  body.page-contact input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    flex-shrink: 0;
    padding: 0;
    margin-top: 4px;
  }
}

/* Blog hub: smaller 2-col cards */
.page-blog .blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.page-blog .blog-hub-grid .blog-card-content {
  padding: 16px 16px 18px;
}
.page-blog .blog-hub-grid .blog-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}
.page-blog .blog-hub-grid .blog-card p {
  font-size: 0.8125rem;
  margin-bottom: 10px;
}
.page-blog .blog-hub-grid .blog-card-image img {
  height: 140px !important;
}
@media (max-width: 768px) {
  .page-blog .blog-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .page-blog .blog-hub-grid .blog-card-image img {
    height: 110px !important;
  }
  .page-blog .blog-hub-grid .blog-card-content {
    padding: 12px;
  }
}


/* Desktop blog cards: photo + title only, 16:9 covers */
@media (min-width: 769px) {
  .blog-card p,
  .blog-card .result-link,
  .blog-card .read-more {
    display: none !important;
  }
  .blog-card-image img,
  .page-blog .blog-hub-grid .blog-card-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }
  .page-blog .blog-hub-grid {
    max-width: 1100px;
    gap: 24px;
  }
  .blog-section .grid-3,
  .blog-section .snap-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
    overflow: visible;
  }
  .blog-section .blog-card-content {
    padding: 16px 18px 18px;
  }
  .blog-section .blog-card h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    font-size: clamp(0.74rem, 0.95vw, 0.88rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0;
  }
}


/* Desktop nav: larger type, Services dropdown matches menu */
@media (min-width: 769px) {
  .nav-links {
    gap: 40px;
  }
  .nav-links a,
  .nav-links .dropdown-toggle,
  .nav-dropdown-menu a,
  .dropdown-menu a {
    font-size: 1.125rem !important;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .nav-logo-img {
    height: 28px !important;
  }
  .nav-cta {
    font-size: 1.0625rem !important;
    padding: 10px 20px !important;
  }
  .nav-dropdown-menu,
  .dropdown-menu {
    background: #111318 !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45) !important;
    padding: 8px 0 !important;
    min-width: 260px;
  }
  .nav-dropdown-menu a,
  .dropdown-menu a {
    padding: 10px 22px !important;
    background: none !important;
  }
  .nav-dropdown-menu a:hover,
  .dropdown-menu a:hover {
    color: #5172FF !important;
    background: none !important;
  }
}

/* Blog hub hero: centre the subtext under the H1 */
body.page-blog .hero-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
body.page-blog .hero-content p,
body.page-blog .hero-subtext {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* Contact aside CTAs: match size on mobile; both buttons visible */
body.page-contact .contact-aside-card a.btn-primary,
body.page-contact .contact-aside-card a.btn-secondary {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
  justify-content: center !important;
  font-family: Manrope, system-ui, sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  padding: 14px 20px !important;
  min-height: 48px !important;
  border-radius: 8px !important;
  white-space: normal !important;
}
body.page-contact .mobile-nav .btn-primary,
body.page-contact .mobile-nav .btn-secondary {
  display: flex !important;
  width: 100% !important;
  box-sizing: border-box !important;
  justify-content: center !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  padding: 14px 18px !important;
  min-height: 48px !important;
  border-radius: 8px !important;
}
@media (max-width: 768px) {
  body.page-contact .contact-aside-card a.btn-primary,
  body.page-contact .contact-aside-card a.btn-secondary {
    font-size: 0.9375rem !important;
    padding: 14px 18px !important;
    min-height: 48px !important;
  }
  body.page-contact .contact-aside-card a[href*="calendly"] {
    display: block !important;
  }
}
