/* ============================================================
   SUMIT KUMAR — CINEMATIC VIDEO EDITOR PORTFOLIO
   MASTER STYLESHEET
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Color Palette (Dark Theme Default) */
  --bg-pure: #000000;
  --bg-deep: #050505;
  --bg-surface: #0a0a0c;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-card-solid: #0c0d12;
  --bg-elevated: #12131b;

  /* Cinematic Accents */
  --gold-primary: #C9A84C;
  --gold-glow: #e6c875;
  --gold-dark: #8c722e;
  --gold-soft: rgba(201, 168, 76, 0.18);
  --gold-gradient: linear-gradient(135deg, #F9E7B3 0%, #C9A84C 50%, #9B7827 100%);
  
  --cyan-accent: #00F0FF;
  --cyan-glow: rgba(0, 240, 255, 0.4);
  --cyan-soft: rgba(0, 240, 255, 0.12);

  --text-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-muted: #888892;
  --text-dim: #555560;

  /* Glassmorphism & Borders */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-gold: rgba(201, 168, 76, 0.3);
  --glass-border-cyan: rgba(0, 240, 255, 0.25);
  --glass-blur: blur(24px);

  /* Shadows & Dynamic Surfaces */
  --card-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  --card-shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-soft);
  --header-bg-scrolled: rgba(0, 0, 0, 0.85);
  --timeline-bg: rgba(0, 0, 0, 0.85);
  --modal-bg: #0c0d14;
  --modal-header-bg: rgba(0, 0, 0, 0.4);
  --modal-footer-bg: rgba(0, 0, 0, 0.6);
  --footer-bg: #040406;

  /* Typography */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-title: 'Bebas Neue', 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
  /* Color Palette (Light Studio Clean & Luxury Platinum) */
  --bg-pure: #F7F8FA;
  --bg-deep: #FFFFFF;
  --bg-surface: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.86);
  --bg-card-hover: #FFFFFF;
  --bg-card-solid: #FFFFFF;
  --bg-elevated: #EEF2F6;

  /* High-Contrast Luxury Gold & Cyan */
  --gold-primary: #9E770E;
  --gold-glow: rgba(158, 119, 14, 0.4);
  --gold-dark: #705303;
  --gold-soft: rgba(158, 119, 14, 0.12);
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #876203 100%);
  
  --cyan-accent: #007799;
  --cyan-glow: rgba(0, 119, 153, 0.35);
  --cyan-soft: rgba(0, 119, 153, 0.1);

  --text-white: #111319;
  --text-primary: #111319;
  --text-muted: #495160;
  --text-dim: #717C8E;

  /* Glassmorphism & Borders */
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-border-gold: rgba(158, 119, 14, 0.35);
  --glass-border-cyan: rgba(0, 119, 153, 0.3);
  --glass-blur: blur(20px);

  /* Shadows & Dynamic Surfaces */
  --card-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.07), 0 2px 8px -1px rgba(0, 0, 0, 0.04);
  --card-shadow-hover: 0 20px 40px -6px rgba(158, 119, 14, 0.18), 0 4px 14px -2px rgba(0, 0, 0, 0.06);
  --header-bg-scrolled: rgba(255, 255, 255, 0.94);
  --timeline-bg: rgba(255, 255, 255, 0.94);
  --modal-bg: #FFFFFF;
  --modal-header-bg: #F4F6FB;
  --modal-footer-bg: #F8FAFD;
  --footer-bg: #EAEEF5;
}

/* ------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--bg-pure);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: auto; /* Handled by Lenis */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-pure);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  cursor: default;
}

@media (min-width: 992px) {
  body {
    cursor: none; /* Uses custom cursor */
  }
}

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

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

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Utility Classes */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.electric-blue-text {
  color: var(--cyan-accent);
  text-shadow: 0 0 20px var(--cyan-glow);
}

.outline-text {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  color: transparent;
  transition: -webkit-text-stroke 0.3s ease, color 0.3s ease;
}

.outline-text:hover {
  -webkit-text-stroke: 1.5px var(--gold-primary);
  color: rgba(201, 168, 76, 0.15);
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-cinematic);
}

.glass-panel:hover {
  border-color: var(--glass-border-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-soft);
}

/* ------------------------------------------------------------
   3. CUSTOM CURSOR
   ------------------------------------------------------------ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 999999;
  display: none;
}

@media (min-width: 992px) {
  .custom-cursor {
    display: block;
  }
}

.cursor-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 10px var(--gold-primary);
}

.cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease-cinematic), height 0.3s var(--ease-cinematic), background-color 0.3s, border-color 0.3s;
}

.cursor-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}

.cursor-icon {
  font-size: 11px;
  color: #000;
  opacity: 0;
  display: none;
}

/* Cursor State Variations */
.custom-cursor.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  background: var(--gold-primary);
  border-color: var(--gold-glow);
  box-shadow: 0 0 25px var(--gold-soft);
}

.custom-cursor.cursor-hover .cursor-dot {
  opacity: 0;
}

.custom-cursor.cursor-hover .cursor-label {
  opacity: 1;
  transform: scale(1);
}

.custom-cursor.cursor-play .cursor-ring {
  width: 76px;
  height: 76px;
  background: var(--cyan-accent);
  border-color: #fff;
  box-shadow: 0 0 30px var(--cyan-glow);
}

.custom-cursor.cursor-play .cursor-icon {
  display: inline-block;
  opacity: 1;
}

.custom-cursor.cursor-play .cursor-label {
  display: none;
}

/* ------------------------------------------------------------
   4. TOP VIDEO TIMELINE SCRUBBER
   ------------------------------------------------------------ */
.timeline-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  background: var(--timeline-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 9995;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.timeline-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.timeline-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), var(--cyan-accent));
  box-shadow: 0 0 8px var(--cyan-glow);
  transition: width 0.05s linear;
}

.timeline-playhead {
  position: absolute;
  top: -4px;
  left: 0%;
  width: 2px;
  height: 11px;
  background: #FFFFFF;
  box-shadow: 0 0 6px #fff, 0 0 10px var(--gold-primary);
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.timecode-display {
  color: var(--gold-primary);
  font-weight: 700;
}

.render-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #00FF88;
}

.pulse-dot {
  width: 5px;
  height: 5px;
  background: #00FF88;
  border-radius: 50%;
  animation: recPulse 1.2s infinite;
}

@keyframes recPulse {
  0% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
  100% { opacity: 0.3; transform: scale(0.9); }
}

/* ------------------------------------------------------------
   5. FULL-SCREEN CINEMATIC LOADER (SECTION 1)
   ------------------------------------------------------------ */
.cinematic-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow: hidden;
}

.loader-calibration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.rec-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FF2A2A;
  border-radius: 50%;
  margin-right: 6px;
  animation: recPulse 1s infinite;
}

.loader-tc {
  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 700;
}

.loader-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.loader-timeline-bar-wrapper {
  width: 280px;
  max-width: 80vw;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.loader-timeline-bar {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px var(--gold-glow);
}

.loader-brand-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 10vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 0.95;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.title-char {
  display: inline-block;
  transform: translateY(120px) rotate(8deg);
  opacity: 0;
}

.blinking-cursor {
  color: var(--gold-primary);
  margin-left: 4px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.loader-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 2vw, 1.1rem);
  letter-spacing: 6px;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  gap: 10px;
}

.loader-tools-ticker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
  opacity: 0;
}

.loader-tools-ticker .sep {
  margin: 0 8px;
  color: rgba(201, 168, 76, 0.4);
}

.loader-bottom {
  display: flex;
  justify-content: flex-end;
}

.skip-loader-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skip-loader-btn:hover {
  color: #fff;
  border-color: var(--gold-primary);
  background: var(--gold-soft);
}

/* ------------------------------------------------------------
   6. SITE HEADER & NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 28px;
  left: 0;
  width: 100%;
  z-index: 9990;
  padding: 1rem 0;
  background: linear-gradient(180deg, var(--bg-pure) 0%, transparent 100%);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

.site-header.header-scrolled {
  padding: 0.6rem 0;
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px var(--gold-soft);
  transition: all 0.3s ease;
}

.logo-mark.small {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.logo-mark .gold {
  color: var(--gold-primary);
}

.logo-cut-line {
  position: absolute;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 1px;
  background: var(--cyan-accent);
  transform: rotate(-35deg);
  opacity: 0.6;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-white);
  line-height: 1.1;
  transition: color 0.3s ease;
}

.logo-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-primary);
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: #00FF88;
}

[data-theme="light"] .status-pill {
  background: rgba(0, 168, 90, 0.08);
  border-color: rgba(0, 168, 90, 0.3);
  color: #008744;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: #00FF88;
  border-radius: 50%;
  animation: recPulse 1.4s infinite;
}

[data-theme="light"] .status-indicator {
  background: #008744;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link span {
  color: var(--gold-primary);
  font-size: 10px;
  margin-right: 2px;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme Mode Toggle Button */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.theme-toggle-btn:hover {
  border-color: var(--gold-primary);
  color: var(--text-white);
  box-shadow: 0 0 15px var(--gold-soft);
  transform: translateY(-1px);
}

.theme-icon-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  position: relative;
}

.theme-icon {
  position: absolute;
  transition: transform 0.4s var(--ease-bounce), opacity 0.3s ease;
  font-size: 11px;
}

.sun-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.3);
  color: var(--gold-primary);
}

.moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: var(--cyan-accent);
}

[data-theme="light"] .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: var(--gold-primary);
}

[data-theme="light"] .moon-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.3);
  color: var(--cyan-accent);
}

.theme-label {
  font-weight: 700;
  font-size: 10px;
}

/* Sound Toggle Button */
.sound-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sound-toggle-btn:hover {
  border-color: var(--gold-primary);
  color: var(--text-white);
}

.sound-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.s-bar {
  width: 2px;
  height: 3px;
  background: var(--text-muted);
  border-radius: 1px;
  transition: height 0.2s ease, background-color 0.2s ease;
}

.sound-toggle-btn.sound-active .s-bar {
  background: var(--gold-primary);
}

.sound-toggle-btn.sound-active .s-bar:nth-child(1) { animation: sBarAnim 0.7s infinite alternate 0.1s; }
.sound-toggle-btn.sound-active .s-bar:nth-child(2) { animation: sBarAnim 0.7s infinite alternate 0.3s; }
.sound-toggle-btn.sound-active .s-bar:nth-child(3) { animation: sBarAnim 0.7s infinite alternate 0.2s; }
.sound-toggle-btn.sound-active .s-bar:nth-child(4) { animation: sBarAnim 0.7s infinite alternate 0.4s; }

@keyframes sBarAnim {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: btnRippleAnim 0.6s linear forwards;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 10;
}

@keyframes btnRippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-header {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--glass-border-cyan);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  text-decoration: none;
}

.btn-header:hover {
  background: var(--cyan-accent);
  color: #000;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.whatsapp-icon {
  color: #25D366;
}

.btn-header:hover .whatsapp-icon {
  color: #000;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  border: 1px solid var(--gold-glow);
  box-shadow: 0 8px 24px var(--gold-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
}

.btn-secondary:hover {
  border-color: var(--cyan-accent);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 25px var(--cyan-soft);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
}

.btn-gold:hover {
  box-shadow: 0 0 25px var(--gold-glow);
}

.btn-full {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.mobile-drawer {
  display: none;
}

/* ------------------------------------------------------------
   7. THREE.JS CANVAS CONTAINER
   ------------------------------------------------------------ */
.three-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

#threeHeroCanvas {
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------
   8. SECTION 2 — HERO SECTION
   ------------------------------------------------------------ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
}

.gold-line-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--glass-border-gold);
}

.gold-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
}

.hero-nle-tag .time-stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-dim);
}

/* Massive Headline */
.hero-headline {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.headline-line {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}

/* Subtext */
.hero-subtext-container {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.tools-pill-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.tool-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: #E0E0E0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tool-pill i {
  color: var(--gold-primary);
}

.tool-pill:hover {
  border-color: var(--gold-primary);
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.hero-subparagraph {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-subparagraph strong {
  color: #fff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.scroll-countdown-track {
  width: 2px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line-pulse {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-primary), transparent);
  animation: scrollDownPulse 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollDownPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

.scroll-frame-num {
  font-size: 8px;
  color: var(--text-dim);
}

/* ------------------------------------------------------------
   9. SECTION 3 — THE INTERVIEW / SELF-INTRODUCTION
   ------------------------------------------------------------ */
.interview-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.film-wipe-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left: 3D Visualizer & Studio Mockup */
.interview-visual-column {
  position: relative;
}

.editor-orb-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.orb-glow-core {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, rgba(0, 240, 255, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  animation: orbPulse 8s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0.9; }
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.25);
  pointer-events: none;
}

.ring-1 { width: 380px; height: 380px; animation: spinRing 30s linear infinite; }
.ring-2 { width: 440px; height: 440px; border-color: rgba(0, 240, 255, 0.15); animation: spinRing 45s linear infinite reverse; }
.ring-3 { width: 500px; height: 500px; border-color: rgba(255, 255, 255, 0.06); }

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.editor-visual-card {
  width: 100%;
  max-width: 400px;
  padding: 1.5rem;
  z-index: 2;
}

.card-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.red-rec {
  color: #FF2A2A;
  font-weight: 700;
}

.editor-silhouette-art {
  position: relative;
  height: 220px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0c0d12 0%, #15161f 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.silhouette-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
}

.nle-screen-mock {
  position: relative;
  z-index: 2;
}

.track-line {
  height: 6px;
  border-radius: 3px;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}

.tr-1 { width: 90%; background: linear-gradient(90deg, #3d2b79, #6c42f5); }
.tr-2 { width: 75%; background: linear-gradient(90deg, #1b4b66, var(--cyan-accent)); }
.tr-3 { width: 60%; background: linear-gradient(90deg, #70581a, var(--gold-primary)); }

.audio-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-top: 10px;
}

.audio-wave-bars .wv {
  flex: 1;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: wavePulse 1.2s infinite ease-in-out alternate;
}

.audio-wave-bars .wv:nth-child(odd) { animation-duration: 0.8s; }
.audio-wave-bars .wv:nth-child(3n) { animation-duration: 1.4s; background: var(--cyan-accent); }

@keyframes wavePulse {
  0% { height: 4px; }
  100% { height: 26px; }
}

.card-caption {
  margin-top: 1.25rem;
}

.caption-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #fff;
}

.caption-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
}

/* HUD badges */
.hud-badge {
  position: absolute;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hud-badge.gold i { color: var(--gold-primary); }
.hud-badge.cyan i { color: var(--cyan-accent); }

.hud-1 { top: 15%; right: -20px; animation: floatHUD 4s ease-in-out infinite alternate; }
.hud-2 { bottom: 10%; left: -20px; animation: floatHUD 5s ease-in-out infinite alternate-reverse; }

@keyframes floatHUD {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Right: Subtitle Reveal */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

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

.tag-number {
  font-weight: 700;
}

.tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold-primary);
}

.speaking-statement-box {
  margin-bottom: 2rem;
}

.speak-line {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.speak-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.6s var(--ease-cinematic), opacity 0.6s ease;
}

.interview-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 620px;
}

.interview-paragraph strong {
  color: #fff;
}

/* Stat Cards */
.interview-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stat-card {
  padding: 1.5rem;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.stat-card:nth-child(2) { animation-delay: 1.5s; }
.stat-card:nth-child(3) { animation-delay: 3s; }

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.stat-top {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold-primary);
  margin-left: 2px;
}

.stat-top.tools-count i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.stat-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.card-corner-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

/* ------------------------------------------------------------
   10. SECTION 4 — 9:16 VERTICAL VIDEO SHOWCASE (4-COLUMN GRID)
   ------------------------------------------------------------ */
.showcase-section {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
  background: var(--bg-deep);
  overflow: hidden;
}

/* Category Filter Pill Switcher (Matching Reference Design) */
.video-filter-pill-container {
  display: flex;
  justify-content: center;
  margin: 0 auto 3.5rem;
  width: 100%;
}

.filter-pills-track {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 50px;
  background: rgba(18, 20, 29, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-pills-track::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
}

.filter-pill:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.filter-pill.active {
  background: #000000;
  color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(201, 168, 76, 0.4);
  font-weight: 700;
}

.filter-pill .pill-icon {
  font-size: 12px;
  display: flex;
  align-items: center;
}

.pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.filter-pill.active .pill-count {
  background: var(--gold-primary);
  color: #000000;
}

/* Centered 9:16 Video Grid */
.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* 9:16 Vertical Video Card */
.vertical-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000000;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s var(--ease-cinematic), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.35s ease;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  -webkit-tap-highlight-color: transparent;
}

.vertical-video-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 35px rgba(201, 168, 76, 0.25);
  z-index: 3;
}

.vertical-video-card.card-filtered-out {
  display: none;
}

/* Card Video Canvas Viewport */
.card-video-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #000000;
}

.card-video-canvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.card-video-canvas::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Embedded HTML5 Video Element */
.card-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  background: #000000;
  display: block;
}

/* Top Elements Bar */
.card-top-bar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.video-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-transform: uppercase;
}

.video-card-sound-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 7;
}

.video-card-sound-btn:hover {
  background: var(--gold-primary);
  color: #000000;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--gold-glow);
}

.video-card-sound-btn.unmuted {
  background: rgba(37, 211, 102, 0.9);
  color: #ffffff;
  border-color: rgba(37, 211, 102, 0.6);
}

/* Client Branding Pill */
.video-client-branding {
  position: absolute;
  top: 56px;
  left: 14px;
  z-index: 5;
}

.client-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.client-logo-pill i {
  color: var(--gold-primary);
}

/* Center Circular Play Button (Matching Reference) */
.video-card-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 6;
  transition: all 0.35s var(--ease-bounce);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.video-card-play-btn i {
  margin-left: 3px;
}

.vertical-video-card:hover .video-card-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000000;
  box-shadow: 0 0 35px var(--gold-glow);
}

.play-wave-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  opacity: 0;
  pointer-events: none;
}

.vertical-video-card:hover .play-wave-ring {
  animation: playRingExpand 1.5s infinite;
}

@keyframes playRingExpand {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* Playing State (Instant In-Place Playback) */
.vertical-video-card.is-playing .video-card-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.vertical-video-card.is-playing:hover .video-card-play-btn {
  opacity: 0.9;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(0, 0, 0, 0.75);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.vertical-video-card.is-playing .video-card-play-btn i {
  margin-left: 0;
}

.vertical-video-card.is-playing .video-card-play-btn i::before {
  content: "\f04c"; /* FontAwesome fa-pause */
}

.vertical-video-card.is-playing .play-wave-ring {
  display: none;
}

.vertical-video-card.is-playing .card-video-canvas::before,
.vertical-video-card.is-playing .card-video-canvas::after {
  opacity: 0.5;
  transition: opacity 0.35s ease;
}


/* Ambient Glows */
.video-ambient-glow {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.glow-gold { background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.45) 0%, rgba(255, 42, 42, 0.2) 50%, transparent 75%); }
.glow-cyan { background: radial-gradient(circle at 50% 40%, rgba(0, 240, 255, 0.45) 0%, rgba(108, 66, 245, 0.3) 50%, transparent 75%); }

.vertical-video-card:hover .video-ambient-glow {
  opacity: 0.65;
}

/* Stylized Visual Mockup Backgrounds */
.video-bg-art {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.kinetic-caption-chip {
  position: absolute;
  top: 65%;
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 85%;
  z-index: 4;
}

.gold-chip { color: var(--gold-primary); border-color: rgba(201, 168, 76, 0.4); }
.cyan-chip { color: var(--cyan-accent); border-color: rgba(0, 240, 255, 0.4); }

/* Scene Background 1 (Presenter / Lawn Care) */
.art-presenter-1 {
  background: linear-gradient(180deg, #1c2e22 0%, #101c14 40%, #080d0a 100%);
}

.scene-truck-bg {
  position: absolute;
  top: 15%;
  width: 140px;
  height: 90px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(201,168,76,0.1) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.presenter-figure {
  position: absolute;
  bottom: 25%;
  width: 110px;
  height: 150px;
  background: linear-gradient(180deg, #e6c8a2 0%, #2e5939 50%, #1e3825 100%);
  border-radius: 50px 50px 0 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
}

.presenter-badge-shirt {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  background: #142a1b;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Scene Background 2 (Hardscape) */
.art-hardscape-2 {
  background: linear-gradient(180deg, #090a10 0%, #121524 50%, #05060a 100%);
}

.brand-hero-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #fff;
}

.brand-hero-emblem i {
  font-size: 2.4rem;
}

/* Scene Background 3 (Excavation) */
.art-excavation-3 {
  background: linear-gradient(180deg, #2b2318 0%, #1c150c 50%, #0d0a06 100%);
}

.patio-fence-art {
  position: absolute;
  top: 20%;
  width: 80%;
  height: 40px;
  border-top: 3px solid #8b4513;
  border-bottom: 3px solid #8b4513;
  background: repeating-linear-gradient(90deg, #5c2e0b, #5c2e0b 6px, transparent 6px, transparent 18px);
  opacity: 0.6;
}

.soil-track-lines {
  position: absolute;
  bottom: 28%;
  width: 70%;
  height: 60px;
  background: repeating-linear-gradient(0deg, #3d2614, #3d2614 4px, transparent 4px, transparent 12px);
  opacity: 0.5;
  border-radius: 8px;
}

/* Scene Background 4 (Hedge Trim ASMR) */
.art-hedge-4 {
  background: linear-gradient(180deg, #12281a 0%, #0d1e13 50%, #060e09 100%);
}

.foliage-green-scene {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #25663a 0%, #143d22 70%, transparent 100%);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.8;
}

/* Scene Background 5 (Streetwear) */
.art-streetwear-5 {
  background: linear-gradient(180deg, #1b120c 0%, #241407 50%, #090502 100%);
}

.neon-urban-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201, 168, 76, 0.4) 0%, transparent 60%);
}

.kinetic-3d-text {
  font-family: var(--font-title);
  font-size: 2.2rem;
  letter-spacing: 4px;
  color: #ffffff;
  text-shadow: 0 0 25px var(--gold-primary), 0 0 40px rgba(201, 168, 76, 0.4);
}

/* Scene Background 6 (3D VFX) */
.art-vfx-6 {
  background: linear-gradient(180deg, #09131e 0%, #071929 50%, #04090e 100%);
}

.cyber-orb-center {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-accent) 0%, #3a1c71 70%, transparent 100%);
  box-shadow: 0 0 40px var(--cyan-glow);
  animation: orbPulse 3s infinite alternate ease-in-out;
}

@keyframes orbPulse {
  0% { transform: scale(0.9); }
  100% { transform: scale(1.1); }
}

/* Scene Background 7 (Villa Tour) */
.art-villa-7 {
  background: linear-gradient(180deg, #2b1f13 0%, #1d212c 50%, #080b12 100%);
}

.golden-hour-sun {
  position: absolute;
  top: 15%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb347 0%, #ffcc33 50%, transparent 80%);
  filter: blur(10px);
}

.infinity-pool-reflection {
  position: absolute;
  bottom: 25%;
  width: 80%;
  height: 45px;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.2) 0%, rgba(10, 30, 50, 0.8) 100%);
  border-radius: 4px;
}

/* Scene Background 8 (SaaS Explainer) */
.art-saas-8 {
  background: linear-gradient(180deg, #09111c 0%, #0f1c2d 50%, #050a10 100%);
}

.floating-ui-card {
  width: 130px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
  transform: rotate(-6deg);
}

/* Bottom Metadata Overlay */
.video-card-meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.68) 60%, transparent 100%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-niche-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
}

.video-card-title {
  font-family: var(--font-title);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.15;
}

.video-card-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #D5D5DC;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v-metric {
  display: flex;
  align-items: center;
  gap: 5px;
}

.v-metric i.gold { color: var(--gold-primary); }
.v-metric i.cyan { color: var(--cyan-accent); }

/* Bottom Showcase CTA Banner */
.showcase-bottom-cta {
  margin-top: 4.5rem;
  padding: 2.2rem 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(18, 20, 30, 0.85) 0%, rgba(10, 11, 18, 0.95) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-inner-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-left-text {
  flex: 1;
}

.cta-badge-live {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  display: inline-block;
  margin-bottom: 6px;
}

.cta-heading {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 4px;
}

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

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .video-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

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

  .video-filter-pill-container {
    margin-bottom: 2.5rem;
  }

  .filter-pills-track {
    width: 100%;
    justify-content: flex-start;
    padding: 4px;
  }

  .filter-pill {
    padding: 8px 16px;
    font-size: 12px;
  }

  .video-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .card-video-canvas {
    min-height: 380px;
  }

  .video-card-title {
    font-size: 1.05rem;
  }

  .cta-inner-glass {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .showcase-bottom-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .video-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .card-video-canvas {
    min-height: 440px;
  }
}

/* ------------------------------------------------------------
   11. SECTION 5 — SERVICES (CINEMATIC NLE TRACKS)
   ------------------------------------------------------------ */
.services-section {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}

.section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 1rem;
}

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

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

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-box {
  background: var(--gold-primary);
  color: #000;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 25px var(--gold-soft);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.service-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.service-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #C0C0C8;
}

.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.4s ease;
}

.service-card:hover .service-hover-line {
  width: 100%;
}

/* ------------------------------------------------------------
   12. SECTION 6 — PROCESS (TIMELINE UI)
   ------------------------------------------------------------ */
.process-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
}

.process-timeline-ui {
  position: relative;
  margin-top: 4rem;
}

.process-track-bar {
  position: absolute;
  top: 36px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.process-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), var(--cyan-accent));
  box-shadow: 0 0 10px var(--cyan-glow);
  transition: width 0.8s ease;
}

.process-nodes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.process-node-card {
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease;
}

.node-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #08080c;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  box-shadow: 0 0 15px var(--gold-soft);
  transition: all 0.3s ease;
}

.process-node-card:hover .node-marker {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 25px var(--gold-glow);
}

.node-phase {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.node-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 0.75rem;
}

.node-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.node-meta-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan-accent);
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
}

/* ------------------------------------------------------------
   13. SECTION 7 — FINAL CALL TO ACTION & WHATSAPP
   ------------------------------------------------------------ */
.cta-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 120px 0;
  overflow: hidden;
  background: #000;
}

.cta-canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

#threeCtaCanvas {
  width: 100%;
  height: 100%;
}

.cta-content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.cta-main-headline {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.cta-subheading {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-action-center {
  margin-bottom: 3.5rem;
}

/* WhatsApp Dominant Gold Button */
.btn-whatsapp-dominant {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 18px 38px;
  background: var(--gold-gradient);
  border: 1px solid var(--gold-glow);
  border-radius: 12px;
  color: #000000;
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.2);
  transition: all 0.4s var(--ease-cinematic);
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-whatsapp-dominant:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 60px rgba(201, 168, 76, 0.6), 0 0 80px rgba(201, 168, 76, 0.4);
}

.cta-wa-icon {
  font-size: 36px;
  color: #000;
  flex-shrink: 0;
}

.btn-cta-text {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.cta-primary-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1.15;
}

.cta-secondary-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #332600;
  margin-top: 2px;
}

.cta-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-whatsapp-dominant:hover .cta-arrow {
  transform: translateX(6px);
}

/* Direct Contact Info Card */
.cta-direct-info-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

.info-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.info-val.copyable {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.info-val.copyable:hover {
  color: var(--gold-primary);
}

.copy-icon {
  font-size: 11px;
}

.info-val.highlight {
  color: #00FF88;
}

.info-separator {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: #040406;
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  font-family: var(--font-title);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
  display: block;
  margin: 1rem 0 0.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

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

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-circle:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-glow);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--gold-soft);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

.tc-led {
  color: var(--gold-primary);
}

/* ------------------------------------------------------------
   15. INTERACTIVE VIDEO PLAYER MODAL & COLOR COMPARISON SLIDER
   ------------------------------------------------------------ */
.video-modal-dialog {
  border: none;
  background: transparent;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
}

.video-modal-dialog[open] {
  display: flex;
}

.modal-backdrop-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.modal-window {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1040px;
  background: #0c0d14;
  border: 1px solid var(--glass-border-gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9), 0 0 50px var(--gold-soft);
}

.modal-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.4);
}

.modal-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  display: block;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: #fff;
}

.modal-tools-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-accent);
  padding: 4px 12px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--glass-border-cyan);
  border-radius: 4px;
}

.modal-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #FF2A2A;
  border-color: #FF2A2A;
  transform: rotate(90deg);
}

/* Viewport Area */
.modal-player-viewport {
  background: #000;
  position: relative;
}

.video-display-area {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #050505;
}

.modal-actual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 5;
  background: #000;
  display: none;
}

.modal-actual-video.video-active {
  display: block;
}

.video-display-area.aspect-vertical {
  height: 540px;
  max-width: 320px;
  margin: 0 auto;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
}

/* Before / After Color Comparison */
.color-grade-comparison-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.grade-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.grade-after {
  z-index: 1;
}

.grade-before {
  z-index: 2;
  width: 50%; /* Modified by slider JS */
  border-right: 2px solid var(--gold-primary);
}

.sim-scene-graphic {
  width: 1040px; /* Locked width so content aligns */
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.after-vibe {
  background: linear-gradient(135deg, #100b22 0%, #201335 40%, #0c1824 100%);
}

.cinematic-lighting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.4) 0%, rgba(0, 240, 255, 0.3) 40%, transparent 70%);
  mix-blend-mode: screen;
}

.before-vibe {
  background: #2a2c30; /* Flat washed out look */
  filter: contrast(0.6) brightness(1.2) saturate(0.4);
}

.scene-center-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  text-align: center;
}

.pulsing-showreel-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 30px var(--gold-glow);
}

.pulsing-showreel-icon.flat {
  background: #555;
  box-shadow: none;
}

.scene-title-art {
  font-family: var(--font-title);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #fff;
}

.scene-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-accent);
  letter-spacing: 1.5px;
}

.grade-label {
  position: absolute;
  top: 16px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 4;
}

.after-tag {
  right: 16px;
  background: rgba(201, 168, 76, 0.85);
  color: #000;
}

.before-tag {
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hud-timecode {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-primary);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 4;
}

/* Splitter Handle */
.grade-splitter-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 0;
  z-index: 10;
  pointer-events: none;
}

.handle-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 0 15px var(--gold-glow);
}

/* Transport Controls */
.modal-transport-bar {
  background: #08080c;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.transport-scrub-row {
  margin-bottom: 0.5rem;
}

.modal-scrub-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.modal-scrub-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  cursor: pointer;
}

.transport-buttons-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transport-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.transport-btn {
  color: #fff;
  font-size: 14px;
  padding: 6px;
  transition: color 0.2s ease;
}

.transport-btn:hover {
  color: var(--gold-primary);
}

.transport-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.grade-toggle-instruction {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
}

.transport-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.speed-toggle-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.speed-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  padding: 4px 8px;
}

.speed-btn.active {
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
}

.aspect-toggle-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-accent);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--glass-border-cyan);
  padding: 4px 10px;
  border-radius: 4px;
}

.modal-bottom-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid var(--glass-border);
}

.modal-summary-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 60%;
}

.modal-cta-btn {
  padding: 10px 20px;
  font-size: 12px;
}

/* ------------------------------------------------------------
   16. STICKY FLOATING WHATSAPP BUTTON (MOBILE & DESKTOP)
   ------------------------------------------------------------ */
.sticky-whatsapp-badge {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9991;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wa-icon-glow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 35px rgba(37, 211, 102, 0.25);
  transition: all 0.3s var(--ease-bounce);
  animation: waPulse 3s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 rgba(37, 211, 102, 0); }
  50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6), 0 0 25px rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-float-btn:hover .wa-icon-glow {
  transform: scale(1.12);
}

.wa-hover-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-gold);
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.wa-float-btn:hover .wa-hover-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-tooltip-name {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
}

.wa-tooltip-msg {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #00FF88;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-msg {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-soft);
  animation: toastFadeIn 0.3s ease, toastFadeOut 0.3s ease 2.7s forwards;
}

@keyframes toastFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-12px); }
}

/* ------------------------------------------------------------
   17. COMPREHENSIVE RESPONSIVE MEDIA QUERIES & MOBILE OPTIMIZATIONS
   ------------------------------------------------------------ */

/* Touch & Cursor Adaptations */
@media (hover: none) and (pointer: coarse), (max-width: 991px) {
  .custom-cursor {
    display: none !important;
  }

  body, a, button, input, select, textarea {
    cursor: auto !important;
  }
}

/* Tablet & Smaller Desktops (<= 1024px) */
@media (max-width: 1024px) {
  .interview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .interview-visual-col {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

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

  .process-nodes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-track-bar {
    display: none;
  }
}

/* Mobile & Small Tablets (<= 991px) */
@media (max-width: 991px) {
  /* Section 4: Signature Reel Mobile Touch Swipe Carousel */
  .showcase-section {
    padding: 70px 0 90px;
    height: auto;
  }

  .horizontal-scroll-container {
    height: auto;
    min-height: unset;
    overflow: visible;
  }

  .showcase-timeline-header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .timeline-ruler-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 1.25rem;
  }

  .timecode-ticks {
    display: none;
  }

  .horizontal-track {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1.25rem 2rem;
    gap: 1.25rem;
    scrollbar-width: none;
  }

  .horizontal-track::-webkit-scrollbar {
    display: none;
  }

  .intro-card {
    min-width: 82vw;
    max-width: 360px;
    width: 82vw;
    scroll-snap-align: start;
    padding: 2.25rem 1.75rem;
    flex-shrink: 0;
  }

  .project-card {
    min-width: 82vw;
    max-width: 360px;
    width: 82vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .card-media-wrapper {
    height: 230px;
  }
}

/* Smartphones (<= 768px) */
@media (max-width: 768px) {
  /* Global Container */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hide-mobile {
    display: none !important;
  }

  /* Header */
  .site-header {
    padding: 12px 0;
  }

  .main-nav {
    display: none;
  }

  .brand-logo .logo-role {
    display: none;
  }

  .sound-toggle-btn {
    padding: 8px 10px;
  }

  .sound-toggle-btn .sound-label {
    display: none;
  }

  .btn-header {
    padding: 8px 14px;
    font-size: 10px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile Drawer Menu */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-surface);
    backdrop-filter: blur(24px);
    z-index: 9999;
    padding: 85px 1.5rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease-cinematic), background-color 0.4s ease;
  }

  [data-theme="light"] .mobile-drawer {
    background: rgba(247, 248, 250, 0.98);
  }

  .mobile-drawer.drawer-open {
    transform: translateY(0);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mobile-link {
    font-family: var(--font-title);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text-white);
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
  }

  .mobile-link:active,
  .mobile-link:hover {
    color: var(--gold-primary);
    transform: translateX(6px);
  }

  .mobile-link span {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--gold-primary);
    margin-right: 10px;
  }

  /* Mobile Drawer Theme Controls */
  .mobile-drawer-controls {
    padding: 1.25rem 0 0.75rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 1.5rem;
  }

  .theme-toggle-btn-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .theme-toggle-btn-mobile:hover,
  .theme-toggle-btn-mobile:active {
    border-color: var(--gold-primary);
  }

  .mobile-theme-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-theme-icon {
    color: var(--gold-primary);
    font-size: 16px;
  }

  .mobile-theme-text strong {
    color: var(--gold-primary);
  }

  .theme-switch-pill {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    position: relative;
    transition: background 0.3s ease;
    padding: 2px;
    display: flex;
    align-items: center;
  }

  [data-theme="light"] .theme-switch-pill {
    background: var(--gold-primary);
  }

  .theme-switch-thumb {
    display: block;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s var(--ease-bounce);
    transform: translateX(0);
  }

  [data-theme="light"] .theme-switch-thumb {
    transform: translateX(20px);
  }

  /* Mobile Drawer Footer CTA */
  .mobile-drawer-footer {
    padding-top: 0.75rem;
    width: 100%;
  }

  .mobile-drawer-footer .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  /* Section 2: Hero Section */
  .hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(2.6rem, 11.5vw, 4.4rem);
    letter-spacing: 1.5px;
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }

  .hero-subtext-container {
    margin-bottom: 2.25rem;
  }

  .hero-subheadline {
    font-size: 1.05rem;
  }

  .tools-row-pills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .tool-pill {
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 13px;
  }

  /* Section 3: The Interview */
  .interview-section {
    padding: 70px 0;
  }

  .interview-visual-col {
    height: 280px;
  }

  .interview-quote-block {
    font-size: 1.35rem;
    line-height: 1.45;
  }

  .interview-paragraph {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
  }

  .interview-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.25rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Section 5: Services */
  .services-section {
    padding: 70px 0;
  }

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

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  /* Section 6: Workflow */
  .process-section {
    padding: 70px 0;
  }

  .process-nodes-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-node-card {
    padding: 1.75rem 1.5rem;
  }

  /* Section 7: Final CTA */
  .cta-section {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .cta-main-headline {
    font-size: clamp(2.2rem, 9.5vw, 3.8rem);
    letter-spacing: 1.5px;
  }

  .cta-subheading {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }

  .btn-whatsapp-dominant {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 12px;
  }

  .cta-wa-icon {
    font-size: 30px;
    flex-shrink: 0;
  }

  .btn-cta-text {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .cta-primary-title {
    font-size: clamp(0.95rem, 4.2vw, 1.15rem);
    letter-spacing: 1px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .cta-secondary-sub {
    font-size: clamp(9px, 2.7vw, 11px);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cta-arrow {
    font-size: 18px;
    flex-shrink: 0;
  }

  .cta-direct-info-card {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .info-separator {
    display: none;
  }

  /* Footer */
  .site-footer {
    padding: 60px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Video Modal Responsive */
  .modal-window {
    width: 95%;
    max-height: 92vh;
    overflow-y: auto;
    padding-bottom: 1rem;
  }

  .modal-header-bar {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 8px;
  }

  .modal-tools-badge {
    display: none;
  }

  .video-display-area {
    height: 250px;
  }

  .video-display-area.aspect-vertical {
    height: 380px;
    max-width: 240px;
  }

  .modal-transport-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
  }

  .transport-left {
    gap: 8px;
  }

  .transport-right {
    gap: 8px;
  }

  .grade-toggle-instruction {
    display: none;
  }

  .modal-bottom-details {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
  }

  .modal-summary-text {
    max-width: 100%;
    font-size: 0.85rem;
  }

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

/* Extra Small Screens (<= 480px) */
@media (max-width: 480px) {
  .header-actions {
    gap: 6px;
  }

  .theme-toggle-btn {
    padding: 8px 10px;
  }

  .theme-toggle-btn .theme-label {
    display: none;
  }

  .sound-toggle-btn {
    padding: 8px 8px;
  }

  .btn-header {
    padding: 8px 10px;
  }

  .btn-header span {
    display: none;
  }

  .btn-header .whatsapp-icon {
    font-size: 14px;
    margin: 0;
  }

  .intro-card {
    min-width: 88vw;
    width: 88vw;
  }

  .project-card {
    min-width: 88vw;
    width: 88vw;
  }

  .card-media-wrapper {
    height: 200px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  /* Section 7: Final CTA on Mobile */
  .btn-whatsapp-dominant {
    padding: 14px 16px;
    gap: 10px;
  }

  .cta-wa-icon {
    font-size: 26px;
  }

  .cta-primary-title {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .cta-secondary-sub {
    font-size: 9.5px;
  }

  .cta-arrow {
    font-size: 15px;
  }

  .sticky-whatsapp-badge {
    bottom: 18px;
    right: 18px;
  }

  .wa-icon-glow {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .loader-brand-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .loader-tools-ticker {
    font-size: 9px;
  }
}

/* Ultra Small Screens (<= 360px) */
@media (max-width: 360px) {
  .btn-whatsapp-dominant {
    padding: 12px 12px;
    gap: 8px;
  }

  .cta-wa-icon {
    font-size: 22px;
  }

  .cta-primary-title {
    font-size: 0.88rem;
  }

  .cta-secondary-sub {
    display: none;
  }

  .cta-arrow {
    display: none;
  }
}

/* ============================================================
   17. CINEMATIC STUDIO LIGHT MODE THEME OVERRIDES
   ============================================================ */

/* Global Transition on Theme Switch */
body, .site-header, .timeline-progress-bar, .glass-panel,
.project-card, .service-card, .stat-card, .process-node-card,
.cta-box, .cta-direct-info-card, .site-footer, .modal-window,
.modal-header-bar, .modal-transport-bar, .theme-toggle-btn,
.sound-toggle-btn, .btn-secondary, .social-circle {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

[data-theme="light"] {
  color-scheme: light;
}

/* Base & Utility Elements */
[data-theme="light"] .outline-text {
  -webkit-text-stroke: 1.5px rgba(17, 19, 25, 0.35);
  color: transparent;
}

[data-theme="light"] .outline-text:hover {
  -webkit-text-stroke: 1.5px var(--gold-primary);
  color: rgba(158, 119, 14, 0.15);
}

[data-theme="light"] .section-tag {
  background: rgba(158, 119, 14, 0.08);
  border-color: rgba(158, 119, 14, 0.28);
  color: var(--gold-primary);
}

[data-theme="light"] .glass-panel {
  background: var(--bg-card);
  border-color: var(--glass-border);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .glass-panel:hover {
  border-color: var(--glass-border-gold);
  box-shadow: var(--card-shadow-hover);
}

/* Custom Cursor in Light Mode */
[data-theme="light"] .cursor-ring {
  border-color: rgba(158, 119, 14, 0.7);
}

[data-theme="light"] .cursor-label {
  color: #FFFFFF;
}

[data-theme="light"] .cursor-icon {
  color: #FFFFFF;
}

/* Buttons in Light Mode */
[data-theme="light"] .btn-secondary {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111319;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .btn-secondary:hover {
  border-color: var(--cyan-accent);
  background: rgba(0, 119, 153, 0.06);
  color: var(--cyan-accent);
  box-shadow: 0 6px 20px rgba(0, 119, 153, 0.15);
}

[data-theme="light"] .btn-header {
  background: rgba(0, 119, 153, 0.08);
  border-color: rgba(0, 119, 153, 0.3);
  color: #111319;
}

[data-theme="light"] .btn-header:hover {
  background: var(--cyan-accent);
  color: #FFFFFF;
  box-shadow: 0 0 20px var(--cyan-glow);
}

[data-theme="light"] .btn-header:hover .whatsapp-icon {
  color: #FFFFFF;
}

[data-theme="light"] .skip-loader-btn {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.15);
  color: #111319;
}

/* Hero Section */
[data-theme="light"] .hero-badge-pill {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.09);
  color: #2D3139;
}

[data-theme="light"] .hero-badge-pill .gold-dot {
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-glow);
}

[data-theme="light"] .meta-chip {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #2D3139;
}

[data-theme="light"] .hero-scroll-cue {
  color: var(--text-dim);
}

[data-theme="light"] .cue-line {
  background: linear-gradient(180deg, var(--gold-primary), transparent);
}

/* Interview & Bento Section */
[data-theme="light"] .editor-silhouette-art {
  background: linear-gradient(145deg, #EEF2F9 0%, #DFE6F3 100%);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .orb-glow-core {
  background: radial-gradient(circle, rgba(158, 119, 14, 0.16) 0%, rgba(0, 119, 153, 0.08) 50%, transparent 70%);
}

[data-theme="light"] .audio-wave-bar {
  background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .hud-glass-badge {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .badge-label {
  color: var(--text-dim);
}

[data-theme="light"] .badge-val {
  color: #111319;
}

[data-theme="light"] .stat-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .stat-card:hover {
  border-color: var(--glass-border-gold);
  box-shadow: var(--card-shadow-hover);
}

[data-theme="light"] .stat-number {
  color: #111319;
}

[data-theme="light"] .stat-label {
  color: var(--text-muted);
}

[data-theme="light"] .stat-sub {
  color: var(--text-dim);
}

/* Showcase Section & Vertical Video Grid */
[data-theme="light"] .showcase-section {
  background: #F0F3F8;
}

[data-theme="light"] .filter-pills-track {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .filter-pill {
  color: #555c68;
}

[data-theme="light"] .filter-pill:hover {
  color: #111319;
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .filter-pill.active {
  background: #FFFFFF;
  color: var(--gold-primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12), inset 0 0 0 1.5px var(--gold-primary);
}

[data-theme="light"] .filter-pill .pill-count {
  background: rgba(0, 0, 0, 0.07);
  color: #333;
}

[data-theme="light"] .filter-pill.active .pill-count {
  background: var(--gold-primary);
  color: #FFFFFF;
}

[data-theme="light"] .vertical-video-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .vertical-video-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14), 0 0 25px rgba(158, 119, 14, 0.2);
}

[data-theme="light"] .card-video-canvas {
  background: #080a10;
}

[data-theme="light"] .showcase-bottom-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.98) 100%);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .cta-heading {
  color: #111319;
}

[data-theme="light"] .card-stat-pill {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #111319;
}

[data-theme="light"] .card-stat-pill span {
  color: var(--text-dim);
}

/* Services Section */
[data-theme="light"] .services-section {
  background: #F7F8FA;
}

[data-theme="light"] .service-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .service-card:hover {
  border-color: var(--glass-border-gold);
  box-shadow: var(--card-shadow-hover);
}

[data-theme="light"] .service-icon-box {
  background: rgba(158, 119, 14, 0.08);
  border-color: rgba(158, 119, 14, 0.22);
  color: var(--gold-primary);
}

[data-theme="light"] .service-title {
  color: #111319;
}

[data-theme="light"] .service-desc {
  color: var(--text-muted);
}

[data-theme="light"] .service-features li {
  color: #2D3139;
}

[data-theme="light"] .service-tag {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.07);
  color: var(--text-dim);
}

/* Process & Workflow Section */
[data-theme="light"] .process-section {
  background: #F0F2F6;
}

[data-theme="light"] .process-timeline-bar {
  background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .node-marker {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text-muted);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .node-marker.active-node {
  background: var(--gold-primary);
  border-color: var(--gold-glow);
  color: #FFFFFF;
  box-shadow: 0 0 15px var(--gold-soft);
}

[data-theme="light"] .process-node-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .process-node-card:hover {
  border-color: var(--glass-border-gold);
  box-shadow: var(--card-shadow-hover);
}

[data-theme="light"] .node-num {
  color: var(--gold-primary);
}

[data-theme="light"] .node-title {
  color: #111319;
}

[data-theme="light"] .node-desc {
  color: var(--text-muted);
}

[data-theme="light"] .node-deliverable {
  background: rgba(158, 119, 14, 0.06);
  border-color: rgba(158, 119, 14, 0.2);
  color: #2D3139;
}

/* Call to Action Section */
[data-theme="light"] .cta-section {
  background: linear-gradient(180deg, #F0F2F6 0%, #E3E9F3 100%);
}

[data-theme="light"] .cta-box {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .cta-direct-info-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .direct-card-title {
  color: #111319;
  border-bottom-color: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .info-label {
  color: var(--text-dim);
}

[data-theme="light"] .info-value {
  color: #111319;
}

[data-theme="light"] .info-value a {
  color: #111319;
}

[data-theme="light"] .info-value a:hover {
  color: var(--gold-primary);
}

[data-theme="light"] .btn-whatsapp-dominant {
  box-shadow: 0 10px 30px rgba(158, 119, 14, 0.35);
}

/* Footer */
[data-theme="light"] .site-footer {
  background: #EAEEF5;
  border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-name {
  color: #111319;
}

[data-theme="light"] .social-circle {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  color: #111319;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .social-circle:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #FFFFFF;
  box-shadow: 0 0 15px var(--gold-soft);
}

[data-theme="light"] .footer-nav a {
  color: var(--text-muted);
}

[data-theme="light"] .footer-nav a:hover {
  color: var(--gold-primary);
}

[data-theme="light"] .back-to-top-btn {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  color: #111319;
}

[data-theme="light"] .back-to-top-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Interactive Video Modal Dialog */
[data-theme="light"] .video-modal-dialog::backdrop {
  background: rgba(15, 20, 30, 0.68);
  backdrop-filter: blur(12px);
}

[data-theme="light"] .modal-window {
  background: #FFFFFF;
  border-color: var(--glass-border-gold);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .modal-header-bar {
  background: #F4F6FB;
  border-bottom-color: rgba(0, 0, 0, 0.07);
  color: #111319;
}

[data-theme="light"] .modal-title {
  color: #111319;
}

[data-theme="light"] .modal-tools-badge {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--text-dim);
}

[data-theme="light"] .modal-close-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
  color: #111319;
}

[data-theme="light"] .modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

[data-theme="light"] .modal-transport-bar {
  background: #F8FAFD;
  border-top-color: rgba(0, 0, 0, 0.07);
  color: #111319;
}

[data-theme="light"] .transport-btn {
  color: #111319;
}

[data-theme="light"] .transport-btn:hover {
  color: var(--gold-primary);
}

[data-theme="light"] .modal-timecode {
  color: #111319;
}

[data-theme="light"] .modal-bottom-details {
  background: #FFFFFF;
  border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .modal-summary-text {
  color: var(--text-muted);
}

