/* ==========================================================================
   AIRTIGHT AUDIO - DESIGN SYSTEM & STYLING
   ========================================================================== */

/* Color and Layout Tokens */
:root {
  --bg-primary: #0a0e2a;      /* Deep Midnight Blue */
  --bg-secondary: #001f3f;    /* Navy Blue */
  --bg-card: rgba(10,14,42,0.8);
  --bg-card-hover: rgba(18, 24, 40, 0.92);
  --border-color: rgba(255,255,255,0.12);
  --border-hover: rgba(255,165,0,0.6); /* Deep Orange hover */
  --border-color-hover: rgba(0, 240, 255, 0.4);
  --blue: #00aaff;            /* Vibrant Cyan Blue */
  --orange: #ff7a00;          /* Deep Orange Accent */
  --gradient-main: linear-gradient(135deg, #001f3f, #00aaff, #ff7a00);
  
  /* Vibrant Pro Studio Accent Colors */
  --accent-blue: #0077ff;
  --accent-cyan-blue: #00d2ff;
  --accent-cyan: #00f0ff;
  --accent-purple: #e65100;
  --accent-gold: #ff7a00;
  --accent-gold-light: #ffb74d;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-gold) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, #ff5500 100%);
  --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  
  /* Glows */
  --blue-glow: rgba(0, 240, 255, 0.35);
  --gold-glow: rgba(255, 122, 0, 0.3);
  --shadow-glow: 0 0 35px rgba(0, 240, 255, 0.2);
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   TAURI DESKTOP INTEGRATION & NAVIGATION GUARDS (AGENTS.md Rule #5)
   ========================================================================== */
body.tauri-app .external-link,
body.tauri-app nav a[href*="http"],
body.tauri-app nav a[href^="https://"],
body.tauri-app .tauri-hide {
  display: none !important;
}

body.tauri-app .tauri-nav-controls {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.tauri-nav-controls {
  display: none;
}

.tauri-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.tauri-nav-btn:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: var(--accent-cyan);
}

/* ==========================================================================
   BLUE BEAT PRODUCTIONS - ULTRA-PREMIUM GLASSMORPHIC NAVBAR (#nav)
   ========================================================================== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 12px 0;
  background: rgba(6, 9, 22, 0.88) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.22) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05) inset !important;
  transition: all 0.3s ease !important;
}
#nav .nav-in {
  max-width: 1440px; width: 94%; margin: 0 auto;
  display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 16px !important;
}
#nav .logo { display: flex !important; align-items: center !important; gap: 12px !important; text-decoration: none !important; }
#nav .logo-emblem {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(0, 210, 255, 0.2));
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
  transition: transform 0.3s ease; flex-shrink: 0;
}
#nav .logo:hover .logo-emblem { transform: scale(1.05) rotate(2deg); }
#nav .logo-emblem img { width: 28px; height: auto; border-radius: 4px; }
#nav .logo-text-wrap { display: flex; flex-direction: column; }
#nav .logo-title {
  font-family: 'Outfit', sans-serif !important; font-size: 1.12rem !important; font-weight: 900 !important;
  letter-spacing: 1.5px !important;
  background: linear-gradient(135deg, #ffffff 0%, #e2c275 60%, #c5a059 100%) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; line-height: 1.1 !important;
}
#nav .logo-sub {
  font-family: 'Outfit', sans-serif !important; font-size: 0.6rem !important; font-weight: 800 !important;
  letter-spacing: 2px !important; color: #00d2ff !important; text-transform: uppercase !important; line-height: 1 !important; margin-top: 2px !important;
}
#nav .nav-links { display: flex !important; gap: 4px !important; list-style: none !important; align-items: center !important; margin: 0 !important; padding: 0 !important; }
#nav .nav-item, #nav .nav-links a {
  font-family: 'Outfit', sans-serif !important; font-size: 0.86rem !important; font-weight: 600 !important;
  color: #94a3b8 !important; text-decoration: none !important; padding: 8px 14px !important; border-radius: 20px !important;
  border: 1px solid transparent !important; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap !important; display: inline-block !important;
}
#nav .nav-item:hover, #nav .nav-links a:hover { color: #ffffff !important; background: rgba(255, 255, 255, 0.08) !important; border-color: rgba(255, 255, 255, 0.15) !important; transform: translateY(-1px) !important; }
#nav .nav-item.active, #nav .nav-links a.active {
  color: #e2c275 !important; background: linear-gradient(135deg, rgba(197, 160, 89, 0.18) 0%, rgba(0, 210, 255, 0.1) 100%) !important;
  border-color: rgba(197, 160, 89, 0.4) !important; box-shadow: 0 0 16px rgba(197, 160, 89, 0.2) !important;
}
#nav .nav-actions { display: flex !important; align-items: center !important; gap: 12px !important; }
#nav .nav-cta {
  padding: 9px 20px !important; border-radius: 12px !important;
  background: linear-gradient(135deg, #c5a059 0%, #e2c275 50%, #ff7a00 100%) !important;
  color: #060919 !important; font-family: 'Outfit', sans-serif !important; font-size: 0.85rem !important; font-weight: 800 !important;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35) !important; text-decoration: none !important; transition: all 0.25s ease !important; white-space: nowrap !important; display: inline-block !important;
}
#nav .nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 28px rgba(197, 160, 89, 0.55) !important; filter: brightness(1.08) !important; }
#nav .mobile-nav-toggle { display: none; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; padding: 8px; border-radius: 10px; cursor: pointer; }
#nav .mobile-nav-drawer { display: none; flex-direction: column; gap: 8px; padding: 20px 24px; background: rgba(6, 9, 22, 0.96); backdrop-filter: blur(28px); border-bottom: 1px solid rgba(197, 160, 89, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
#nav .mobile-nav-drawer.open { display: flex !important; }
#nav .mobile-nav-item { font-family: 'Outfit', sans-serif !important; font-size: 1rem !important; font-weight: 600 !important; color: #94a3b8 !important; text-decoration: none !important; padding: 12px 16px !important; border-radius: 12px !important; border: 1px solid transparent !important; }
#nav .mobile-nav-item.active, #nav .mobile-nav-item:hover { color: #e2c275 !important; background: rgba(197, 160, 89, 0.15) !important; border-color: rgba(197, 160, 89, 0.3) !important; }
#nav .mobile-nav-cta { margin-top: 8px !important; padding: 14px !important; border-radius: 12px !important; text-align: center !important; background: linear-gradient(135deg, #c5a059 0%, #e2c275 50%, #ff7a00 100%) !important; color: #060919 !important; font-weight: 800 !important; text-decoration: none !important; font-size: 0.95rem !important; }
@media (max-width: 1080px) {
  #nav .nav-links { display: none !important; }
  #nav .mobile-nav-toggle { display: block !important; }
}

/* ==========================================================================
   SYNC PILOT / AIRTIGHT AUDIO - EXECUTIVE HEADER (.app-header)
   ========================================================================== */
header.app-header, .app-header {
  background: rgba(7, 10, 19, 0.88) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0 28px !important;
  height: 68px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.app-header .header-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  transition: transform 0.2s ease !important;
}

.app-header .header-logo:hover {
  transform: translateY(-1px) !important;
}

.app-header .logo-img-mark, .app-header .logo-svg-mark {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.45)) !important;
  border: 1px solid rgba(6, 182, 212, 0.4) !important;
}

.app-header .logo-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.12rem !important;
  letter-spacing: 0.06em !important;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  line-height: 1.1 !important;
}

.app-header .logo-sub {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  color: #06b6d4 !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin-top: 2px !important;
}

.app-header .header-nav {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.app-header .header-nav .nav-link, .app-header .header-nav a {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
  text-decoration: none !important;
  padding: 7px 16px !important;
  border-radius: 20px !important;
  border: 1px solid transparent !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap !important;
}

.app-header .header-nav .nav-link:hover, .app-header .header-nav a:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.app-header .header-nav .nav-link.active, .app-header .header-nav a.active {
  color: #06b6d4 !important;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%) !important;
  border-color: rgba(6, 182, 212, 0.35) !important;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.15) !important;
}

.app-header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.app-header .nav-account-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 8px 18px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #818cf8 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.app-header .nav-account-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 22px rgba(6, 182, 212, 0.5) !important;
  filter: brightness(1.08) !important;
}

.app-header .nav-menu-wrapper {
  position: relative !important;
}

.app-header .nav-menu-trigger {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.app-header .nav-menu-trigger:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(6, 182, 212, 0.4) !important;
  color: #06b6d4 !important;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.2) !important;
}

.app-header .nav-menu-dropdown {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  width: 250px !important;
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
  padding: 8px !important;
  z-index: 2000 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.app-header .nav-menu-dropdown.hidden {
  display: none !important;
}

.app-header .nav-menu-dropdown a {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: all 0.15s ease !important;
  white-space: nowrap !important;
}

.app-header .nav-menu-dropdown a svg {
  color: #06b6d4 !important;
  flex-shrink: 0 !important;
  transition: transform 0.15s ease !important;
}

.app-header .nav-menu-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.app-header .nav-menu-dropdown a:hover svg {
  transform: translateX(2px) !important;
}

@media (max-width: 860px) {
  .app-header { padding: 0 16px !important; }
  .app-header .header-nav { display: none !important; }
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Background Ambient Glows (Morphing Mesh Gradient) */
.ambient-glow {
  position: absolute;
  width: 75vw;
  height: 75vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(180px);
  z-index: -1;
  opacity: 0.28;
}

.glow-1 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.45) 0%, rgba(6, 182, 212, 0) 70%);
  top: -10%;
  left: -10%;
  animation: floatGlow1 35s infinite alternate ease-in-out;
}

.glow-2 {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(168, 85, 247, 0) 70%);
  top: 30%;
  right: -20%;
  animation: floatGlow2 40s infinite alternate ease-in-out;
  animation-delay: -8s;
}

.glow-3 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 70%);
  bottom: -20%;
  left: 15%;
  animation: floatGlow3 45s infinite alternate ease-in-out;
  animation-delay: -15s;
}

@keyframes floatGlow1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(12%, 8%) scale(1.15) rotate(120deg); }
  100% { transform: translate(-8%, -5%) scale(0.9) rotate(240deg); }
}

@keyframes floatGlow2 {
  0% { transform: translate(0, 0) scale(1.1) rotate(0deg); }
  50% { transform: translate(-10%, 15%) scale(0.9) rotate(-180deg); }
  100% { transform: translate(8%, -8%) scale(1.05) rotate(-360deg); }
}

@keyframes floatGlow3 {
  0% { transform: translate(0, 0) scale(0.9) rotate(0deg); }
  50% { transform: translate(15%, -12%) scale(1.1) rotate(90deg); }
  100% { transform: translate(-5%, 10%) scale(0.95) rotate(180deg); }
}

/* Utility Layouts */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Hide the duplicate player layouts */
#left-sidebar-playlist, 
#sitewide-player,
#floating-cta {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-gold) 100%);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary > * {
  position: relative;
  z-index: 2;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-glow));
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-glow));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

/* Badges */
.badge-container {
  margin-bottom: 20px;
}

.badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #c084fc;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Section Header styling */
.section-header {
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Header & Navigation Layout */
#site-header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: rgba(8, 8, 10, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

#site-header.scrolled {
  background: rgba(8, 8, 10, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.nav-menu ul {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: none;
}

/* Hero Section Layout */
#hero {
  padding-top: calc(var(--header-height) + 80px);
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Eyebrow tag row */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan, #06b6d4);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  background: rgba(6,182,212,0.06);
}

.hero-tag-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
}

/* Main headline */
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Ghost button variant */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  border-color: rgba(6,182,212,0.5);
  color: #06b6d4;
  background: rgba(6,182,212,0.06);
}

/* Social proof strip */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-divider {
  color: rgba(255,255,255,0.12);
  font-size: 1rem;
}

/* ── Right column: Cat Logo Frame ── */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo-frame {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
}

.hero-logo-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.22) 0%, transparent 70%);
  animation: hero-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(6,182,212,0.3);
  box-shadow: 0 0 60px rgba(6,182,212,0.18), 0 0 120px rgba(6,182,212,0.08), inset 0 0 40px rgba(0,0,0,0.5);
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.15);
  animation: hero-ring-spin 20s linear infinite;
  pointer-events: none;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06b6d4;
  box-shadow: 0 0 12px #06b6d4;
  transform: translateX(-50%);
}

@keyframes hero-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Streaming badge below logo */
.hero-stream-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  width: 100%;
  max-width: 360px;
  animation: float-badge 5s ease-in-out infinite;
}

.hero-stream-badge .card-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.hero-stream-badge .card-val {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* legacy kept for other cards */
.pulse-indicator {
  width: 12px;
  height: 12px;
  background: var(--accent-cyan, #06b6d4);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent-cyan, #06b6d4);
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan, #06b6d4);
  animation: pulse 1.8s infinite;
  opacity: 0.7;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.card-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.card-bg-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent-blue);
  filter: blur(50px);
  opacity: 0;
  transition: var(--transition-normal);
  pointer-events: none;
}

.bento-card:hover .card-bg-glow {
  opacity: 0.15;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 30px;
  transition: var(--transition-normal);
}

.bento-card:hover .card-icon {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  color: #a855f7;
  transform: scale(1.05);
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.detail-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-value {
  color: var(--accent-cyan);
  font-weight: 600;
}

.detail-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 50px;
}

/* Card sizes */
.card-large {
  grid-column: span 8;
}

.card-medium {
  grid-column: span 4;
}

.card-small {
  grid-column: span 4;
}

.card-half {
  grid-column: span 6;
}

/* Bento Card Media Showcase */
.card-media-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 19, 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card-media-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #020408;
}

.card-media-wrapper.contain {
  background: rgba(7, 10, 19, 0.6);
}

.card-media-wrapper.contain .card-media-img {
  object-fit: contain;
  width: 90%;
  height: 90%;
}

.media-caption {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(7, 10, 19, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  pointer-events: none;
  transition: var(--transition-normal);
  z-index: 5;
}

.bento-card:hover .media-caption {
  color: var(--text-primary);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.bento-card:hover .card-media-img {
  transform: scale(1.05);
}

/* Media Player Section */
.dark-accent-bg {
  background: var(--bg-secondary);
}

/* Console Quick Start Guide Plaque */
.console-guide-plaque {
  position: relative;
  margin: 0 auto 30px;
  max-width: 1200px;
  padding: 24px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 20, 38, 0.9) 0%, rgba(8, 12, 22, 0.95) 100%);
  border: 1px dashed rgba(6, 182, 212, 0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(6, 182, 212, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 10;
}

.console-guide-plaque.hidden {
  display: none !important;
}

.close-guide-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}
.close-guide-btn:hover {
  color: var(--accent-purple);
  transform: scale(1.1);
}

.plaque-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
}

.plaque-icon {
  font-size: 1.25rem;
}

.plaque-title {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.35);
}

.plaque-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .plaque-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .plaque-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .console-guide-plaque {
    padding: 20px;
  }
}

.plaque-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.02);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--accent-purple);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: monospace;
  box-shadow: 0 0 5px rgba(168, 85, 247, 0.4);
}

.plaque-step p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.plaque-step p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Collapsible Outboard Rack styles */
.btn-toggle-outboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(180deg, #1b2438 0%, #101625 100%);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 8px;
}

.btn-toggle-outboard:hover {
  border-color: var(--accent-gold);
  background: linear-gradient(180deg, #242e47 0%, #151d30 100%);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.btn-toggle-outboard .toggle-arrow {
  transition: transform 0.3s ease;
  color: var(--accent-gold);
}

.btn-toggle-outboard.open .toggle-arrow {
  transform: rotate(180deg);
}

.analog-rack-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.analog-rack-wrapper.open {
  max-height: 480px; /* high enough to show neve, ssl, la2a, and gear info box */
  opacity: 1;
}

/* 1. Console Chassis Bezel & Wood Panels */
.console-chassis {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.05),
              0 0 calc(15px + var(--beat-amplitude, 0) * 35px) rgba(6, 182, 212, calc(0.04 + var(--beat-amplitude, 0) * 0.3));
  transition: box-shadow 0.1s ease-out, border-color 0.4s ease;
  overflow: hidden;
  padding: 4px;
}

/* Wood Side Panels removed for a sleeker look */
.console-chassis::before {
  display: none;
}

.console-chassis::after {
  display: none;
}

/* Corner Screws removed for a cleaner look */
.console-screw {
  display: none;
}

/* Grid Layout & Panel Divisions */
.console-inner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  padding: 30px 42px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

.console-panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.console-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 12px;
}

.panel-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b5563;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.panel-led.led-cyan {
  background: #06b6d4;
  box-shadow: 0 0 10px #06b6d4, inset 0 1px 1px rgba(255,255,255,0.5);
}

.panel-led.led-gold {
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple), inset 0 1px 1px rgba(255,255,255,0.5);
}

.panel-led.led-purple {
  background: #a855f7;
  box-shadow: 0 0 10px #a855f7, inset 0 1px 1px rgba(255,255,255,0.5);
}

.panel-led.led-red {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444, inset 0 1px 1px rgba(255,255,255,0.5);
}

.panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* 2. Channel Strips (Playlist) & Item Formatting */
.track-list-wrapper {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.02);
  box-shadow: inset 0 4px 15px rgba(0,0,0,0.5);
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 410px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom scrollbars */
.track-list::-webkit-scrollbar {
  width: 5px;
}

.track-list::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

.track-list::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.2);
  border-radius: 10px;
}

.track-list::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.4);
}

/* Re-style track items as hardware mixer channel modules */
.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Decorative mixer fader trace on the side of strip */
.track-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: background 0.3s ease;
}

.track-item:hover {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.04) 0%, rgba(6, 182, 212, 0.01) 100%);
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.track-item:hover::before {
  background: rgba(6, 182, 212, 0.3);
}

.track-item.active {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.09) 0%, rgba(6, 182, 212, 0.02) 100%);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.05),
              inset 1px 0 0 rgba(6, 182, 212, 0.4);
}

.track-item.active::before {
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

/* Active Level Meter bars inside playlist item */
.playing-eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 12px;
  width: 15px;
}

.eq-bar {
  width: 3px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--accent-cyan);
  animation: none;
}

.track-item.playing-active .playing-eq-bars {
  display: flex !important;
}

.track-item.playing-active .eq-bar {
  animation: eqBounce 0.8s ease-in-out infinite alternate;
}

.eq-bar-1 { animation-delay: 0.1s; }
.eq-bar-2 { animation-delay: 0.3s; }
.eq-bar-3 { animation-delay: 0.2s; }

@keyframes eqBounce {
  0% { height: 2px; }
  100% { height: 12px; }
}

/* 3. A/B Master Comparator Panel integration */
.console-rack-unit.ab-compare-rack {
  background: linear-gradient(180deg, #181d29 0%, #0c0e14 100%);
  border: 2px solid #202b44;
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 25px rgba(0,0,0,0.5);
}

.console-rack-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.rack-unit-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* 4. Vacuum Fluorescent VFD Display Screen */
.vfd-display-screen {
  background: #02120e;
  border: 3px solid #141c26;
  border-radius: 12px;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.95),
              0 2px 4px rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 145px;
  justify-content: space-between;
}

/* Micro-raster scanlines on VFD */
.vfd-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 245, 196, 0.015) 50%, rgba(0,0,0,0.15) 50%);
  background-size: 100% 3px;
  pointer-events: none;
  z-index: 3;
}

.vfd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.vfd-label {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(6, 182, 212, 0.5);
  letter-spacing: 1px;
}

.vfd-status-indicator {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vfd-status-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b7280;
  transition: all 0.3s ease;
}

.vfd-status-indicator span.pulse {
  background: #06b6d4;
  box-shadow: 0 0 8px #06b6d4;
}

.vfd-download-link {
  color: #00f5c4;
  text-decoration: none;
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px dashed rgba(0, 245, 196, 0.35);
  padding: 2px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  text-shadow: 0 0 6px rgba(0, 245, 196, 0.45);
}

.vfd-download-link:hover {
  background: rgba(0, 245, 196, 0.15);
  border-color: #00f5c4;
  box-shadow: 0 0 8px rgba(0, 245, 196, 0.3);
}

.btn-download-mini:hover {
  background: rgba(6, 182, 212, 0.15) !important;
  border-color: var(--accent-cyan) !important;
  color: #fff !important;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.vfd-row.middle-row {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.vfd-display-screen .track-info-display {
  text-align: left;
  margin-bottom: 0;
  width: 100%;
}

.vfd-display-screen .now-playing-title {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: #00f5c4;
  text-shadow: 0 0 10px rgba(0, 245, 196, 0.5);
  margin-bottom: 2px;
  background: none;
  -webkit-text-fill-color: initial;
  letter-spacing: 0.5px;
}

.vfd-display-screen .now-playing-genre {
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(0, 245, 196, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 0 8px rgba(0, 245, 196, 0.35);
}

.vfd-sample-rate {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(0, 245, 196, 0.45);
}

.vfd-time-counter {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: #00f5c4;
  text-shadow: 0 0 10px rgba(0, 245, 196, 0.55);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vfd-time-separator {
  color: rgba(0, 245, 196, 0.4);
  font-size: 0.95rem;
}

/* 5. Custom Console Sliding Faders */
.console-faders-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.02);
}

.console-fader-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.fader-label {
  font-family: monospace;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Slider Track Layout styling */
.console-linear-slider-container {
  width: 100%;
  height: 34px;
  background: #06090e;
  border: 1.5px solid #161e2e;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.85);
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 0 2px;
}

/* The actual groove/track line */
.console-linear-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  border-radius: 2px;
}

/* Filled active section */
.console-linear-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1e3a8a 0%, #06b6d4 100%);
  border-radius: 2px;
  position: relative;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
  transition: width 0.08s linear;
}

/* Linear Console fader thumb cap */
.console-linear-progress::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 26px;
  background: linear-gradient(90deg, #d1d5db 0%, #f3f4f6 50%, #9ca3af 100%);
  border: 1px solid #1f2937;
  border-radius: 3px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.6);
  cursor: pointer;
  z-index: 5;
}

/* Decorative red line on seek fader cap */
.console-linear-progress::before {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 26px;
  background: #ef4444;
  z-index: 6;
  pointer-events: none;
}

/* Output fader details */
.volume-slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  background: #06090e;
  border: 1.5px solid #161e2e;
  border-radius: 6px;
  padding: 0 12px;
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.85);
}

.volume-slider-container svg {
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.volume-slider-container svg:hover {
  color: var(--accent-cyan);
}

.volume-slider-container .volume-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}

.volume-slider-container .volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 22px;
  background: linear-gradient(90deg, #d1d5db 0%, #f3f4f6 50%, #9ca3af 100%);
  border: 1px solid #374151;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.6);
  cursor: pointer;
  position: relative;
}

/* Scale markings underneath faders */
.fader-scale {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 0.55rem;
  color: var(--text-muted);
  padding: 0 4px;
  margin-top: 2px;
}

/* 6. Mechanical Console Buttons with LEDs */
.console-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.06);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.01);
}

.console-transport-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mechanical push button caps */
.transport-btn {
  background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
  border: 2px solid #111827;
  color: #d1d5db;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 3px 6px rgba(0,0,0,0.5), 
              inset 0 1px 1px rgba(255,255,255,0.15);
  transition: all 0.1s ease;
  outline: none;
}

.transport-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
}

.transport-btn:active {
  transform: translateY(1.5px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.6), inset 0 2px 4px rgba(0,0,0,0.8);
}

/* Mechanical Button Status LEDs */
.transport-btn .btn-led {
  position: absolute;
  top: -6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #374151;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

#play-btn.is-playing .btn-led {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e, inset 0 1px 1px rgba(255,255,255,0.5);
}

#play-btn:not(.is-playing) .btn-led {
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444, inset 0 1px 1px rgba(255,255,255,0.5);
}

.transport-btn:not(#play-btn) .btn-led {
  background: #f59e0b;
  box-shadow: 0 0 4px rgba(245, 158, 11, 0.4);
}

.transport-btn.play-btn {
  width: 44px;
  height: 44px;
}

.transport-btn.play-btn .btn-led {
  top: -5px;
}

/* Monitor source indicator details */
.console-deck-extras {
  font-family: monospace;
  font-size: 0.65rem;
  color: rgba(6, 182, 212, 0.45);
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* 7. CRT Oscilloscope Screen & Platter Bay */
.deck-recess-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Vector CRT display box */
.oscilloscope-screen {
  background: #02120e;
  border: 3px solid #141c26;
  border-radius: 16px;
  height: 195px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 5px 25px rgba(0, 0, 0, 0.95),
              0 2px 4px rgba(255,255,255,0.02);
}

/* Oscilloscope Vector Grid styling */
.oscilloscope-screen .crt-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(0, 245, 196, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 196, 0.04) 1px, transparent 1px);
  background-size: 15px 15px;
  background-position: center center;
  pointer-events: none;
  z-index: 2;
}

/* Vector CRT reflection overlay */
.oscilloscope-screen .crt-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 245, 196, 0.015) 70%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 3;
}

.oscilloscope-screen canvas {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  position: relative;
}

.oscilloscope-tag {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: monospace;
  font-size: 0.55rem;
  font-weight: 800;
  color: rgba(0, 245, 196, 0.3);
  letter-spacing: 1px;
  z-index: 4;
}

/* Turntable recessive platter bay */
.turntable-bay {
  background: radial-gradient(circle at center, #0b0e14, #040507);
  border: 3px solid #141c26;
  border-radius: 16px;
  height: 195px;
  box-shadow: inset 0 8px 24px rgba(0,0,0,0.9), 0 2px 4px rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.turntable-bay .player-3d-wrapper {
  background: transparent;
  border: none;
  box-shadow: none;
  height: 100% !important;
  width: 100% !important;
}

/* Calculator Layout */
.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.calc-panel {
  padding: 40px;
}

.panel-header {
  font-size: 1.4rem;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.calc-group {
  margin-bottom: 36px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.calc-val-display {
  color: var(--accent-cyan);
  background: rgba(197, 160, 89, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* Custom Range Input styling */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
  transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.calc-subheading {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* Checklist Checkboxes styling */
.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 0.95rem;
  user-select: none;
  color: var(--text-secondary);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 22px;
  width: 22px;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
  background: var(--gradient-primary);
  border-color: transparent;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-label {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.calc-price {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Results panel */
.calc-result {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.price-display-wrapper {
  text-align: center;
  margin: 36px 0;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.02);
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--text-primary);
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.price-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.payment-plan-box {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  opacity: 0.5;
  transition: var(--transition-normal);
}

.payment-plan-box.active {
  opacity: 1;
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
}

.payment-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.installments-display {
  font-size: 1rem;
  color: var(--text-primary);
}

.installments-display strong {
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

/* About / Founder Layout */
.about-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-box {
  position: absolute;
  bottom: -30px;
  right: -20px;
  left: 40px;
  padding: 24px;
}

.signature-box .quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.signature-box .author {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-intro {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact & Intake Booking System */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-link {
  font-size: 1.05rem;
  font-weight: 600;
}

.info-link:hover {
  color: var(--accent-cyan);
}

.contact-form-wrapper {
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  position: relative;
}

/* Premium Floating Input Label styling */
.form-group input,
.form-group textarea,
.select-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.select-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.form-group label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--transition-normal);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: var(--bg-secondary);
  padding: 0 8px;
  border-radius: 4px;
}

/* Custom Dropdown select */
.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgb(148, 163, 184)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.select-input option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Attachment box style for dynamic budgets */
.form-quote-attachment {
  background: rgba(6, 182, 212, 0.04);
  border: 1px dashed rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-attachment-header {
  display: flex;
  flex-direction: column;
}

.quote-attachment-header span {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-attachment-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.quote-attachment-body strong {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.remove-quote-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.remove-quote-btn:hover {
  color: #ef4444;
}

/* Button loader state */
.btn-loader {
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

/* Footer Section */
footer {
  background: #04060c;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 320px;
}

footer h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer ul a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

footer ul a:hover {
  color: var(--accent-cyan);
}

.footer-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 30px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-meta-links {
  display: flex;
  gap: 24px;
}

.meta-link:hover {
  color: var(--text-secondary);
}

/* Modal Overlay styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 10, 19, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: var(--transition-normal);
}

.modal-content {
  max-width: 500px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  transform: translateY(20px);
  animation: modalEnter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalEnter {
  100% {
    transform: translateY(0);
  }
}

.modal-success-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.modal-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Interaction animations on scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Initial keyframe animations for landing page loads */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-delayed {
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delayed {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes fadeIn {
  100% { opacity: 1; }
}

@keyframes slideUp {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Awards Ticker Section */
.awards-ticker-section {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(99, 102, 241, 0.03);
}

.ticker-track {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  padding: 18px 0;
}

.ticker-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0 24px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.ticker-divider {
  color: var(--accent-gold);
  font-size: 0.8rem;
  opacity: 0.6;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Social Icons */
.social-icons-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-link {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-link:hover {
  color: var(--accent-cyan);
  transform: scale(1.15);
}

/* Video Showcase Grid */
.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.video-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-card-featured {
  grid-row: span 2;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.video-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 10, 19, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.video-info {
  padding: 24px;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.video-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Podcast Card */
.podcast-card {
  background: linear-gradient(135deg, #1a1040 0%, #0d1b2a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 20px;
  aspect-ratio: 16/9;
}

.podcast-artwork {
  text-align: center;
}

.podcast-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vinyl-spin {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  animation: spin 4s linear infinite;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  position: relative;
}

.vinyl-spin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--bg-primary);
  border-radius: 50%;
}

.podcast-freq {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.podcast-text h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 4px 0;
}

.podcast-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.podcast-links {
  display: flex;
  gap: 12px;
}

/* Founder Roles Tags */
.founder-card {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  min-height: 400px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: var(--accent-blue);
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.founder-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.role-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-normal);
  cursor: default;
}

.role-tag:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.founder-card .signature-box {
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social .social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
}

.footer-social .social-icon-link:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

/* Enhanced Animations */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gradient-text {
  background-size: 200% auto;
  animation: shimmer 4s ease-in-out infinite;
}

/* Parallax Float for Hero Image */
.hero-image {
  animation: gentleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

/* Card entrance stagger */
.bento-card.revealed:nth-child(1) { transition-delay: 0s; }
.bento-card.revealed:nth-child(2) { transition-delay: 0.1s; }
.bento-card.revealed:nth-child(3) { transition-delay: 0.2s; }
.bento-card.revealed:nth-child(4) { transition-delay: 0.3s; }
.bento-card.revealed:nth-child(5) { transition-delay: 0.4s; }

/* Stat Counter Animation */
.stat-num {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-stats.revealed .stat-num {
  opacity: 1;
  transform: translateY(0);
}

.about-stats.revealed .stat-item:nth-child(1) .stat-num { transition-delay: 0s; }
.about-stats.revealed .stat-item:nth-child(2) .stat-num { transition-delay: 0.15s; }
.about-stats.revealed .stat-item:nth-child(3) .stat-num { transition-delay: 0.3s; }

/* 3D Turntable is active, hover styles moved to .player-3d-wrapper */

/* Smooth nav link underline grow */
.nav-link::after {
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Button ripple effect */
.btn-primary:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  100% { width: 300px; height: 300px; opacity: 0; }
}

/* Glass card border shimmer on hover */
.glass-card {
  position: relative;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.1) 50%, transparent 70%);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.glass-card:hover::after {
  opacity: 1;
  animation: borderShimmer 3s ease infinite;
}

@keyframes borderShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (min-width: 769px) {
  .card-large {
    display: grid !important;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: stretch;
  }
  
  .card-large .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .card-large .card-media-wrapper {
    height: 100% !important;
    min-height: 280px;
    margin-top: 0 !important;
  }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-container {
    gap: 36px;
  }
  
  .bento-grid {
    gap: 20px;
  }
  
  .card-large {
    grid-column: span 12;
  }
  
  .card-medium {
    grid-column: span 6;
  }
  
  .card-small {
    grid-column: span 6;
  }
  
  .console-inner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px 20px;
  }
  
  .console-chassis::before, .console-chassis::after {
    display: none; /* Hide wood panels on narrow screens to save space */
  }
  
  .deck-recess-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .console-faders-panel {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-visual {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .video-card-featured {
    grid-row: span 1;
  }
  
  .mobile-nav-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #080c16;
    border-left: 1px solid var(--border-color);
    padding: 100px 40px;
    transition: var(--transition-normal);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 32px;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .header-cta {
    display: none;
  }
  
  .social-icons-header {
    display: none;
  }
}

@media (max-width: 768px) {
  .deck-recess-panel,
  .turntable-bay,
  .oscilloscope-screen {
    display: none !important;
  }

  section {
    padding: 70px 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  
  .card-medium {
    grid-column: span 12;
  }
  
  .card-small {
    grid-column: span 12;
  }
  
  .card-half {
    grid-column: span 12;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-desc {
    max-width: 100%;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .signature-box {
    left: 20px;
    right: 20px;
    bottom: -20px;
  }
  
  .ticker-content {
    animation-duration: 20s;
  }
}

/* ==========================================
   CONVERSION OPTIMIZATION & PREMIUM UI
   ========================================== */

/* Payment Timeline */
.payment-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.payment-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0f1118;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.timeline-step.active .step-dot {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.step-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-align: center;
}

.step-cost {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Mini licensing and bento CTA buttons */
.btn-license-mini {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-cyan);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-license-mini:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: scale(1.05);
}

.bento-cta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.bento-cta:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* Equalizer Bars */
.playing-eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  width: 14px;
  height: 14px;
}

.eq-bar {
  display: inline-block;
  width: 2.5px;
  background: var(--accent-cyan);
  border-radius: 1px;
  animation: bounceBar 0.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.eq-bar-1 { height: 30%; animation-delay: 0.1s; }
.eq-bar-2 { height: 90%; animation-delay: 0.3s; }
.eq-bar-3 { height: 50%; animation-delay: 0.5s; }

@keyframes bounceBar {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* Static bar configuration when track is paused */
.track-item.active:not(.playing-active) .eq-bar {
  animation: none !important;
  transform: scaleY(0.4);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.15);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-client {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.client-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.client-role {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ==========================================================================
   PORTFOLIO & LIGHTBOX STYLING
   ========================================================================== */

#portfolio {
  padding: 100px 0;
  position: relative;
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

/* Portfolio Slider Container */
.portfolio-slider-container {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.portfolio-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px 30px 5px;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 182, 212, 0.4) rgba(255, 255, 255, 0.02);
  scroll-snap-type: x mandatory;
}

.portfolio-slider::-webkit-scrollbar {
  height: 8px;
}

.portfolio-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.portfolio-slider::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.4);
  border-radius: 4px;
}

.portfolio-slider::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

.portfolio-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

@media (max-width: 992px) {
  .portfolio-item {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .portfolio-item {
    flex: 0 0 100%;
  }
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 15px 35px -10px rgba(6, 182, 212, 0.2);
}

.portfolio-media-box {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background: #090d16;
}

.portfolio-media-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: radial-gradient(circle at center, rgba(16, 23, 44, 0.85) 0%, rgba(7, 10, 19, 1) 100%);
  transition: var(--transition-slow);
}

.portfolio-media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-media-box img,
.portfolio-item:hover .portfolio-media-box video {
  transform: scale(1.05);
}

/* Hover Overlays */
.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 10, 19, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
}

.portfolio-item:hover .media-overlay {
  opacity: 1;
}

.zoom-icon,
.play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.portfolio-item:hover .zoom-icon,
.portfolio-item:hover .play-icon {
  transform: scale(1);
}

/* Visited Overlay Link */
.visit-link-overlay {
  opacity: 1;
  background: rgba(7, 10, 19, 0.65);
}

/* Portfolio Info text */
.portfolio-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
}

.portfolio-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   LIGHTBOX MODAL STYLING
   ========================================================================== */

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 10, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lightbox-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2100;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-cyan);
  transform: scale(1.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-arrow:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

.lightbox-arrow.prev {
  left: 40px;
}

.lightbox-arrow.next {
  right: 40px;
}

.lightbox-content {
  max-width: 80%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: lightboxFade 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-meta {
  margin-top: 24px;
  text-align: center;
  max-width: 600px;
}

.lightbox-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
}

#lightbox-title {
  font-size: 1.5rem;
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: 800;
}

#lightbox-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Form Calendly CTA Styling */
.form-calendly-cta {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-calendly-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .lightbox-arrow {
    width: 50px;
    height: 50px;
  }
  .lightbox-arrow.prev {
    left: 20px;
  }
  .lightbox-arrow.next {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-media-box {
    height: 200px;
  }
  .lightbox-arrow {
    display: none;
  }
  .lightbox-content {
    max-width: 90%;
  }
  #lightbox-img {
    max-height: 55vh;
  }
}

/* ==========================================================================
   LEAD CONVERSION ENHANCEMENTS
   ========================================================================== */

/* 1. Trust Logos Section */
.trust-banner-section {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(12, 17, 34, 0.15);
  position: relative;
  overflow: hidden;
}
.trust-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  opacity: 0.75;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Playfair Display', Georgia, serif;
  transition: var(--transition-fast);
}
.trust-logo:hover {
  color: var(--accent-cyan);
  opacity: 1;
  transform: translateY(-2px);
}

/* 2. FAQ Accordion Section */
#faq {
  padding: 100px 0;
}
.faq-grid {
  max-width: 800px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition-normal);
}
.faq-card:hover {
  border-color: rgba(6, 182, 212, 0.2);
  background: var(--bg-card-hover);
}
.faq-card.active {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.15);
}
.faq-header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  transition: var(--transition-fast);
}
.faq-card:hover .faq-question {
  color: var(--accent-cyan);
}
.faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  transition: var(--transition-normal);
}
.faq-card.active .faq-icon-wrapper {
  background: var(--gradient-primary);
  color: var(--text-primary);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content {
  padding: 0 28px 24px 28px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 3. Floating CTA Widget */
.floating-cta-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(16, 23, 44, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.15);
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  pointer-events: none;
}
.floating-cta-widget.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  font-family: 'Playfair Display', Georgia, serif;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  transition: var(--transition-fast);
}
.floating-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
  color: #fff !important;
}
.floating-cta-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 1px solid var(--accent-cyan);
  pointer-events: none;
  animation: floating-pulse 2s infinite;
  opacity: 0;
}
@keyframes floating-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15, 1.3);
    opacity: 0;
  }
}
.floating-cta-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 12px 0 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.floating-cta-close:hover {
  color: var(--text-primary);
}

/* 4. Live Form Validation Feedback */
.form-group.valid-glow input,
.form-group.valid-glow textarea {
  border-color: #10b981 !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.15) !important;
}

@media (max-width: 768px) {
  .trust-logos-grid {
    gap: 24px;
  }
  .floating-cta-widget {
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================================================================
   LEFT SIDEBAR PLAYLIST
   ========================================================================== */
.left-sidebar-playlist {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  background: rgba(8, 14, 28, 0.9);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-right: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.6), 5px 0 15px rgba(197, 160, 89, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.left-sidebar-playlist.show {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 10px;
}

.sidebar-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.close-sidebar-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.close-sidebar-btn:hover {
  color: var(--text-primary);
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-count {
  padding: 0 24px 16px;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.85;
}

.sidebar-list {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0;
}

.sidebar-list::-webkit-scrollbar {
  width: 5px;
}

.sidebar-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-list::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.35);
  border-radius: 3px;
}

.sidebar-list::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.7);
}

/* ==========================================================================
   SITE-WIDE FLOATING MUSIC PLAYER PILL
   ========================================================================== */
.sitewide-player {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 999;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.sitewide-player.hidden {
  transform: translateY(150px);
  opacity: 0;
  pointer-events: none;
}

.sw-player-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(8, 14, 28, 0.85);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
              0 0 calc(10px + var(--beat-amplitude, 0) * 20px) rgba(6, 182, 212, calc(0.1 + var(--beat-amplitude, 0) * 0.3)),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  gap: 16px;
  transition: box-shadow 0.1s ease-out, border-color 0.4s ease;
}

.sw-player-container:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

/* Track Meta (Left) */
.sw-track-info {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 28%;
  min-width: 160px;
}

.sw-vinyl-wrapper {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 50%, var(--accent-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.4),
              0 0 calc(5px + var(--beat-amplitude, 0) * 15px) rgba(6, 182, 212, calc(0.2 + var(--beat-amplitude, 0) * 0.4));
  transform: scale(calc(1 + var(--beat-amplitude, 0) * 0.1));
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

.sw-vinyl-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, #2a2a2a 25%, #080808 30%, #1a1a1a 60%, #000 80%);
  position: relative;
  box-shadow: inset 0 0 6px rgba(255,255,255,0.25);
}

.sw-vinyl-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--accent-cyan);
}

.sw-vinyl-wrapper.spinning .sw-vinyl-icon {
  animation: spin 3s linear infinite;
}

.sw-meta-text {
  overflow: hidden;
  white-space: nowrap;
}

.sw-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 2px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 50%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sw-title-dropdown-container {
  margin-bottom: 3px;
}

.sw-track-dropdown {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 3px 24px 3px 6px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  max-width: 170px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(6, 182, 212, 0.8)' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 10px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.sw-track-dropdown:focus, .sw-track-dropdown:hover {
  border-color: var(--accent-cyan);
  background-color: rgba(255, 255, 255, 0.1);
}

.sw-track-dropdown option {
  background: #080e1c;
  color: #fff;
}

.sw-genre {
  font-size: 0.72rem;
  color: var(--accent-cyan);
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Controls (Center) */
.sw-controls-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 44%;
}

.sw-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sw-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 50%;
}

.sw-btn:hover {
  color: var(--text-primary);
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.05);
}

.sw-play-btn {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 50%, var(--accent-gold) 100%);
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.3),
              0 0 calc(8px + var(--beat-amplitude, 0) * 15px) rgba(6, 182, 212, calc(0.3 + var(--beat-amplitude, 0) * 0.5));
  transform: scale(calc(1 + var(--beat-amplitude, 0) * 0.08));
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sw-play-btn:hover {
  transform: scale(calc(1.15 + var(--beat-amplitude, 0) * 0.08));
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.5),
              0 0 calc(12px + var(--beat-amplitude, 0) * 18px) rgba(197, 160, 89, calc(0.4 + var(--beat-amplitude, 0) * 0.5));
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 50%, var(--accent-gold) 100%);
}

.sw-play-btn:active {
  transform: scale(calc(0.95 + var(--beat-amplitude, 0) * 0.08));
}

.sw-progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.sw-time {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--text-secondary);
  min-width: 32px;
  text-align: center;
}

.sw-progress-bar-bg {
  flex-grow: 1;
  height: 5px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  overflow: visible;
}

.sw-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-cyan) 50%, var(--accent-gold) 100%);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.7);
  transition: width 0.08s linear;
}

.sw-progress-bar::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 6px var(--accent-gold);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sw-progress-bar-bg:hover .sw-progress-bar::after {
  transform: translateY(-50%) scale(1);
}

/* Extra Controls (Right) */
.sw-extra-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 28%;
  justify-content: flex-end;
}

.sw-visualizer {
  height: 30px;
  width: 80px;
  overflow: hidden;
  background: rgba(3, 7, 18, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(6, 182, 212, 0.15);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
  position: relative;
}

.sw-visualizer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
              linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 6px 6px;
  pointer-events: none;
}

#sw-visualizer-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.sw-volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sw-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.sw-volume-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.sw-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  margin-top: -3px;
  box-shadow: 0 0 6px var(--accent-cyan-blue), 0 0 1px #fff;
  transition: var(--transition-fast);
}

.sw-volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
  background: var(--accent-gold-light);
  box-shadow: 0 0 8px var(--accent-gold);
}

.sw-volume-slider::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.sw-volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 6px var(--accent-cyan-blue), 0 0 1px #fff;
  transition: var(--transition-fast);
}

.sw-volume-slider::-moz-range-thumb:hover {
  transform: scale(1.3);
  background: var(--accent-gold-light);
  box-shadow: 0 0 8px var(--accent-gold);
}

/* Site-Wide Expandable Tracks Drawer */
.sw-tracks-drawer {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(16, 23, 44, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 160, 89, 0.1);
  overflow: hidden;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  z-index: 998;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sw-tracks-drawer.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sw-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.sw-drawer-header h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin: 0;
}

.sw-drawer-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.sw-drawer-list {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0;
}

/* Custom scrollbar for drawer list */
.sw-drawer-list::-webkit-scrollbar {
  width: 6px;
}

.sw-drawer-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.sw-drawer-list::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.3);
  border-radius: 3px;
}

.sw-drawer-list::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.6);
}

/* Drawer Track Items */
.sw-drawer-track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.sw-drawer-track-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(6, 182, 212, 0.4);
}

.sw-drawer-track-item.active {
  background: rgba(6, 182, 212, 0.05);
  border-left-color: var(--accent-cyan);
}

.sw-drawer-track-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-drawer-track-index {
  font-size: 0.75rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.3);
}

.sw-drawer-track-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 0;
  transition: color 0.2s ease;
}

.sw-drawer-track-item.active .sw-drawer-track-title {
  color: var(--accent-cyan);
  font-weight: 600;
}

.sw-drawer-track-genre {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  margin-top: 2px;
}

.sw-drawer-track-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sw-drawer-track-duration {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
}

.sw-drawer-track-item.active .sw-drawer-track-duration {
  color: var(--accent-cyan);
}

/* EQ animations inside drawer tracks */
.sw-drawer-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}

.sw-drawer-eq-bar {
  width: 2px;
  height: 2px;
  background-color: var(--accent-cyan);
  border-radius: 1px;
}

.sw-drawer-track-item.active.playing .sw-drawer-eq-bar-1 {
  animation: sw-eq-bounce 0.8s ease-in-out infinite alternate;
}

.sw-drawer-track-item.active.playing .sw-drawer-eq-bar-2 {
  animation: sw-eq-bounce 1.1s ease-in-out infinite alternate;
  animation-delay: 0.15s;
}

.sw-drawer-track-item.active.playing .sw-drawer-eq-bar-3 {
  animation: sw-eq-bounce 0.9s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}

@keyframes sw-eq-bounce {
  0% { height: 2px; }
  100% { height: 10px; }
}

/* Playlist Toggle Button Active state */
.sw-playlist-btn.active {
  color: var(--accent-cyan);
  background: rgba(197, 160, 89, 0.1);
}

/* Responsiveness overrides for bottom bar player */
@media (max-width: 768px) {
  .sw-player-container {
    padding: 12px 16px;
    gap: 8px;
  }
  .sw-track-info {
    width: 50%;
  }
  .sw-controls-wrapper {
    width: 50%;
  }
  .sw-extra-controls {
    display: flex; /* Do not hide on mobile, but inside we hide visualizer and volume to make room for playlist button */
    width: auto;
    gap: 8px;
  }
  .sw-visualizer,
  .sw-volume-container {
    display: none; /* Hide volume and visualizer on small screens */
  }
  .sw-btn {
    padding: 10px !important; /* Bigger touch targets on mobile */
  }
  .sw-play-btn {
    width: 46px !important;
    height: 46px !important;
  }
  .sw-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  .sw-play-btn svg {
    width: 22px !important;
    height: 22px !important;
  }
  .sw-track-dropdown {
    max-width: 120px;
    font-size: 0.8rem;
    padding: 3px 20px 3px 4px;
    background-position: right 4px center;
    background-size: 8px;
  }
}

/* Keyframes for Hero area animations */
@keyframes hero-image-pan {
  0% { transform: scale(1.0) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1.5%, -1%); }
  100% { transform: scale(1.0) translate(0, 0); }
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* ==========================================
   BENTO RACK & COMPARATOR REDESIGN
   ========================================== */

.listen-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.listen-right-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.listen-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.listen-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 20px rgba(197, 160, 89, 0.05);
}

.card-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.pulse-icon {
  color: var(--accent-blue);
  font-size: 0.7rem;
  animation: sw-eq-bounce 0.8s ease-in-out infinite alternate;
}

.gold-indicator {
  color: var(--accent-gold);
  font-size: 0.9rem;
  text-shadow: 0 0 10px var(--accent-gold-glow);
}

.card-heading {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  color: var(--text-primary);
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.5;
}

.card-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
}

/* A/B Visualizer Wave */
.ab-wave-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 60px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.ab-wave-bar {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: var(--accent-blue);
  transition: height 0.15s ease, background 0.3s ease;
}

.ab-wave-bar.raw-style {
  background: var(--text-muted) !important;
}

.ab-wave-bar.master-style {
  background: var(--accent-gold) !important;
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

/* A/B Controls & Slider */
.ab-toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ab-toggle-btn {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.ab-toggle-btn:hover {
  color: var(--text-primary);
}

.ab-toggle-btn.active {
  color: #fff;
}

#ab-btn-raw.active {
  color: var(--text-primary);
  background: rgba(100, 116, 139, 0.2);
  border: 1px solid rgba(255,255,255,0.05);
}

#ab-btn-master.active {
  color: #000;
  background: var(--gradient-gold);
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.ab-slider-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
}

.ab-slider-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.ab-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.ab-slider-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-label-left, .slider-label-right {
  position: absolute;
  bottom: -15px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

.slider-label-left { left: 0; }
.slider-label-right { right: 0; }

.ab-track-selector {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.02);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
}

.selector-label { color: var(--text-muted); }
.selector-value { color: var(--accent-gold); font-weight: 600; }

/* Analog Studio Gear Rack */
.analog-rack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #0b0f19;
  padding: 15px;
  border-radius: 12px;
  border: 3px solid #1a2235;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
  margin-bottom: 15px;
}

.rack-unit {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rack-unit:hover {
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

.rack-unit-faceplate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  height: 70px;
}

.rack-brand {
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.rack-neve .rack-unit-faceplate {
  background: linear-gradient(180deg, #38424d 0%, #29313a 100%);
}

.rack-ssl .rack-unit-faceplate {
  background: linear-gradient(180deg, #2a2a2a 0%, #1e1e1e 100%);
}

.rack-la2a .rack-unit-faceplate {
  background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 100%);
}

.rack-la2a .rack-brand {
  color: #1f2937;
}

.rack-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.08);
}

.knob-container {
  display: flex;
  align-items: center;
  gap: 25px;
}

.rack-knob-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rack-knob {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  cursor: grab;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  background: #111;
  transform: rotate(0deg); /* dynamic rotation */
  touch-action: none;
}

.knob-pointer {
  width: 2px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 15px;
  transform-origin: bottom center;
}

.knob-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.rack-la2a .knob-label {
  color: #374151;
}

/* Knob colors */
.knob-red {
  background: radial-gradient(circle, #b91c1c 40%, #7f1d1d 90%);
  border: 2px solid #450a0a;
}
.knob-blue {
  background: radial-gradient(circle, #1d4ed8 40%, #1e3a8a 90%);
  border: 2px solid #172554;
}
.knob-black {
  background: radial-gradient(circle, #333 40%, #111 90%);
  border: 2px solid #000;
}
.knob-silver {
  background: radial-gradient(circle, #f3f4f6 40%, #9ca3af 90%);
  border: 2px solid #4b5563;
}
.knob-silver .knob-pointer {
  background: #111;
}

/* SSL Mid layout with VU meter */
.rack-layout-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.vu-meter {
  width: 65px;
  height: 38px;
  background: #fffae0;
  border: 2px solid #111;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.vu-needle {
  width: 1px;
  height: 32px;
  background: #e11d48;
  position: absolute;
  bottom: 0;
  left: 32px;
  transform-origin: bottom center;
  transition: transform 0.1s ease-out;
  z-index: 2;
}
.vu-scale {
  position: absolute;
  top: 4px;
  width: 60px;
  height: 15px;
  border-radius: 50%;
  border-top: 1.5px solid #333;
}
.vu-scale::after {
  content: '0 4 10 20';
  position: absolute;
  top: 1px;
  left: 5px;
  font-size: 0.38rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 5px;
}
.vu-title {
  font-size: 0.35rem;
  font-weight: 800;
  color: #444;
  margin-bottom: 2px;
  z-index: 3;
  letter-spacing: 0.5px;
}

.gear-desc-box {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  background: rgba(0,0,0,0.2);
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
  min-height: 54px;
}

/* Premium Gold Shimmer Buttons */
@keyframes shine {
  0% { left: -60%; }
  15% { left: 125%; }
  100% { left: 125%; }
}

.btn-primary, .btn-cta, .btn-lg {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shine 5s ease-in-out infinite;
}

.btn-primary:hover, .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.45);
}

/* Glassmorphism updates for cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 20px rgba(197, 160, 89, 0.05);
}

@media (max-width: 992px) {
  .listen-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   AI AUDIO MASTERING STUDIO
   ========================================================================== */

#mastering {
  position: relative;
  overflow: hidden;
}

.mastering-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

/* Upload Zone */
.mastering-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  padding: 80px 40px;
  border-radius: 16px;
  background: rgba(7, 10, 19, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mastering-upload-zone:hover, .mastering-upload-zone.dragover {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.04);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.upload-icon-wrapper {
  margin-bottom: 24px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.mastering-upload-zone:hover .upload-icon-wrapper {
  color: var(--accent-cyan);
  transform: translateY(-5px);
}

.mastering-upload-zone h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.upload-hint {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Processing Zone */
.mastering-processing-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
}

/* Airtight Audio Vinyl & Spectrum Progress Visualizer */
.airtight-status-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  padding: 0 2px;
}
.airtight-status-eq .eq-bar {
  width: 4px;
  height: 100%;
  background: linear-gradient(to top, var(--accent-cyan), #a855f7);
  border-radius: 2px;
  animation: statusEqBounce 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.7);
}
.airtight-status-eq .eq-bar:nth-child(1) { animation-delay: 0.1s; }
.airtight-status-eq .eq-bar:nth-child(2) { animation-delay: 0.4s; }
.airtight-status-eq .eq-bar:nth-child(3) { animation-delay: 0.25s; }
.airtight-status-eq .eq-bar:nth-child(4) { animation-delay: 0.5s; }

@keyframes statusEqBounce {
  0%, 100% { height: 4px; opacity: 0.5; }
  50% { height: 18px; opacity: 1; filter: brightness(1.3); }
}

.airtight-vinyl-visualizer {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.airtight-vinyl-visualizer .vinyl-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #090d16 0%, #030712 100%);
  border: 2px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.3), inset 0 0 15px rgba(0, 0, 0, 0.8);
  animation: vinylRotate 3s linear infinite;
}
.airtight-vinyl-visualizer .vinyl-disc .groove {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(6, 182, 212, 0.25);
}
.airtight-vinyl-visualizer .vinyl-disc .groove.ring-1 { inset: 8px; }
.airtight-vinyl-visualizer .vinyl-disc .groove.ring-2 { inset: 18px; border-style: dotted; }
.airtight-vinyl-visualizer .vinyl-disc .groove.ring-3 { inset: 26px; }
.airtight-vinyl-visualizer .vinyl-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), #a855f7);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
  z-index: 2;
}
.airtight-vinyl-visualizer .vinyl-center .center-badge {
  font-size: 0.7rem;
  color: #000;
  font-weight: 900;
  line-height: 1;
}
.airtight-vinyl-visualizer .spectrum-bars {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}
.airtight-vinyl-visualizer .spectrum-bars .bar {
  width: 4px;
  background: linear-gradient(to top, var(--accent-cyan), #f43f5e);
  border-radius: 3px;
  animation: spectrumDance 1s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}
.airtight-vinyl-visualizer .spectrum-bars .bar.b1 { animation-delay: 0.1s; }
.airtight-vinyl-visualizer .spectrum-bars .bar.b2 { animation-delay: 0.3s; }
.airtight-vinyl-visualizer .spectrum-bars .bar.b3 { animation-delay: 0.5s; }
.airtight-vinyl-visualizer .spectrum-bars .bar.b4 { animation-delay: 0.2s; }
.airtight-vinyl-visualizer .spectrum-bars .bar.b5 { animation-delay: 0.4s; }
.airtight-vinyl-visualizer .spectrum-bars .bar.b6 { animation-delay: 0.15s; }
.airtight-vinyl-visualizer .spectrum-bars .bar.b7 { animation-delay: 0.35s; }

@keyframes vinylRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spectrumDance {
  0%, 100% { height: 6px; opacity: 0.4; }
  50% { height: 28px; opacity: 1; filter: brightness(1.4); }
}

.spinner-ring {
  display: none !important;
}

.mastering-processing-zone h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.progress-bar-container {
  width: 100%;
  max-width: 480px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 10px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.processing-log {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 400px;
  width: 100%;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: left;
  line-height: 1.6;
}

.processing-log li {
  margin-bottom: 6px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.processing-log li.done {
  color: var(--accent-cyan);
  opacity: 1;
}

.processing-log li.active {
  color: #fff;
  opacity: 1;
  font-weight: bold;
}

/* Result Zone */
.mastering-result-zone {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mastered-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.mastered-header .track-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mastered-header .track-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

/* Waveform comparison */
.waveform-comparison-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waveform-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.label-raw {
  color: #a855f7;
}

.label-mastered {
  color: var(--accent-cyan);
}

.waveform-canvas-wrapper {
  cursor: pointer;
}

.waveform-playhead {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 4px var(--accent-cyan);
  pointer-events: none;
  transform: translateX(0);
}

.waveform-time-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Dashboard Controls Layout */
.mastering-controls-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
}

.glass-sub-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.glass-sub-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 12px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Panel 1: Monitor Playback */
.ab-monitor-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex: 1;
  justify-content: center;
}

.btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(6, 182, 212, 0.5);
}

.monitor-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.monitor-toggle-wrap .glow-gold {
  color: var(--accent-cyan);
  text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

/* Switch element styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3b0764; /* Purple background for Raw */
  transition: .4s;
  border: 1px solid rgba(255,255,255,0.05);
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .4s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

input:checked + .switch-slider {
  background-color: #713f12; /* Gold/Amber background for Master */
}

input:focus + .switch-slider {
  box-shadow: 0 0 1px #713f12;
}

input:checked + .switch-slider:before {
  transform: translateX(24px);
}

.switch-slider.round {
  border-radius: 34px;
}

.switch-slider.round:before {
  border-radius: 50%;
}

.volume-control-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-control-wrap input[type="range"] {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
}

/* Panel 2: EQ Style / Dynamics */
.dsp-controls {
  flex: 1.2;
}

.dsp-controls .control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-group .group-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.style-selector-buttons, .intensity-selector-buttons {
  display: flex;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.02);
}

.style-btn, .intensity-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.style-btn:hover, .intensity-btn:hover {
  color: #fff;
}

.style-btn.active, .intensity-btn.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.style-btn.active {
  border-bottom: 2px solid var(--accent-cyan);
}

.intensity-btn.active {
  border-bottom: 2px solid var(--accent-purple);
}

/* Panel 3: Export */
.export-controls .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.metric-item {
  background: rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.02);
}

.metric-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: bold;
}

.metric-val {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
}

.export-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Analog Character Buttons */
.analog-selector-buttons {
  display: flex;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.02);
}

.analog-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 6px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.analog-btn:hover {
  color: #fff;
}

.analog-btn.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border-bottom: 2px solid var(--accent-cyan);
}

/* Genre / Format Selects */
.mastering-select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(7, 10, 19, 0.6);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.mastering-select:hover,
.mastering-select:focus {
  border-color: rgba(6, 182, 212, 0.4);
}

.mastering-select option {
  background: #0d1117;
  color: #fff;
}

/* Level Match Button */
.level-match-btn {
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}

.level-match-btn.active {
  border-color: var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.25);
}

.hidden {
  display: none !important;
}


/* Responsive adjustment */
@media (max-width: 992px) {
  .mastering-controls-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   NEW REDESIGNED HERO, BRAND CARD & ANIMATION SYSTEM
   ========================================================================== */

#hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(to bottom, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.1) 50%, rgba(8, 8, 10, 0.8) 100%),
    url('/assets/hero-bg-dynamic.jpg?v=2') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-tag {
  color: var(--accent-gold);
}

.hero-tag-sep {
  color: var(--text-muted);
  animation: rotateStar 8s infinite linear;
}

@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* Brand Showcase Card & Interactive Visualizer */
.brand-showcase-card {
  position: relative;
  width: 100%;
  max-width: clamp(260px, 35vw, 440px); /* fluidly resizes based on viewports but respects max limit */
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.brand-showcase-card:hover {
  transform: translateY(-4px) !important;
}

.logo-visualizer-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: none !important;
  border: none !important;
}

/* Active Waveform Visualizer styling */

/* Gradient-border outline button styling */
.btn-outline-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: transparent;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
}

.btn-outline-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px; /* Border thickness */
  background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 100%);
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.btn-outline-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.5), 0 0 50px rgba(139, 92, 246, 0.3);
}

.btn-outline-gradient:active {
  transform: translateY(0);
}

.showcase-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.3));
  animation: floatLogo 6s infinite ease-in-out;
  pointer-events: none;
  transform-style: preserve-3d;
  transform: translateZ(30px);
}

.logo-wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.logo-bg-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(168, 85, 247, 0.05) 65%, transparent 100%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 0;
  animation: breathPulse 4s infinite ease-in-out;
  pointer-events: none;
}

/* Interactive Tools Section */
#interactive-tools {
  padding: 80px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.tool-card-wrapper {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-card-wrapper:hover {
  transform: translateY(-6px);
}

/* Animations */
@keyframes floatLogo {
  0% { transform: translateY(0px) rotate(0deg) translateZ(30px); }
  50% { transform: translateY(-8px) rotate(1deg) translateZ(30px); }
  100% { transform: translateY(0px) rotate(0deg) translateZ(30px); }
}

@keyframes breathPulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.9; }
  100% { transform: scale(0.95); opacity: 0.6; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Enhanced 3D Buttons & Neon Glows */
.btn {
  border-radius: 12px !important;
  transition: transform 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.12s ease, background-color 0.2s ease, border-color 0.2s ease !important;
}

/* Snappy 3D Click Animation */
.btn:active {
  transform: translateY(4px) !important;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.8) 0%, rgba(139, 92, 246, 0.8) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.25), 
              0 0 15px rgba(6, 182, 212, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4), 
              0 0 25px rgba(139, 92, 246, 0.35), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%) !important;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98) !important;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2) !important;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.12), 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(168, 85, 247, 0.15) !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.18), 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 25px rgba(168, 85, 247, 0.3) !important;
}

.btn-secondary:active {
  box-shadow: 0 0px 0 transparent, 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 10px rgba(168, 85, 247, 0.1) !important;
}

.btn-cta {
  background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 0 #055a6d, 0 4px 15px rgba(6, 182, 212, 0.3), 0 0 15px rgba(6, 182, 212, 0.25) !important;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #22d3ee, #06b6d4) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 #055a6d, 0 6px 20px rgba(6, 182, 212, 0.45), 0 0 25px rgba(6, 182, 212, 0.4) !important;
}

.btn-cta:active {
  box-shadow: 0 0px 0 transparent, 0 2px 10px rgba(6, 182, 212, 0.2), 0 0 10px rgba(6, 182, 212, 0.15) !important;
}

.btn-circle {
  box-shadow: 0 4px 0 #055a6d, 0 4px 15px rgba(6, 182, 212, 0.3), 0 0 15px rgba(6, 182, 212, 0.25) !important;
  transition: transform 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.12s ease !important;
}

.btn-circle:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 #055a6d, 0 6px 20px rgba(6, 182, 212, 0.45), 0 0 25px rgba(6, 182, 212, 0.4) !important;
}

.btn-circle:active {
  transform: translateY(4px) !important;
  box-shadow: 0 0px 0 transparent, 0 2px 10px rgba(6, 182, 212, 0.2), 0 0 10px rgba(6, 182, 212, 0.15) !important;
}

.control-btn.play-btn {
  box-shadow: 0 4px 0 #0d276b, 0 4px 15px rgba(99, 102, 241, 0.35), 0 0 15px rgba(6, 182, 212, 0.25) !important;
  transition: transform 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.12s ease !important;
}

.control-btn.play-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 #0d276b, 0 6px 25px rgba(6, 182, 212, 0.5), 0 0 25px rgba(6, 182, 212, 0.35) !important;
}

.control-btn.play-btn:active {
  transform: translateY(4px) !important;
  box-shadow: 0 0px 0 transparent, 0 2px 10px rgba(6, 182, 212, 0.2) !important;
}

/* Soft Neon Glow for Homepage Boxes/Cards */
.glass-card, .brand-showcase-card, .player-3d-wrapper, .sw-player-container {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
              0 0 30px rgba(99, 102, 241, 0.15), 
              0 0 15px rgba(6, 182, 212, 0.1), 
              inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.glass-card:hover, .brand-showcase-card:hover, .player-3d-wrapper:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 
              0 0 40px rgba(99, 102, 241, 0.25), 
              0 0 20px rgba(6, 182, 212, 0.18), 
              inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
}


/* Floating particle background elements */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.3);
  pointer-events: none;
  animation: floatParticle 10s infinite linear;
}

@keyframes floatParticle {
  0% { transform: translateY(100%) translateX(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10%) translateX(50px) scale(1.2); opacity: 0; }
}

/* Onboarding Lead Gate Pill Buttons */
.gate-pill-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-secondary) !important;
  transition: transform 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.12s ease, background-color 0.25s, border-color 0.25s, color 0.25s !important;
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.08), 0 4px 10px rgba(0,0,0,0.3) !important;
}

.gate-pill-btn:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--text-primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.12), 0 6px 15px rgba(0,0,0,0.4) !important;
}

.gate-pill-btn:active {
  transform: translateY(4px) !important;
  box-shadow: 0 0px 0 transparent !important;
}

.gate-pill-btn.active {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15)) !important;
  border-color: rgba(6, 182, 212, 0.45) !important;
  color: #fff !important;
  box-shadow: 0 4px 0 rgba(6, 182, 212, 0.3), 0 4px 15px rgba(6, 182, 212, 0.2), 0 0 15px rgba(6, 182, 212, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.gate-pill-btn.active:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 0 rgba(6, 182, 212, 0.4), 0 6px 20px rgba(6, 182, 212, 0.3), 0 0 25px rgba(6, 182, 212, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.gate-pill-btn.active:active {
  transform: translateY(4px) !important;
  box-shadow: 0 0px 0 transparent, 0 2px 10px rgba(6, 182, 212, 0.1), 0 0 10px rgba(6, 182, 212, 0.15) !important;
}

/* Animated Cyber Dotted Grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
              radial-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  pointer-events: none;
  z-index: -2;
  animation: bgScroll 240s linear infinite;
}

@keyframes bgScroll {
  from { background-position: 0 0, 20px 20px; }
  to { background-position: 1000px 2000px, 1020px 2020px; }
}

/* Global Particles Container & Sparkling floating elements */
.particles-container {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 10s infinite linear;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) translateX(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(100px) scale(1.2); opacity: 0; }
}

.parallax-bg-wrapper {
  transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.parallax-scroll {
  will-change: transform;
}

/* ==========================================================================
   REDESIGNED PORTFOLIO & TILT EFFECTS
   ========================================================================== */

/* Portfolio Spotlight Section */
.portfolio-spotlight {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 
              0 0 40px rgba(6, 182, 212, 0.05);
}

.spotlight-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 10, 19, 0.3) 0%, rgba(7, 10, 19, 0.8) 50%, rgba(7, 10, 19, 0.98) 100%);
  z-index: 1;
}

.spotlight-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px;
  z-index: 2;
}

.spotlight-card {
  max-width: 550px;
  background: rgba(13, 17, 32, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateZ(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.spotlight-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.spotlight-badge-gold {
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.spotlight-card h3 {
  font-family: var(--font-main, 'Outfit', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.spotlight-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Dynamic Portfolio Items & 3D tilt effects */
.portfolio-item {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  will-change: transform;
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.portfolio-item:hover::after {
  opacity: 1;
}

.portfolio-media-box {
  transform: translateZ(8px);
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.portfolio-info {
  transform: translateZ(18px);
  transition: transform 0.1s ease;
  background: rgba(13, 17, 32, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-info h3 {
  transform: translateZ(28px);
}

.portfolio-info p {
  transform: translateZ(24px);
}

.portfolio-info .item-tag {
  transform: translateZ(24px);
}

.portfolio-media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
  transition: filter 0.3s ease;
}

.portfolio-item:hover .portfolio-media-box video {
  filter: saturate(1.1) brightness(1.05);
}

/* Lightbox Video custom styles */
#lightbox-video {
  width: 100%;
  max-width: 900px;
  max-height: 70vh;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(6, 182, 212, 0.15);
  outline: none;
  background: #000;
}

/* Adjust filter buttons */
.filter-btn {
  border-radius: 100px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-main, 'Outfit', sans-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4),
              0 4px 15px rgba(6, 182, 212, 0.2) !important;
}

/* Smooth filtering transition */
.portfolio-item.hidden-filter {
  display: none !important;
}

/* ==========================================================================
   BEAT-REACTIVE GLOWS & TRIP MODE ANIMATIONS
   ========================================================================== */

.glow-purple {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, calc(0.04 + var(--beat-amplitude, 0) * 0.12)) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
  z-index: 1;
  transform: scale(calc(1 + var(--beat-amplitude, 0) * 0.15));
  transition: transform 0.1s ease-out;
}

.glow-cyan {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, calc(0.04 + var(--beat-amplitude, 0) * 0.12)) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
  transform: scale(calc(1 + var(--beat-amplitude, 0) * 0.15));
  transition: transform 0.1s ease-out;
}

/* Trip Mode Transitions */
#listening-station {
  transition: background 0.8s ease, border-color 0.8s ease;
}

@keyframes tripGlow {
  0% { filter: hue-rotate(0deg) saturate(1) contrast(1); }
  50% { filter: hue-rotate(180deg) saturate(1.8) contrast(1.1); }
  100% { filter: hue-rotate(360deg) saturate(1) contrast(1); }
}

#listening-station.trip-mode {
  animation: tripGlow 12s linear infinite;
  background: radial-gradient(circle at center, #0f051a 0%, #030408 100%) !important;
  border-top: 1px solid rgba(168, 85, 247, 0.4) !important;
}

#listening-station.trip-mode .glow-purple,
#listening-station.trip-mode .glow-cyan {
  mix-blend-mode: color-dodge;
  animation: tripPulseScale 4s ease-in-out infinite alternate;
}

@keyframes tripPulseScale {
  0% { transform: scale(calc(0.95 + var(--beat-amplitude, 0) * 0.15)) rotate(0deg); opacity: 0.8; }
  100% { transform: scale(calc(1.35 + var(--beat-amplitude, 0) * 0.25)) rotate(180deg); opacity: 1; }
}

#listening-station.trip-mode .brand-showcase-card,
#listening-station.trip-mode .player-container,
#listening-station.trip-mode .listen-card {
  box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15), 0 0 30px rgba(6, 182, 212, 0.1);
}

/* Page-wide beat-reactive styles during Trip Mode */
body.trip-mode-active .bento-card,
body.trip-mode-active .portfolio-item,
body.trip-mode-active .testimonial-card {
  box-shadow: 0 10px 30px rgba(168, 85, 247, calc(0.05 + var(--beat-amplitude, 0) * 0.15)), 
              0 0 calc(10px + var(--beat-amplitude, 0) * 20px) rgba(6, 182, 212, calc(0.05 + var(--beat-amplitude, 0) * 0.2)) !important;
  border-color: rgba(168, 85, 247, calc(0.25 + var(--beat-amplitude, 0) * 0.45)) !important;
  transform: translateY(calc(var(--beat-amplitude, 0) * -8px)) scale(calc(1.0 + var(--beat-amplitude, 0) * 0.015)) !important;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, border-color 0.08s ease-out;
}
@keyframes spinIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
  .console-inner-grid {
    padding: 16px 10px !important;
    gap: 20px !important;
  }
  .ab-toggle-container {
    gap: 8px !important;
    padding: 8px 10px !important;
  }
  .ab-toggle-btn {
    font-size: 0.7rem !important;
  }
  .vfd-display-screen {
    padding: 12px 14px !important;
  }
  .vfd-label, .vfd-status-indicator, .vfd-sample-rate {
    font-size: 0.58rem !important;
  }
  .now-playing-title {
    font-size: 0.95rem !important;
  }
  .now-playing-genre {
    font-size: 0.68rem !important;
  }
}

/* Floating Trip Mode Action Button */
.floating-trip-btn {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--accent-purple);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-trip-btn:hover {
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.8);
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.3);
}

.floating-trip-btn .trip-icon {
  display: inline-block;
  animation: spinIcon 6s linear infinite;
}

.floating-trip-btn.active {
  background: rgba(6, 182, 212, 0.35);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.8);
}

.floating-trip-btn.active .trip-icon {
  animation: spinIcon 1.5s linear infinite;
}

/* Tooltip on hover */
.floating-trip-btn .trip-tooltip {
  visibility: hidden;
  position: absolute;
  right: 60px;
  background: rgba(8, 14, 28, 0.95);
  border: 1px solid var(--accent-purple);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

.floating-trip-btn:hover .trip-tooltip {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-trip-btn {
    bottom: 120px; /* Float above the mobile player bar */
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}

/* Hide Calendly widget container when empty (e.g. when blocked by ad-blockers) to reveal fallback */
.calendly-inline-widget:empty {
  display: none !important;
}


/* Lenis Smooth Scroll Rules */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Scrollytelling GPU Layer Promotion & Content Pre-rendering */
.reveal, .pov-r, .pov-a, .tech-node, #orb1, #orb2, .main-card, .srt-card {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ==========================================================================
   AUTHENTICATION & PORTAL CARDS (login.html, authGuardModal, paywall)
   ========================================================================== */
.auth-container {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px 20px;
  position: relative;
}

.auth-glow-bg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(168, 85, 247, 0.14) 45%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(6, 182, 212, 0.15);
}

.auth-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #06b6d4;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.auth-tabs {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  color: #94a3b8;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.auth-tab.active {
  color: #06b6d4;
  border-bottom: 2px solid #06b6d4;
}

.btn-demo-fast {
  width: 100%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid #06b6d4;
  color: #06b6d4;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.btn-demo-fast:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(168, 85, 247, 0.35));
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: 0 0 28px rgba(6, 182, 212, 0.3);
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  margin-bottom: 18px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-google:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.divider {
  text-align: center;
  margin: 22px 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.divider span {
  position: relative;
  background: #0f172a;
  padding: 0 14px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: #94a3b8;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
  transition: border 0.25s ease, background 0.25s ease;
}

.form-group input:focus {
  border-color: #06b6d4;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.25);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.35);
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
  filter: brightness(1.08);
}

/* ── Hero banner & Feature Pills ───────────────────────────────────── */
.studio-hero {
  padding: 72px 24px 44px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.studio-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--accent-cyan, #06b6d4);
  font-family: var(--font-main, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
.studio-tag svg {
  color: var(--accent-cyan, #06b6d4);
}
.studio-hero h1 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 18px;
}
.gradient-text {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.studio-hero p {
  font-size: 1.08rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.pill svg {
  color: var(--accent-cyan, #06b6d4);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.pill:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(6, 182, 212, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.25);
}
.pill:hover svg {
  transform: scale(1.1);
}

/* ==========================================================================
   ULTRA-PREMIUM PRO BUTTON DESIGN SYSTEM (UNIVERSAL)
   ========================================================================== */

/* Primary Metallic Gradient CTA Buttons (.btn-p, .btn-primary, .btn-main, .nav-cta, .srt-cta-btn, .pc-cta.cta-p, .btn-launch) */
.btn-p, .btn-primary, .btn-main, .nav-cta, .srt-cta-btn, .pc-cta.cta-p, .btn-launch, button.btn-primary, a.btn-p, a.btn-primary, a.btn-main {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  border-radius: 12px !important;
  padding: 12px 26px !important;
  background: linear-gradient(135deg, #c5a059 0%, #e2c275 40%, #ff7a00 100%) !important;
  color: #060919 !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4), 0 0 0 1px rgba(197, 160, 89, 0.3) inset !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-p:hover, .btn-primary:hover, .btn-main:hover, .nav-cta:hover, .srt-cta-btn:hover, .pc-cta.cta-p:hover, .btn-launch:hover, a.btn-p:hover, a.btn-primary:hover, a.btn-main:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 32px rgba(197, 160, 89, 0.65), 0 0 25px rgba(226, 194, 117, 0.5) !important;
  filter: brightness(1.1) !important;
  color: #000000 !important;
}

.btn-p:active, .btn-primary:active, .btn-main:active, .nav-cta:active, .srt-cta-btn:active {
  transform: translateY(0) scale(0.98) !important;
  box-shadow: 0 2px 10px rgba(197, 160, 89, 0.4) !important;
}

/* Secondary & Ghost Glass Buttons (.btn-g, .btn-ghost, .btn-sec, .btn-secondary) */
.btn-g, .btn-ghost, .btn-sec, .btn-secondary, button.btn-secondary, a.btn-g, a.btn-ghost, a.btn-sec {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #f0f4ff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.btn-g:hover, .btn-ghost:hover, .btn-sec:hover, .btn-secondary:hover, a.btn-g:hover, a.btn-ghost:hover, a.btn-sec:hover {
  background: rgba(0, 210, 255, 0.12) !important;
  border-color: rgba(0, 210, 255, 0.45) !important;
  color: #00d2ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(0, 210, 255, 0.25) !important;
}

/* Filter Pill Buttons (.filter-btn, .btn-filter) */
.filter-btn, .btn-filter {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 9px 20px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.filter-btn:hover, .btn-filter:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px) !important;
}

.filter-btn.active, .btn-filter.active {
  color: #060919 !important;
  background: linear-gradient(135deg, #c5a059 0%, #e2c275 100%) !important;
  border-color: #e2c275 !important;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35) !important;
}

/* ============================================================
   TAURI DESKTOP APP OVERRIDES — UNLOCKED STUDIO WORKSTATION MODE
   Hides all website marketing links, SaaS paywalls, pricing bars,
   ad copy, and website header/footer links when running in desktop mode.
   ============================================================ */
body.tauri-app .tauri-nav-arrows {
  display: flex !important;
}

body.tauri-app .header-nav a[href="/"],
body.tauri-app .header-nav a[href*="pricing"],
body.tauri-app .header-nav a[href*="services"],
body.tauri-app .header-nav a[href*="academies"],
body.tauri-app .header-nav a[href*="login"],
body.tauri-app .header-nav a[href*="account"],
body.tauri-app .nav-menu-wrapper,
body.tauri-app .nav-account-btn,
body.tauri-app #tierSelectorBar,
body.tauri-app #floatingReadinessBar,
body.tauri-app .paywall-modal,
body.tauri-app #paywallModal,
body.tauri-app #authWall,
body.tauri-app .auth-wall,
body.tauri-app .saas-upgrade-banner,
body.tauri-app .pro-upgrade-pill,
body.tauri-app .pricing-section,
body.tauri-app .credit-badge,
body.tauri-app .onboarding-nav-btn,
body.tauri-app .paywall-credits-link,
body.tauri-app footer {
  display: none !important;
}


