/* ThetaSound WPBakery Elements */
.theta-hero {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: #030305;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(1.08) contrast(1.08);
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.065) translateY(-12px); }
}

.theta-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,.02), rgba(0,0,0,.22)), linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.12) 70%, #030305 100%);
  pointer-events: none;
}

.theta-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 34px 6vw;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}

.theta-nav.scrolled {
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.32);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.theta-nav nav { display: flex; gap: 42px; }

.theta-nav nav a {
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .9;
  position: relative;
  padding-bottom: 14px;
}

.theta-nav nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: #9be8ff;
  transition: width .35s ease;
}

.theta-nav nav a:hover,
.theta-nav nav a.active { color: #9be8ff !important; opacity: 1; }

.theta-nav nav a:hover::after,
.theta-nav nav a.active::after { width: 100%; }

.hero-actions {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  display: flex;
  gap: 34px;
  justify-content: center;
}

.reveal-hero {
  opacity: 0;
  animation: revealHero 1.2s ease .45s forwards;
}

@keyframes revealHero {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-btn {
  min-width: 260px;
  padding: 17px 34px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.hero-btn.primary {
  color: #fff !important;
  border: 1px solid rgba(155,232,255,.85);
  box-shadow: inset 0 0 22px rgba(155,232,255,.08), 0 0 24px rgba(155,232,255,.18);
}

.hero-btn.secondary {
  color: #fff !important;
  border: 1px solid rgba(180,156,255,.55);
  box-shadow: inset 0 0 22px rgba(180,156,255,.06), 0 0 20px rgba(180,156,255,.12);
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: rgba(0,0,0,.44);
  box-shadow: 0 0 32px rgba(155,232,255,.22);
}

.fade-up,
.stagger {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s ease, transform .9s ease;
}

.fade-up.visible,
.visible .stagger,
.stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

.visible .stagger:nth-child(1) { transition-delay: .05s; }
.visible .stagger:nth-child(2) { transition-delay: .14s; }
.visible .stagger:nth-child(3) { transition-delay: .23s; }

.section-kicker {
  color: #9be8ff !important;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 18px;
}

.theta-section {
  padding: 135px 24px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.theta-section h2,
.theta-about-contact h2,
.catalog-preview h2,
.clients-section h2,
.services-section h2 {
  color: #fff !important;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .95;
  margin: 0 0 44px;
  letter-spacing: -0.05em;
}

.services-section {
  padding: 140px 24px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(155,232,255,.11), transparent 35%), linear-gradient(180deg, #030305, #07070d);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.services-section h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  max-width: 1180px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  text-align: left;
  padding: 38px 34px;
  border-radius: 26px;
  background: radial-gradient(circle at 15% 0%, rgba(155,232,255,.09), transparent 38%), linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.105);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(155,232,255,.42);
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.service-card h3 {
  color: #fff !important;
  font-size: 30px;
  margin: 0 0 18px;
}

.service-card p {
  color: #b8b8c8 !important;
  line-height: 1.7;
  margin: 0;
}

.services-cta { margin-top: 50px; }

.services-cta a {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid rgba(155,232,255,.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  color: #fff !important;
  background: rgba(255,255,255,.03);
  transition: .3s ease;
}

.services-cta a:hover {
  background: rgba(155,232,255,.08);
  transform: translateY(-2px);
}

.featured-section {
  max-width: none;
  background: radial-gradient(circle at 15% 0%, rgba(0,210,255,.09), transparent 35%), linear-gradient(180deg, #050508, #030305);
  border-top: 1px solid rgba(255,255,255,.05);
}

.featured-section > h2,
.featured-section > .section-kicker,
.featured-section .track-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.track-card {
  text-align: left;
  padding: 22px;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 10%,rgba(0,210,255,.15),transparent 40%), linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.track-card:hover {
  transform: translateY(-9px) scale(1.01);
  border-color: rgba(155,232,255,.55);
  box-shadow: 0 50px 120px rgba(0,0,0,.7);
}

.track-card.active { border-color: rgba(155,232,255,.85); }

.track-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
  transition: transform .45s ease, filter .45s ease;
}

.track-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.track-card h3 {
  color: #fff !important;
  font-size: 28px;
  margin: 0 0 8px;
}

.track-card p {
  color: #a8a8b8 !important;
  margin: 0;
}

.global-play,
.mini-play,
.card-play,
.player-prev,
.player-next {
  border: 1px solid rgba(155,232,255,.35);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  color: #fff !important;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.global-play,
.mini-play,
.card-play {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 15px;
}

.player-prev,
.player-next {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 28px;
  line-height: 1;
}

.card-play { margin-top: 22px; }

.global-play:hover,
.mini-play:hover,
.card-play:hover,
.player-prev:hover,
.player-next:hover {
  transform: translateY(-2px);
  border-color: rgba(155,232,255,.85);
  box-shadow: 0 0 24px rgba(155,232,255,.25);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.poster-marquee,
.theta-poster-marquee {
  width: 100%;
  overflow: hidden;
  margin: 60px auto 0;
  padding: 28px 0 46px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.poster-track,
.theta-poster-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: thetaPosterScroll 42s linear infinite;
  padding: 20px 0;
}

.poster-marquee:hover .poster-track,
.theta-poster-marquee:hover .theta-poster-track { animation-play-state: paused; }

.poster-track img,
.theta-poster-track img {
  width: 170px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(22%) brightness(.78) contrast(1.08);
  opacity: .82;
  outline: 1px solid rgba(255,255,255,.08);
  transition: transform .45s ease, filter .45s ease, opacity .45s ease, box-shadow .45s ease;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.poster-track img:nth-child(odd),
.theta-poster-track img:nth-child(odd) { transform: translateY(10px); }

.poster-track img:nth-child(even),
.theta-poster-track img:nth-child(even) { transform: translateY(-6px); }

.poster-track img:hover,
.theta-poster-track img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-14px) scale(1.04);
  box-shadow: 0 35px 90px rgba(155,232,255,.18), inset 0 0 60px rgba(255,255,255,.12);
}

@keyframes thetaPosterScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.catalog-preview {
  padding: 110px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: radial-gradient(circle at 85% 50%, rgba(180,156,255,.14), transparent 38%), linear-gradient(135deg, #07070d, #030305);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.catalog-preview div { max-width: 780px; }
.catalog-preview h2 { margin-bottom: 0; }

.catalog-preview a {
  white-space: nowrap;
  padding: 17px 34px;
  border: 1px solid rgba(155,232,255,.65);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: #fff !important;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
  transition: .3s ease;
}

.catalog-preview a:hover {
  background: rgba(155,232,255,.08);
  transform: translateY(-2px);
}

.theta-about-contact {
  padding: 140px 24px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(155,232,255,.08), transparent 35%), linear-gradient(180deg, #030305, #0a0a12);
  border-top: 1px solid rgba(255,255,255,.06);
}

.about-block {
  max-width: 900px;
  margin: auto;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #b8b8c8 !important;
  margin-top: 20px;
}

.contact-block {
  margin-top: 70px;
  padding: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(180,156,255,.15), transparent 40%), linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.contact-block h3 {
  color: #fff !important;
  font-size: 34px;
  margin: 0 0 12px;
}

.contact-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg,#9be8ff,#b49cff);
  color: #030305 !important;
  text-decoration: none;
  font-weight: 800;
  transition: .3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(155,232,255,.25);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 105px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(155,232,255,.45);
  background: rgba(10,10,16,.76);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-player {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  border-radius: 20px;
  background: rgba(10,10,16,.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 25px 70px rgba(0,0,0,.65);
  overflow: hidden;
  opacity: .94;
}

.sticky-player.is-playing {
  box-shadow: 0 25px 70px rgba(0,0,0,.65), 0 0 34px rgba(155,232,255,.14);
}

.player-main {
  display: grid;
  grid-template-columns: 1.3fr auto 2fr auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 16px;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 13px;
}

.player-cover {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 22px rgba(155,232,255,.16);
}

.player-mini {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  min-height: 52px;
}

.sticky-player.minimized {
  left: auto;
  right: 20px;
  bottom: 20px;
  width: 260px;
  border-radius: 18px;
  opacity: .85;
}

.sticky-player.minimized:hover { opacity: 1; }
.sticky-player.minimized .player-main { display: none; }
.sticky-player.minimized .player-mini { display: flex; }

.player-title,
.mini-title {
  color: #fff !important;
  font-weight: 800;
  font-size: 15px;
}

.player-artist {
  color: #aaa !important;
  font-size: 12px;
  margin-top: 3px;
}

.player-progress { min-width: 0; }

.waveform-wrap {
  position: relative;
  width: 100%;
}

.waveform-real {
  width: 100%;
  height: 42px;
  cursor: pointer;
}

.wave-progress-line {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,#9be8ff,#b49cff);
  box-shadow: 0 0 18px rgba(155,232,255,.45);
  pointer-events: none;
  transition: width .08s linear;
}

.player-time {
  color: #9aa0b0 !important;
  font-size: 12px;
  min-width: 78px;
  text-align: right;
}

.volume-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.volume-wrap span {
  color: #9be8ff !important;
  font-size: 12px;
}

.volume {
  width: 110px;
  accent-color: #9be8ff;
}

.minimize-btn,
.expand-btn {
  background: none;
  border: none;
  color: #fff !important;
  font-size: 20px;
  cursor: pointer;
}

@media(max-width:900px) {
  body { padding-bottom: 170px !important; }

  .theta-hero { min-height: 680px; }

  .theta-nav {
    justify-content: center;
    padding: 24px 16px;
  }

  .theta-nav nav { gap: 22px; }

  .theta-nav nav a {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .hero-actions {
    bottom: 8%;
    flex-direction: column;
    gap: 14px;
  }

  .hero-btn {
    min-width: 230px;
    padding: 15px 24px;
  }

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

  .poster-track img,
  .theta-poster-track img { width: 130px; }

  .catalog-preview {
    flex-direction: column;
    align-items: flex-start;
  }

  .player-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sticky-player {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-player.minimized {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .volume-wrap { justify-content: flex-start; }

  .back-to-top {
    right: 18px;
    bottom: 82px;
  }
}

@media (max-width: 768px) {
  .theta-hero {
    height: 100svh;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
  }

  .hero-bg {
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-color: #030305 !important;
    animation: none !important;
    transform: none !important;
  }

  .hero-btn {
    background: rgba(0,0,0,.55) !important;
    backdrop-filter: blur(12px);
  }

  .theta-hero::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.65));
  }

  .hero-actions {
    bottom: 13%;
    flex-direction: column;
    gap: 14px;
  }
}
