/* ===== CSS Variables & Reset ===== */
:root {
  /* Core palette */
  --primary: #d4a574;
  --primary-dark: #b8895a;
  --accent: #a855f7;
  --davan-1: #c8872e;
  --davan-2: #8b1a1a;
  --roxana-1: #2dd4bf;
  --roxana-2: #6366f1;
  --roxana-3: #c084fc;

  /* Backgrounds */
  --bg: #08080c;
  --bg-card: #0e0e14;
  --bg-card-hover: #15151f;
  --border: rgba(255, 255, 255, 0.06);

  /* Text */
  --text: #d4d4d8;
  --text-muted: #71717a;
  --text-bright: #fafafa;

  /* Effects */
  --gradient: linear-gradient(135deg, #d4a574, #a855f7);
  --gradient-subtle: linear-gradient(135deg, rgba(212,165,116,0.12), rgba(168,85,247,0.12));
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; overflow: hidden; }

.serif-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}

/* ===== Tags & Titles ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-desc { color: var(--text-muted); font-size: 1.1rem; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-bright);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(212, 165, 116, 0.08);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 12, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar.scrolled .logo-img {
  height: 34px;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.5px;
}

.logo-al {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dot {
  font-weight: 400;
  font-size: 0.55em;
  color: var(--text-muted);
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient);
  border-radius: 50px;
  color: white !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,165,116,0.3); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero — Cinematic ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
}

/* Video-style background */
.hero-video-bg {
  position: absolute; inset: 0;
  z-index: 0;
}

.hero-video-bg canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,12,0.4) 0%, rgba(8,8,12,0.1) 40%, rgba(8,8,12,0.6) 80%, rgba(8,8,12,1) 100%),
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(212,165,116,0.08), transparent),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(168,85,247,0.06), transparent);
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

/* Waveform overlay */
.hero-waveform {
  position: absolute;
  bottom: 140px; left: 0; right: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
.hero-waveform svg { width: 100%; height: 120px; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.hero-top-row { margin-bottom: 28px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(212,165,116,0.08);
  border: 1px solid rgba(212,165,116,0.15);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  animation: fadeInUp 0.8s ease;
}

.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-bright);
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}
.title-line-1 { animation-delay: 0.1s; }
.title-line-2 { animation-delay: 0.25s; }

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 auto 40px;
  max-width: 500px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.btn-glow {
  position: relative;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--gradient);
  filter: blur(16px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.3s;
}
.btn-glow:hover::after { opacity: 0.6; }

/* Showcase cards */
.hero-showcase {
  position: relative;
  z-index: 2;
  padding: 40px 0 0;
  overflow: hidden;
}

.showcase-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0 24px 20px;
  animation: fadeInUp 0.8s ease 0.55s both;
}

.showcase-card {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}
.showcase-card.active,
.showcase-card:hover {
  opacity: 1;
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.showcase-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.davan-gradient { background: linear-gradient(135deg, var(--davan-1), var(--davan-2)); }
.roxana-gradient { background: linear-gradient(135deg, var(--roxana-1), var(--roxana-2), var(--roxana-3)); }

/* Motion bars (DAVAN) */
.showcase-motion {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

.motion-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 80px;
}

.motion-bars span {
  display: block;
  width: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  animation: barPulse 1.2s ease infinite;
}
.motion-bars span:nth-child(1)  { height: 20%; animation-delay: 0.0s; }
.motion-bars span:nth-child(2)  { height: 40%; animation-delay: 0.05s; }
.motion-bars span:nth-child(3)  { height: 70%; animation-delay: 0.1s; }
.motion-bars span:nth-child(4)  { height: 50%; animation-delay: 0.15s; }
.motion-bars span:nth-child(5)  { height: 90%; animation-delay: 0.2s; }
.motion-bars span:nth-child(6)  { height: 60%; animation-delay: 0.25s; }
.motion-bars span:nth-child(7)  { height: 100%; animation-delay: 0.3s; }
.motion-bars span:nth-child(8)  { height: 80%; animation-delay: 0.35s; }
.motion-bars span:nth-child(9)  { height: 45%; animation-delay: 0.4s; }
.motion-bars span:nth-child(10) { height: 95%; animation-delay: 0.45s; }
.motion-bars span:nth-child(11) { height: 55%; animation-delay: 0.5s; }
.motion-bars span:nth-child(12) { height: 85%; animation-delay: 0.55s; }
.motion-bars span:nth-child(13) { height: 35%; animation-delay: 0.6s; }
.motion-bars span:nth-child(14) { height: 75%; animation-delay: 0.65s; }
.motion-bars span:nth-child(15) { height: 50%; animation-delay: 0.7s; }
.motion-bars span:nth-child(16) { height: 90%; animation-delay: 0.75s; }
.motion-bars span:nth-child(17) { height: 40%; animation-delay: 0.8s; }
.motion-bars span:nth-child(18) { height: 70%; animation-delay: 0.85s; }
.motion-bars span:nth-child(19) { height: 30%; animation-delay: 0.9s; }
.motion-bars span:nth-child(20) { height: 60%; animation-delay: 0.95s; }

/* Wave animation (ROXANA) */
.motion-wave {
  position: absolute; inset: 0;
}
.motion-wave svg { width: 100%; height: 100%; }

/* Play button */
.showcase-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.showcase-card:hover .showcase-play {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
}

.showcase-label {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
}
.showcase-code {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 8px;
  background: rgba(0,0,0,0.4);
  border-radius: 3px;
  color: var(--davan-1);
}
.roxana-code-label { color: var(--roxana-1); }
.showcase-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
  text-transform: uppercase;
}

.showcase-meta {
  padding: 14px 16px;
}
.showcase-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-bright);
  margin-bottom: 2px;
}
.showcase-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Mythology ticker */
.hero-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 20px;
}

.ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
}
.ticker-dot { color: rgba(212,165,116,0.2); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 100px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===== About / Vision ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-visual { display: flex; justify-content: center; }

.vision-graphic {
  position: relative;
  width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
}

.vision-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinSlow 30s linear infinite;
}
.ring-outer {
  width: 280px; height: 280px;
  border-color: rgba(212,165,116,0.15);
}
.ring-inner {
  width: 200px; height: 200px;
  border-color: rgba(168,85,247,0.15);
  animation-direction: reverse;
  animation-duration: 20s;
}
.vision-center svg { width: 120px; height: 120px; }

.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gradient-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.highlight-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--primary) !important;
  margin-top: 24px !important;
}

.pillar-icon svg { width: 20px; height: 20px; }
.pillar strong { display: block; color: var(--text-bright); font-size: 0.95rem; margin-bottom: 2px; }
.pillar span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== What We Do ===== */
.what-we-do {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,165,116,0.04), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(168,85,247,0.04), transparent 50%);
}

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

.wwd-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wwd-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.wwd-card-featured {
  border-color: rgba(168,85,247,0.2);
  background: linear-gradient(180deg, rgba(168,85,247,0.06), var(--bg-card));
}

.wwd-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wwd-music {
  background: linear-gradient(135deg, rgba(200,135,46,0.15), rgba(139,26,26,0.15));
}
.wwd-visuals-art {
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(99,102,241,0.15));
}
.wwd-podcast {
  background: linear-gradient(135deg, rgba(45,212,191,0.12), rgba(99,102,241,0.12));
}

.wwd-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 2;
}

/* EQ bars for Music card */
.wwd-eq {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 20px 12px;
}
.wwd-eq span {
  display: block;
  width: 6px;
  background: rgba(200,135,46,0.3);
  border-radius: 3px 3px 0 0;
  animation: barPulse 1s ease infinite;
}
.wwd-eq span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.wwd-eq span:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.wwd-eq span:nth-child(3)  { height: 80%; animation-delay: 0.2s; }
.wwd-eq span:nth-child(4)  { height: 45%; animation-delay: 0.3s; }
.wwd-eq span:nth-child(5)  { height: 95%; animation-delay: 0.4s; }
.wwd-eq span:nth-child(6)  { height: 55%; animation-delay: 0.5s; }
.wwd-eq span:nth-child(7)  { height: 70%; animation-delay: 0.6s; }
.wwd-eq span:nth-child(8)  { height: 40%; animation-delay: 0.7s; }
.wwd-eq span:nth-child(9)  { height: 85%; animation-delay: 0.8s; }
.wwd-eq span:nth-child(10) { height: 50%; animation-delay: 0.9s; }

/* Floating frames for Visual card */
.wwd-frames {
  position: absolute; inset: 0;
  pointer-events: none;
}
.wwd-frame {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.frame-1 {
  width: 60px; height: 80px;
  top: 20px; left: 20px;
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(99,102,241,0.1));
  animation: floatFrame 6s ease infinite;
}
.frame-2 {
  width: 80px; height: 60px;
  bottom: 20px; right: 20px;
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(168,85,247,0.1));
  animation: floatFrame 7s ease infinite reverse;
}
.frame-3 {
  width: 50px; height: 50px;
  top: 50%; right: 30%;
  transform: translateY(-50%) rotate(12deg);
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(45,212,191,0.1));
  animation: floatFrame 5s ease infinite 1s;
}

/* Soundwave for Podcast card */
.wwd-soundwave {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
}
.wwd-soundwave svg { width: 100%; height: 40px; }

.wwd-content {
  padding: 28px;
}
.wwd-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.wwd-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.wwd-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wwd-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Podcast Section ===== */
.podcast {
  position: relative;
}

.podcast-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(45,212,191,0.04), transparent),
    radial-gradient(ellipse 40% 50% at 30% 70%, rgba(212,165,116,0.03), transparent);
  pointer-events: none;
}

.podcast-video-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.podcast-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.podcast-video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,12,0.8) 0%, rgba(8,8,12,0.4) 30%, rgba(8,8,12,0.4) 70%, rgba(8,8,12,0.9) 100%);
}

.podcast .container {
  position: relative;
  z-index: 1;
}

/* Featured episode */
.podcast-featured {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.podcast-featured-visual {
  position: relative;
}

.podcast-cover-art {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.podcast-cover-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.podcast-cover-gradient svg { width: 60%; height: 60%; opacity: 0.6; }

.podcast-live-wave {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.podcast-live-wave span {
  display: block;
  width: 3px;
  background: rgba(45,212,191,0.4);
  border-radius: 2px;
  animation: barPulse 1.4s ease infinite;
}
.podcast-live-wave span:nth-child(odd) { animation-delay: 0.1s; }
.podcast-live-wave span:nth-child(3n) { animation-delay: 0.3s; background: rgba(212,165,116,0.3); }
.podcast-live-wave span:nth-child(5n) { animation-delay: 0.5s; }
.podcast-live-wave span:nth-child(7n) { animation-delay: 0.7s; background: rgba(168,85,247,0.3); }
.podcast-live-wave span:nth-child(1)  { height: 30%; }
.podcast-live-wave span:nth-child(2)  { height: 50%; }
.podcast-live-wave span:nth-child(3)  { height: 75%; }
.podcast-live-wave span:nth-child(4)  { height: 40%; }
.podcast-live-wave span:nth-child(5)  { height: 90%; }
.podcast-live-wave span:nth-child(6)  { height: 55%; }
.podcast-live-wave span:nth-child(7)  { height: 100%; }
.podcast-live-wave span:nth-child(8)  { height: 65%; }
.podcast-live-wave span:nth-child(9)  { height: 35%; }
.podcast-live-wave span:nth-child(10) { height: 80%; }
.podcast-live-wave span:nth-child(11) { height: 45%; }
.podcast-live-wave span:nth-child(12) { height: 95%; }
.podcast-live-wave span:nth-child(13) { height: 30%; }
.podcast-live-wave span:nth-child(14) { height: 70%; }
.podcast-live-wave span:nth-child(15) { height: 50%; }
.podcast-live-wave span:nth-child(16) { height: 85%; }
.podcast-live-wave span:nth-child(17) { height: 40%; }
.podcast-live-wave span:nth-child(18) { height: 60%; }
.podcast-live-wave span:nth-child(19) { height: 75%; }
.podcast-live-wave span:nth-child(20) { height: 45%; }
.podcast-live-wave span:nth-child(21) { height: 90%; }
.podcast-live-wave span:nth-child(22) { height: 55%; }
.podcast-live-wave span:nth-child(23) { height: 35%; }
.podcast-live-wave span:nth-child(24) { height: 80%; }
.podcast-live-wave span:nth-child(25) { height: 50%; }
.podcast-live-wave span:nth-child(26) { height: 65%; }
.podcast-live-wave span:nth-child(27) { height: 40%; }
.podcast-live-wave span:nth-child(28) { height: 95%; }
.podcast-live-wave span:nth-child(29) { height: 55%; }
.podcast-live-wave span:nth-child(30) { height: 70%; }

/* Player bar */
.podcast-player {
  margin-top: 16px;
}
.player-progress { }
.player-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.player-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
}
.player-times {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Featured info */
.podcast-ep-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 12px;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.2);
  border-radius: 50px;
  color: var(--roxana-1);
  margin-bottom: 16px;
}

.podcast-ep-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.3;
  margin-bottom: 16px;
}

.podcast-ep-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.podcast-ep-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.ep-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ep-meta-item svg { opacity: 0.5; }

.podcast-play-btn {
  padding: 12px 28px;
}

/* Episode list */
.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.episode-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.episode-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.08);
}

.episode-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  font-variant-numeric: tabular-nums;
  width: 32px;
  flex-shrink: 0;
}

.episode-info {
  flex: 1;
  min-width: 0;
}
.episode-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.episode-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.episode-meta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.episode-artist-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.davan-ep {
  background: rgba(200,135,46,0.15);
  color: var(--davan-1);
}
.roxana-ep {
  background: rgba(45,212,191,0.12);
  color: var(--roxana-1);
}
.studio-ep {
  background: rgba(168,85,247,0.12);
  color: var(--accent);
}

.episode-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.episode-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.episode-play:hover {
  background: var(--gradient-subtle);
  border-color: rgba(212,165,116,0.3);
  color: var(--primary);
}
.episode-play:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ===== Artist Sections ===== */
.artist-section { padding: 140px 0; }

.artist-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.davan-bg {
  background:
    radial-gradient(ellipse 50% 40% at 20% 50%, rgba(200,135,46,0.06), transparent),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(139,26,26,0.05), transparent);
}
.roxana-bg {
  background:
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(45,212,191,0.05), transparent),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(192,132,252,0.05), transparent);
}

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

.artist-label-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.artist-code {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 6px 14px;
  border: 1px solid rgba(200,135,46,0.3);
  border-radius: 4px;
  color: var(--davan-1);
  font-family: 'Inter', monospace;
}
.roxana-code {
  border-color: rgba(45,212,191,0.3);
  color: var(--roxana-1);
}

.artist-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.artist-grid-reverse {
  grid-template-columns: 1fr 400px;
}

/* Portrait */
.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.portrait-placeholder {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.portrait-inner {
  text-align: center;
}
.portrait-inner svg { width: 120px; height: 120px; opacity: 0.5; }
.portrait-label {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.portrait-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  border-radius: 50%;
  filter: blur(30px);
}
.davan-glow { background: rgba(200,135,46,0.3); }
.roxana-glow { background: rgba(45,212,191,0.3); }

.davan-frame { border: 1px solid rgba(200,135,46,0.15); }
.roxana-frame { border: 1px solid rgba(45,212,191,0.15); }

.artist-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.artist-stat { text-align: center; }
.stat-val { display: block; font-size: 1.2rem; font-weight: 800; color: var(--text-bright); }
.stat-key { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 30px; background: var(--border); }

/* Artist Info */
.artist-name {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 4px;
}
.roxana-name {
  background: linear-gradient(135deg, var(--roxana-1), var(--roxana-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.artist-title-line {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.artist-etymology {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.persian-text {
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
}
.etymology-meaning {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.artist-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Sound Signature Tags */
.sound-signature, .mythology-map, .bpm-range { margin-bottom: 28px; }

.sig-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sig-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.sig-tag {
  padding: 6px 14px;
  background: rgba(200,135,46,0.1);
  border: 1px solid rgba(200,135,46,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--davan-1);
}
.roxana-tags .sig-tag {
  background: rgba(45,212,191,0.08);
  border-color: rgba(45,212,191,0.2);
  color: var(--roxana-1);
}

/* Mythology Map */
.myth-items { display: flex; flex-direction: column; gap: 8px; }

.myth-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.myth-flag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--davan-1);
  width: 70px;
  flex-shrink: 0;
}
.roxana-flag { color: var(--roxana-1); width: 90px; }
.myth-legends { font-size: 0.9rem; color: var(--text-muted); }

/* BPM Range */
.bpm-bar {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  margin-top: 24px;
}
.bpm-fill {
  position: absolute;
  left: 10%; right: 30%;
  height: 100%;
  background: linear-gradient(90deg, var(--roxana-1), var(--roxana-3));
  border-radius: 3px;
}
.bpm-label {
  position: absolute;
  top: -28px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-bright);
}
.bpm-label span { display: block; font-weight: 400; font-size: 0.7rem; color: var(--text-muted); }
.bpm-low { left: 10%; }
.bpm-high { right: 30%; text-align: right; }

/* Album Preview */
.artist-album-preview { margin-top: 32px; }

.album-card {
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.album-card::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.album-info { position: relative; z-index: 1; }
.album-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}
.album-name {
  display: block;
  font-size: 1.4rem;
  color: white;
  margin: 6px 0;
}
.album-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== Releases ===== */
.releases {
  background: radial-gradient(ellipse at 50% 50%, rgba(212,165,116,0.04), transparent 60%);
}

.releases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.release-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.release-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.release-cover {
  width: 160px; height: 160px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.release-cover-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: var(--transition);
  cursor: pointer;
}
.release-cover-inner:hover { background: rgba(0,0,0,0.1); }

.release-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 10px;
  background: rgba(200,135,46,0.9);
  border-radius: 4px;
  color: white;
}
.roxana-badge { background: rgba(45,212,191,0.9); }

.release-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.release-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.release-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.release-meta { display: flex; gap: 8px; }
.release-tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: rgba(200,135,46,0.1);
  border: 1px solid rgba(200,135,46,0.2);
  border-radius: 50px;
  color: var(--davan-1);
  font-weight: 600;
}
.roxana-tag {
  background: rgba(45,212,191,0.08);
  border-color: rgba(45,212,191,0.2);
  color: var(--roxana-1);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 32px;
}
.contact-detail { display: flex; align-items: center; gap: 14px; color: var(--text); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gradient-subtle);
  border-color: rgba(212,165,116,0.3);
  color: var(--primary);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.4;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(212, 165, 116, 0.03);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 12px;
  margin-bottom: 8px;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 0;
  max-width: 320px;
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text-bright); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes barPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes floatFrame {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual { order: -1; }
  .artist-grid,
  .artist-grid-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .artist-grid-reverse .artist-portrait { order: -1; }
  .wwd-grid { grid-template-columns: 1fr; }
  .podcast-featured { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
  .podcast-cover-art { max-width: 360px; margin: 0 auto; }
  .releases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .artist-section { padding: 100px 0; }

  .nav-toggle { display: flex; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%; max-width: 320px; height: 100vh;
    background: rgba(14, 14, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-scroll { display: none; }
  .showcase-track { flex-direction: column; align-items: center; }
  .showcase-card { width: 100%; max-width: 340px; }

  .artist-name { font-size: clamp(2.5rem, 10vw, 4rem); }
  .portrait-placeholder { aspect-ratio: 1; }

  .episode-card { flex-wrap: wrap; gap: 12px; }
  .episode-info { min-width: 100%; order: 2; }
  .episode-info h4, .episode-info p { white-space: normal; }
  .episode-number { order: 1; }
  .episode-meta-col { order: 3; flex-direction: row; gap: 10px; }
  .episode-play { order: 4; }
  .podcast-ep-meta { flex-wrap: wrap; gap: 12px; }
  .release-card { flex-direction: column; }
  .release-cover { width: 100%; height: 200px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; }

  .bpm-label { font-size: 0.7rem; }
  .bpm-high { right: 10%; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .sig-tags { gap: 6px; }
  .sig-tag { font-size: 0.7rem; padding: 5px 10px; }
}

/* ===== Real Media Integration ===== */

/* Logo image */
.logo-img {
  height: 40px;
  width: auto;
}

/* Hero background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

/* Artist portrait images */
.portrait-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Showcase card video */
.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
