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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #1a9b99;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7 0%, #1a9b99 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(139, 92, 246, 0.4);
}

.btn-hero {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100dvh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  z-index: 1;
}

.light-ray {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, currentColor, transparent);
  filter: blur(48px);
  animation: float 20s infinite ease-in-out;
  opacity: 0.3;
  z-index: 2;
}

.ray-teal-1 { color: rgba(26, 155, 153, 0.4); left: 10%; animation-delay: 0s; }
.ray-teal-2 { color: rgba(26, 155, 153, 0.3); left: 25%; animation-delay: -5s; }
.ray-teal-3 { color: rgba(26, 155, 153, 0.35); left: 40%; animation-delay: -10s; }
.ray-purple-1 { color: rgba(139, 92, 246, 0.35); right: 15%; animation-delay: -3s; }
.ray-purple-2 { color: rgba(168, 85, 247, 0.3); right: 30%; animation-delay: -8s; }
.ray-purple-3 { color: rgba(147, 51, 234, 0.32); right: 45%; animation-delay: -13s; }

@keyframes float {
  0%, 100% { transform: translateY(-10%) scaleY(0.9); }
  50% { transform: translateY(10%) scaleY(1.1); }
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, transparent, rgba(0,0,0,0.6));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  flex-shrink: 0;
  color: white;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(135deg, #a855f7 0%, #1a9b99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.badge {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge img,
.service-icon img,
.why-icon img,
.step-icon img,
.section-title img,
.promo-badge img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
}

.badge img {
  width: 1.1rem;
  height: 1.1rem;
  filter: brightness(0) invert(1);
}

/* Platform Ticker */
.platform-ticker {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.ticker-track {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  animation: ticker 60s linear infinite;
  width: max-content;
}

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

.ticker-item {
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticker-logo {
  height: 28px;
  width: auto;
  margin-right: 0.7rem;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}

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

/* Services */
.services {
  padding: 4rem 2rem;
  background: #0a0a0a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.service-card-promo {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(26, 155, 153, 0.1) 100%);
  border-color: rgba(168, 85, 247, 0.3);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #a855f7 0%, #1a9b99 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.promo-badge img {
  width: 0.8rem;
  height: 0.8rem;
  filter: brightness(0) invert(1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Why + How */
.why-how {
  padding: 5rem 2rem;
  background: #0a0a0a;
}

.why-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title img {
  width: 1.75rem;
  height: 1.75rem;
  filter: brightness(0) invert(1);
}

.section-title.centered {
  justify-content: center;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
}

.why-item strong {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.why-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.4;
}

.how-it-works {
  padding: 5rem 2rem;
  padding-top: 0;
  background: #0a0a0a;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.05);
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.step-arrow {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-arrow svg {
  width: 20px;
  height: 20px;
  color: rgba(139, 92, 246, 0.4);
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    height: 24px;
  }

  .step-card {
    width: 100%;
  }
}

/* Artists */
.artists {
  padding: 5rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  width: 100%;
}

.artists-container {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0 2rem;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.artist-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #111;
}


.artist-card:hover .artist-cover {
}

.artist-initials {
  font-weight: 700;
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.artist-name {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.artist-genre {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.artists-count {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  width: 100%;
}

/* CTA */
.cta {
  padding: 5rem 2rem;
  background: #0a0a0a;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 2rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.platforms {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1a9b99;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-how-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .how-steps {
    flex-direction: column;
  }

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

  .artist-cover {
    aspect-ratio: 3/4;
  }

  .nav-links {
    display: none;
  }
}

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

  .artist-cover {
    aspect-ratio: 1/1;
  }

  .artist-initials {
    font-size: 1.5rem;
  }

  .hero-badges {
    gap: 0.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
