.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  margin-top: 72px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fade-in-up 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.5;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  align-items: center;
  padding: var(--space-2xl) 0;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.platform-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-item:hover .platform-icon {
  box-shadow: var(--shadow-lg);
}

.platform-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  fill: white;
}

.platform-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.platform-item:hover span {
  color: var(--text-primary);
}

/* Platform Colors */
.platform-icon.tiktok {
  background: linear-gradient(135deg, #000000 0%, #EE1D52 100%);
}

.platform-icon.instagram {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}

.platform-icon.youtube {
  background: #FF0000;
}

.platform-icon.facebook {
  background: #1877F2;
}

.platform-icon.twitter {
  background: #000000;
}

@media (prefers-color-scheme: dark) {
  .platform-icon.twitter {
    background: #1DA1F2;
  }
}

.platform-icon.spotify {
  background: #1DB954;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 64px);
    padding: 80px 0 60px;
    margin-top: 64px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: var(--space-xl);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .hero-platforms {
    gap: var(--space-lg);
  }
  
  .platform-icon {
    width: 48px;
    height: 48px;
  }
  
  .platform-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}