/* =========================================================
   NetSynq Studio — Sleek Cinematic Master Styles
   Compact Typography, Custom Dark Scrollbar & Premium Layout
   ========================================================= */
:root {
  --bg-dark: #07090e;
  --bg-surface: #0e131f;
  --bg-card: #131929;
  --bg-card-hover: #192238;
  --bg-glass: rgba(14, 19, 31, 0.85);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.4);
  
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-rose: #f43f5e;
  --accent-amber: #f59e0b;
  --accent-emerald: #10b981;
  
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --wrap-width: 1160px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Global Custom Dark Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #07090e;
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.35);
  border-radius: 4px;
  border: 2px solid #07090e;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.35) #07090e;
}

/* =========================================================
   WebGL GlowCursor Luminous Trailing Beam (Canvas Shader)
   ========================================================= */
.glow-cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: screen;
  user-select: none;
}

body.studio-body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 12% 15%, rgba(139, 92, 246, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 88% 45%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(244, 63, 94, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-glow-gradient {
  background: linear-gradient(135deg, #c084fc 0%, #f43f5e 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(192, 132, 252, 0.25);
}

.text-purple { color: var(--accent-purple) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.text-amber { color: var(--accent-amber) !important; }
.text-rose { color: var(--accent-rose) !important; }

/* Top Floating NetSynq Preview Header Banner */
.netsynq-preview-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  padding: 7px 16px;
  color: #ffffff;
}

.banner-container {
  max-width: var(--wrap-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.banner-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.preview-name {
  font-size: 0.80rem;
  color: #cbd5e1;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-preview-back {
  font-size: 0.76rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-preview-back:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-preview-cta {
  font-size: 0.76rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-preview-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.55);
}

/* Studio Header Navigation */
.site-header {
  position: sticky;
  top: 41px;
  z-index: 900;
  background: rgba(7, 9, 14, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-monogram {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8b5cf6 0%, #f43f5e 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.15;
}

.brand-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--accent-purple);
  margin-top: 1px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: linear-gradient(135deg, #8b5cf6, #6366f1) !important;
  color: #ffffff !important;
  padding: 6px 16px !important;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  margin-left: 6px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 55px;
}

.hero-tag-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f43f5e;
  box-shadow: 0 0 8px #f43f5e;
  animation: pulse-rec 1.8s infinite;
}

@keyframes pulse-rec {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

.rec-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #fb7185;
  letter-spacing: 0.04em;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  max-width: 860px;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.hero-subtext {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* 4K Hero Video Box Canvas */
.hero-video-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.15);
  margin-bottom: 32px;
  background: #000000;
}

.hero-video-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68) contrast(1.1);
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.hero-video-box:hover .hero-video-bg-img {
  transform: scale(1.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(7, 9, 14, 0.4) 0%, rgba(7, 9, 14, 0.85) 100%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.25) 0%, rgba(7, 9, 14, 0.65) 75%);
}

.video-ambient-glow {
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(244, 63, 94, 0.15) 50%, rgba(6, 182, 212, 0.15) 100%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.video-preview-surface {
  position: relative;
  z-index: 2;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
}

.video-top-telemetry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.70rem;
  color: #94a3b8;
  gap: 8px;
}

.telemetry-tag {
  background: rgba(7, 9, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  color: #cbd5e1;
}

.video-center-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
  position: relative;
  text-align: center;
}

.pulse-play-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.7);
  animation: play-ring-pulse 2.2s infinite;
}

@keyframes play-ring-pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.play-btn-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  color: #ffffff;
  border: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.8);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  margin-bottom: 12px;
}

.video-center-cta:hover .play-btn-circle {
  transform: scale(1.12);
  box-shadow: 0 0 40px rgba(139, 92, 246, 1);
}

.play-btn-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.play-sub-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #cbd5e1;
  margin-top: 3px;
}

.video-chrome-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 19, 31, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  gap: 14px;
  flex-wrap: wrap;
}

.chrome-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-resolution {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(6, 182, 212, 0.18);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.35);
  padding: 2px 7px;
  border-radius: 4px;
}

.video-now-playing {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #f1f5f9;
}

.chrome-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.waveform-anim {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 16px;
}

.waveform-anim i {
  width: 2px;
  background: var(--accent-purple);
  border-radius: 2px;
  animation: wave-bar 1.2s infinite ease-in-out alternate;
}
.waveform-anim i:nth-child(1) { height: 5px; animation-delay: 0.1s; }
.waveform-anim i:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.waveform-anim i:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.waveform-anim i:nth-child(4) { height: 8px; animation-delay: 0.4s; }
.waveform-anim i:nth-child(5) { height: 14px; animation-delay: 0.1s; }
.waveform-anim i:nth-child(6) { height: 10px; animation-delay: 0.5s; }
.waveform-anim i:nth-child(7) { height: 16px; animation-delay: 0.3s; }
.waveform-anim i:nth-child(8) { height: 9px; animation-delay: 0.2s; }
.waveform-anim i:nth-child(9) { height: 5px; animation-delay: 0.4s; }

@keyframes wave-bar {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.time-counter {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-dim);
}

/* Quick Metrics Row */
.creator-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--border-color);
}

.c-stat-cell {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.c-stat-cell:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.c-stat-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 3px;
}

.c-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Section Shared */
.section {
  padding: 65px 0;
}

.section-dark-alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-purple);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.55;
}

.text-center-wrap {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 40px;
}

/* =========================================================
   Cinematic Color Grading Master Suite & Live LUT Switcher
   ========================================================= */
.color-split-container {
  background: var(--bg-card);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(139, 92, 246, 0.15);
  margin-top: 30px;
}

.color-split-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.lut-preset-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-lut-preset {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.70rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-lut-preset:hover {
  color: #ffffff;
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.15);
}

.btn-lut-preset.active {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.55);
}

.aspect-ratio-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-aspect-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-aspect-toggle:hover {
  color: #ffffff;
}

.btn-aspect-toggle.active {
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
  border-color: rgba(6, 182, 212, 0.4);
}

.color-stage-viewport {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #030508;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-img-frame {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  transition: width 0.4s ease, height 0.4s ease, max-height 0.4s ease;
}

.stage-img-frame.ratio-anamorphic {
  width: 100%;
  height: 340px;
}

.stage-img-frame.ratio-cinema {
  width: 100%;
  height: 420px;
}

.stage-img-frame.ratio-vertical {
  width: 250px;
  height: 440px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.stage-master-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.6s ease;
}

/* 5 Live Cinematic LUT Filter Matrix */
.lut-filter-raw {
  filter: contrast(0.65) brightness(1.1) saturate(0.2);
}

.lut-filter-rec709 {
  filter: contrast(1.05) brightness(1.0) saturate(1.1);
}

.lut-filter-kodak {
  filter: contrast(1.22) brightness(1.02) saturate(1.25) sepia(0.14) hue-rotate(-8deg);
}

.lut-filter-cyberpunk {
  filter: contrast(1.35) brightness(1.08) saturate(1.75) hue-rotate(35deg);
}

.lut-filter-noir {
  filter: grayscale(1) contrast(1.45) brightness(0.92);
}

.lut-filter-bleach {
  filter: contrast(1.45) saturate(0.45) brightness(1.1);
}

.stage-telemetry-overlay {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 5;
  pointer-events: none;
}

.stage-tag-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(7, 9, 14, 0.85);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stage-pipeline-strip {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #22d3ee;
  background: rgba(7, 9, 14, 0.85);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Portfolio Masonry */
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.media-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-purple);
  color: #ffffff;
  border-color: var(--accent-purple);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(139, 92, 246, 0.3);
}

.media-thumb-wrap {
  height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  overflow: hidden;
}

.card-tall .media-thumb-wrap {
  height: 320px;
}

.media-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-card-img {
  transform: scale(1.06);
}

.media-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.3) 0%, rgba(7, 9, 14, 0.8) 100%);
  pointer-events: none;
}

.media-badge-tag {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.media-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  z-index: 3;
  transition: opacity 0.25s ease;
}

.media-card:hover .media-hover-overlay {
  opacity: 1;
}

.hover-play-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.65);
}

.hover-client {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-cyan);
  font-weight: 700;
  display: block;
}

.hover-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 4px;
  line-height: 1.22;
}

.hover-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Capabilities (Four Pillars) with Vivid Image Hover Reveal */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.cap-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 285px;
  cursor: pointer;
  text-decoration: none;
}

.cap-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cap-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transform: scale(1.0);
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
  filter: brightness(0.7) contrast(1.15) saturate(0.9);
}

.cap-card:hover .cap-bg-img {
  opacity: 0.68;
  transform: scale(1.08);
  filter: brightness(0.95) contrast(1.2) saturate(1.15);
}

.cap-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.65) 0%, rgba(7, 9, 14, 0.92) 65%, rgba(7, 9, 14, 0.98) 100%);
  pointer-events: none;
  transition: background 0.4s ease;
}

.cap-card:hover .cap-gradient-overlay {
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.25) 0%, rgba(7, 9, 14, 0.82) 55%, rgba(7, 9, 14, 0.96) 100%);
}

.cap-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 14px;
}

.cap-card:hover {
  border-color: rgba(139, 92, 246, 0.75);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), 0 0 28px rgba(139, 92, 246, 0.35);
}

.cap-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cap-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: #c084fc;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cap-card:hover .cap-icon-box {
  background: var(--accent-purple);
  border-color: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.65);
  transform: scale(1.06);
}

.cap-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.cap-card:hover .cap-num {
  color: var(--accent-cyan);
}

.cap-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cap-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.cap-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.cap-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cap-card:hover .cap-tag {
  color: #f1f5f9;
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.35);
}

.cap-hover-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.cap-card:hover .cap-hover-footer {
  opacity: 1;
  border-color: rgba(139, 92, 246, 0.35);
}

.cap-hover-text {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cap-hover-arrow {
  font-size: 1rem;
  color: #c084fc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cap-card:hover .cap-hover-arrow {
  transform: translate(2px, -2px) scale(1.1);
  color: #22d3ee;
}

/* =========================================================
   Production Gear & Studio Arsenal Matrix
   ========================================================= */
.gear-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.gear-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.gear-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.65);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 24px rgba(139, 92, 246, 0.25);
}

.gear-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.gear-cat-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gear-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.gear-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.gear-spec {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* Clients Showcase & Infinite Marquee */
.clients-showcase-section {
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.marquee-track-left {
  animation: marquee-scroll-left 36s linear infinite;
}

.marquee-track-right {
  animation: marquee-scroll-right 36s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.brand-badge-card {
  background: rgba(19, 25, 41, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
  user-select: none;
}

.brand-badge-card:hover {
  border-color: rgba(139, 92, 246, 0.65);
  transform: translateY(-3px);
  background: rgba(25, 34, 56, 0.95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.65), 0 0 18px rgba(139, 92, 246, 0.3);
}

.brand-badge-logo {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand specific accents */
.brand-netflix i { color: #e50914; }
.brand-nike i { color: #ffffff; }
.brand-porsche i { color: #f59e0b; }
.brand-sony i { color: #a855f7; }
.brand-vogue i { color: #ec4899; }
.brand-apple i { color: #f8fafc; }
.brand-redbull i { color: #ef4444; }
.brand-spotify i { color: #10b981; }
.brand-warner i { color: #3b82f6; }
.brand-hasselblad i { color: #06b6d4; }
.brand-universal i { color: #f97316; }
.brand-leica i { color: #ef4444; }

/* Spotlight Bento Grid */
.client-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.spotlight-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(139, 92, 246, 0.25);
}

.spotlight-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.spotlight-client-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.spotlight-brand-pill {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spotlight-type-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 2px 7px;
  border-radius: 4px;
}

.spotlight-metric {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.spotlight-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.spotlight-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.s-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Trust Recognition Bar */
.trust-recognition-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  padding: 14px 24px;
  background: rgba(14, 19, 31, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
}

.trust-badge {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-rose { color: #f43f5e; }
.text-amber { color: #f59e0b; }
.text-cyan { color: #06b6d4; }
.text-purple { color: #8b5cf6; }

/* =========================================================
   About Director & Creative Profile Layout
   ========================================================= */
.about-flex-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 52px;
  align-items: center;
}

.director-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 30px rgba(139, 92, 246, 0.18);
  height: 480px;
  max-width: 100%;
  background: #000000;
}

.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.6s ease;
}

.director-portrait-frame:hover .director-img {
  transform: scale(1.04);
}

.portrait-corner-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.badge-accent {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.director-bio-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.bio-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn-primary-action {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.7);
}

.btn-outline-action {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.btn-outline-action:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   Booking & Production Inquiry Section
   ========================================================= */
.inquiry-card-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(139, 92, 246, 0.12);
  align-items: center;
}

.inquiry-content-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.direct-contact-block {
  margin-top: 14px;
  padding: 18px 20px;
  background: rgba(7, 9, 14, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--accent-purple);
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: #c084fc;
  text-decoration: underline;
}

.contact-location {
  font-size: 0.80rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.studio-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: #07090e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--accent-purple);
  background: #0b0f19;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.35);
}

.form-input::placeholder {
  color: #475569;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23a855f7' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
  cursor: pointer;
}

select.form-input option {
  background: #0d121f;
  color: #ffffff;
  padding: 10px;
}

textarea.form-input {
  resize: vertical;
  min-height: 95px;
}

.btn-submit-inquiry {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: #ffffff;
  border: none;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 4px;
}

.btn-submit-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.7);
}

.btn-submit-inquiry i {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.btn-submit-inquiry:hover i {
  transform: translateX(4px);
}

/* =========================================================
   Studio Footer
   ========================================================= */
.site-footer {
  background: #05070a;
  border-top: 1px solid var(--border-color);
  padding: 48px 0 28px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.footer-brand-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.footer-social-links a:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

.powered-by-net a {
  color: var(--accent-purple);
  transition: color 0.2s ease;
}

.powered-by-net a:hover {
  color: #c084fc;
}

/* =========================================================
   Responsive Breakpoints
   ========================================================= */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gear-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-flex-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .director-portrait-frame {
    max-width: 440px;
    height: 420px;
    margin: 0 auto;
  }
  .inquiry-card-wrap {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 1.8rem;
  }
  .video-preview-surface {
    height: 340px;
    padding: 16px;
  }
  .creator-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .gear-matrix-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .director-portrait-frame {
    height: 360px;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 9, 14, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    backdrop-filter: blur(16px);
  }
  .primary-nav.open {
    display: block;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 6px;
  }
  .nav-toggle {
    display: block;
    font-size: 1.4rem;
  }
  .hide-mobile {
    display: none;
  }
}

/* =========================================================
   Media & Showreel Preview Modal Dialog
   ========================================================= */
.media-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.media-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.media-modal-dialog {
  width: 100%;
  max-width: 960px;
  max-height: 88vh;
  background: #0d121f;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(139, 92, 246, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-modal-backdrop.active .media-modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(14, 19, 31, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-meta-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: #f43f5e;
  color: #ffffff;
}

.modal-screen-container {
  position: relative;
  width: 100%;
  height: 440px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.modal-video-play-center {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 35px rgba(217, 70, 239, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal-video-play-center:hover {
  transform: scale(1.1);
}

.modal-bottom-details {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(14, 19, 31, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  flex-wrap: wrap;
}

.modal-detail-tag {
  color: #94a3b8;
  display: flex;
  align-items: center;
}