/* ============================================
   SILENT STUDIOS — CINEMATIC VISIONARY THEME
   ============================================ */

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

/* ── CSS CUSTOM PROPERTIES ───────────────── */
:root {
  --bg: #05070A;
  --bg-2: #080b10;
  --bg-3: #0d1117;
  --cyan: #00E5FF;
  --cyan-dim: rgba(0, 229, 255, 0.15);
  --cyan-glow: rgba(0, 229, 255, 0.4);
  --purple: #7000FF;
  --purple-dim: rgba(112, 0, 255, 0.2);
  --text: #FFFFFF;
  --text-muted: #A0AEC0;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(14px);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-cyan: 0 0 30px rgba(0, 229, 255, 0.25);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ── UTILITIES ───────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--cyan) 0%, #00b8d9 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--cyan-glow), 0 8px 20px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.btn-secondary:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ── SECTION HEADERS ─────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.section-header .section-tag {
  justify-content: center;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── SCROLL REVEAL ANIMATIONS ────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease calc(var(--delay, 0s)),
    transform 0.7s ease calc(var(--delay, 0s));
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease calc(var(--delay, 0s));
}

.revealed.reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.revealed.reveal-fade {
  opacity: 1;
}

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

.navbar.scrolled {
  background: rgba(5, 7, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

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

.logo-silent {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--text);
}

.logo-studio {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--cyan);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--cyan);
  color: var(--cyan) !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 18px var(--cyan-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-spotlight {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(0, 229, 255, 0.08) 0%,
      rgba(112, 0, 255, 0.06) 40%,
      transparent 70%);
  animation: spotPulse 6s ease-in-out infinite alternate;
}

@keyframes spotPulse {
  0% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  background: var(--cyan-dim);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  margin-bottom: 28px;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1.3;
}

.hero-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(1.4);
    opacity: 0.5;
  }
}

/* Hero mic */
.hero-mic-stage {
  position: absolute;
  bottom: 0;
  right: 8%;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.mic-svg {
  width: 180px;
  opacity: 0.8;
}

.mic-pulse-ring {
  animation: pulsering 3s ease-in-out infinite;
}

@keyframes pulsering {

  0%,
  100% {
    opacity: 0.3;
    r: 35px;
  }

  50% {
    opacity: 0.8;
    r: 42px;
  }
}

/* ── STATS BAND ───────────────────────────── */
.stats-band {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(0, 229, 255, 0.03) 50%, var(--bg-2) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cyan);
  vertical-align: super;
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--glass-border);
}

/* ── SERVICES ──────────────────────────────── */
.services {
  background: var(--bg);
}

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

.service-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: var(--shadow-cyan), var(--shadow-card);
  transform: translateY(-4px);
  background: rgba(0, 229, 255, 0.03);
}

.service-card.featured {
  border-color: rgba(0, 229, 255, 0.4);
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.06) 0%, rgba(112, 0, 255, 0.06) 100%);
  box-shadow: var(--shadow-cyan);
}

.service-card.wide {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 20px;
}

.service-content-wide {
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 4px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.service-icon svg {
  width: 52px;
  height: 52px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-list {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.service-list.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.service-cta {
  margin-top: auto;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  gap: 8px;
  text-shadow: 0 0 10px var(--cyan-glow);
}

/* ── PORTFOLIO ─────────────────────────────── */
.portfolio {
  background: var(--bg-2);
}

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.track-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: var(--transition);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 16px 24px;
  align-items: center;
}

.track-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: var(--shadow-card);
}

.track-card.playing {
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.04);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.track-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  opacity: 0.6;
}

.track-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.track-genre {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Waveform */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 48px;
  padding: 0 8px;
}

.wf-bar {
  width: 3px;
  border-radius: 2px;
  background: rgba(0, 229, 255, 0.25);
  transition: height 0.1s ease;
  flex-shrink: 0;
}

.wf-bar:nth-child(1) {
  height: 20%;
}

.wf-bar:nth-child(2) {
  height: 50%;
}

.wf-bar:nth-child(3) {
  height: 80%;
}

.wf-bar:nth-child(4) {
  height: 40%;
}

.wf-bar:nth-child(5) {
  height: 100%;
}

.wf-bar:nth-child(6) {
  height: 60%;
}

.wf-bar:nth-child(7) {
  height: 30%;
}

.wf-bar:nth-child(8) {
  height: 75%;
}

.wf-bar:nth-child(9) {
  height: 55%;
}

.wf-bar:nth-child(10) {
  height: 90%;
}

.wf-bar:nth-child(11) {
  height: 45%;
}

.wf-bar:nth-child(12) {
  height: 70%;
}

.wf-bar:nth-child(13) {
  height: 25%;
}

.wf-bar:nth-child(14) {
  height: 85%;
}

.wf-bar:nth-child(15) {
  height: 50%;
}

.wf-bar:nth-child(16) {
  height: 65%;
}

.wf-bar:nth-child(17) {
  height: 35%;
}

.wf-bar:nth-child(18) {
  height: 95%;
}

.wf-bar:nth-child(19) {
  height: 55%;
}

.wf-bar:nth-child(20) {
  height: 40%;
}

.wf-bar:nth-child(21) {
  height: 70%;
}

.wf-bar:nth-child(22) {
  height: 30%;
}

.wf-bar:nth-child(23) {
  height: 80%;
}

.wf-bar:nth-child(24) {
  height: 50%;
}

.wf-bar:nth-child(25) {
  height: 20%;
}

.wf-bar:nth-child(26) {
  height: 60%;
}

.wf-bar:nth-child(27) {
  height: 45%;
}

.wf-bar:nth-child(28) {
  height: 90%;
}

.wf-bar:nth-child(29) {
  height: 35%;
}

.wf-bar:nth-child(30) {
  height: 65%;
}

.track-card.playing .wf-bar {
  background: var(--cyan);
  animation: wfAnimation 0.6s ease-in-out infinite alternate;
}

.track-card.playing .wf-bar:nth-child(even) {
  animation-delay: 0.1s;
}

.track-card.playing .wf-bar:nth-child(3n) {
  animation-delay: 0.2s;
}

.track-card.playing .wf-bar:nth-child(5n) {
  animation-delay: 0.35s;
}

@keyframes wfAnimation {
  from {
    transform: scaleY(0.4);
    opacity: 0.7;
  }

  to {
    transform: scaleY(1.0);
    opacity: 1;
  }
}

/* Track Controls */
.track-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  grid-column: 1 / -1;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #00b8d9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: #000;
}

.play-btn:hover {
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: scale(1.1);
}

.play-btn svg {
  width: 22px;
  height: 22px;
}

.icon-pause {
  display: none;
}

.track-card.playing .icon-play {
  display: none;
}

.track-card.playing .icon-pause {
  display: block;
}

.track-duration {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--glass-border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transition: width 0.5s linear;
}

.volume-slider {
  width: 80px;
  height: 4px;
  appearance: none;
  background: var(--glass-border);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
}

/* ── VIDEO PORTFOLIO ──────────────────────── */
.video-portfolio {
  background: var(--bg);
}

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

.video-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.video-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── ABOUT ──────────────────────────────────── */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.about-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: spin 8s linear infinite;
  border-top-color: transparent;
  border-left-color: transparent;
}

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

.avatar-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  border: 2px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
}

.about-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.about-role {
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge {
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: var(--glass-bg);
}

.about-studio-tag {
  margin-top: 16px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  flex-shrink: 0;
  box-shadow: 0 0 8px #00ff88;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-content p strong {
  color: var(--text);
}

.about-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PROCESS ──────────────────────────────── */
.process {
  background: var(--bg-2);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 32px;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  opacity: 0.5;
  margin-bottom: -8px;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-icon:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.process-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.process-connector {
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  align-self: center;
  margin-top: -30px;
  position: relative;
  opacity: 0.4;
}

/* ── BOOKING ──────────────────────────────── */
.booking {
  background: var(--bg);
}

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

.booking-calendly,
.booking-form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-calendly h3,
.booking-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.booking-calendly p,
.booking-form p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.calendly-wrapper {
  flex: 1;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.calendly-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
  border: 1px dashed rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-sm);
}

.calendly-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}

.calendly-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  resize: vertical;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-3);
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.9rem;
  padding: 12px 16px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-sm);
}

.form-success.show {
  display: flex;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--cyan);
}

.contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--glass-border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.footer-links h4,
.footer-contact-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info p,
.footer-contact-info a {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  transition: var(--transition);
}

.footer-contact-info a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--cyan);
  transition: var(--transition);
}

.footer-bottom a:hover {
  text-shadow: 0 0 8px var(--cyan-glow);
}

/* ── WHATSAPP BUBBLE ──────────────────────── */
.whatsapp-bubble {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}

.whatsapp-bubble svg {
  width: 28px;
  height: 28px;
}

.whatsapp-bubble:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-bubble::before {
  content: 'Chat with a Producer now';
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--glass-border);
}

.whatsapp-bubble:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ── AUDIO VISUALIZER BAR ─────────────────── */
.audio-viz-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: 3px;
  display: none;
  gap: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
  background-size: 200% 100%;
}

.audio-viz-bar.active {
  display: flex;
  animation: vizGradient 3s linear infinite;
  box-shadow: 0 -2px 20px rgba(0, 229, 255, 0.5);
}

@keyframes vizGradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.wide {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 7, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 100px 32px 40px;
    justify-content: flex-start;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 20px;
    display: inline-block;
    text-align: center;
  }

  .nav-hamburger {
    display: flex;
  }

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

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

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-connector {
    width: 1px;
    height: 40px;
    flex: 0 0 40px;
    margin: 0;
  }

  .track-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-mic-stage {
    display: none;
  }

  .stat-divider {
    display: none;
  }

  .stats-grid {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .track-card {
    padding: 20px 16px;
  }

  .booking-calendly,
  .booking-form {
    padding: 24px;
  }
}