/* ==========================================================================
   AGENT ILLUSION // VFX & ORIGINAL PRODUCTIONS
   Design System & Cinematic Stylesheet
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-core: #07090e;
  --bg-surface: #0e131d;
  --bg-surface-elevated: #151d2c;
  --bg-surface-hover: #1c263a;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-cyan: #00f0ff;
  --accent-cyan-glow: rgba(0, 240, 255, 0.4);
  --accent-amber: #ffaa00;
  --accent-magenta: #ff3366;
  --accent-magenta-glow: rgba(255, 51, 102, 0.4);
  --accent-emerald: #10b981;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(0, 240, 255, 0.4);
  --border-glass: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-display: 'Syne', -apple-system, sans-serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s var(--ease-cinematic);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-core);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.25;
}

.glow-top {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
}

.glow-middle {
  width: 700px;
  height: 700px;
  top: 40%;
  right: -200px;
  background: radial-gradient(circle, var(--accent-magenta), transparent 70%);
}

.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* Badges & Section Headers */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-active);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #ffffff 50%, #ff3366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background: var(--accent-cyan);
  color: #050811;
  box-shadow: 0 0 25px var(--accent-cyan-glow);
}

.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-glow {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(255, 51, 102, 0.15));
  border: 1px solid var(--border-active);
  color: var(--text-primary);
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 6px;
}

.btn-glow:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(7, 9, 14, 0.95);
  border-bottom-color: rgba(0, 240, 255, 0.2);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-symbol {
  width: 36px;
  height: 36px;
}

.brand-text .title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #ffffff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text .subtitle {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.18em;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.laser-grid {
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.anamorphic-flare {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.6) 30%, #ffffff 50%, rgba(255, 51, 102, 0.6) 70%, transparent 100%);
  filter: blur(2px);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 24px;
  background: rgba(14, 19, 29, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-separator {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ==========================================================================
   SHOWREEL COMPONENT
   ========================================================================== */
.showreel-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-surface);
  cursor: pointer;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.05);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.showreel-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.video-preview-layer {
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-backdrop-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #07101d 0%, #15091d 100%);
  overflow: hidden;
}

.cyber-city-grid {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.2) 0%, transparent 60%),
    linear-gradient(to right, rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.hud-elements {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  opacity: 0.85;
}

.hud-corner {
  position: absolute;
}
.hud-corner.top-left { top: 0; left: 0; }
.hud-corner.top-right { top: 0; right: 0; }
.hud-corner.bottom-left { bottom: 0; left: 0; }
.hud-corner.bottom-right { bottom: 0; right: 0; }

.hud-center-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border: 1px dashed rgba(0, 240, 255, 0.3);
  border-radius: 50%;
}

.play-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.play-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.2);
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.showreel-card:hover .play-circle {
  transform: scale(1.1);
  background: var(--accent-cyan);
}

.showreel-card:hover .play-circle svg {
  fill: #050811;
}

.play-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.play-text p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   VFX BREAKDOWN / INTERACTIVE SLIDER
   ========================================================================== */
.shot-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.shot-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.shot-tab span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.shot-tab.active, .shot-tab:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-cyan);
  color: var(--text-primary);
}

.shot-tab.active span {
  background: var(--accent-cyan);
  color: #050811;
}

.slider-comparison-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 650px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  user-select: none;
  touch-action: pan-y;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.comp-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.comp-before {
  z-index: 1;
}

.comp-after {
  z-index: 2;
  width: 50%; /* controlled dynamically by JS */
  border-right: 2px solid var(--accent-cyan);
}

.comp-visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.comp-after .comp-visual {
  width: 100%; /* Will stay scaled relative to full slider box */
  min-width: 100%;
}

.svg-comp-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plate-badge {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.06em;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.before-badge {
  right: 20px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #94a3b8;
}

.after-badge {
  left: 20px;
  background: rgba(0, 240, 255, 0.2);
  border: 1px solid var(--accent-cyan);
  color: #ffffff;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: ew-resize;
}

.handle-line {
  flex: 1;
  width: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.handle-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-cyan-glow);
  transition: transform var(--transition-fast);
}

.slider-comparison-box:hover .handle-button {
  transform: scale(1.12);
}

.slider-hint {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PRODUCTIONS / MOVIES & SERIES GRID
   ========================================================================== */
.production-filters {
  display: flex;
  gap: 8px;
  background: var(--bg-surface);
  padding: 6px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
}

.filter-btn.active {
  color: var(--accent-cyan);
}

.productions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.prod-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.15);
}

.prod-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Simulated Cinematic Poster Artworks via Gradients */
.poster-1 { background: radial-gradient(circle at 60% 30%, #ff3366 0%, #170b28 50%, #060912 100%); }
.poster-2 { background: radial-gradient(circle at 40% 40%, #00f0ff 0%, #091c33 50%, #050a14 100%); }
.poster-3 { background: radial-gradient(circle at 50% 50%, #ffaa00 0%, #2b1704 50%, #08070d 100%); }
.poster-4 { background: radial-gradient(circle at 70% 30%, #8b5cf6 0%, #150d2e 60%, #04060c 100%); }
.poster-5 { background: radial-gradient(circle at 30% 60%, #00f0ff 0%, #ff3366 50%, #0a0e1a 100%); }
.poster-6 { background: radial-gradient(circle at 50% 30%, #10b981 0%, #062419 60%, #040a08 100%); }

.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.prod-status {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  color: #ffffff;
}

.prod-status.in-theaters { color: var(--accent-amber); }
.prod-status.stream { color: var(--accent-cyan); }
.prod-status.season { color: #a78bfa; }
.prod-status.new-ep { color: var(--accent-magenta); }

.prod-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 14, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.prod-card:hover .prod-hover-overlay {
  opacity: 1;
}

.btn-play-sm {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(0.85);
  transition: transform var(--transition-fast);
}

.prod-card:hover .btn-play-sm {
  transform: scale(1);
}

.btn-play-sm svg {
  fill: #050811;
}

.prod-info {
  padding: 24px;
}

.prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.prod-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.prod-snippet {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PIPELINE / CAPABILITIES
   ========================================================================== */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pipe-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.pipe-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
}

.pipe-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.pipe-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.pipe-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  flex: 1;
}

.pipe-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.pipe-tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-muted);
}

/* ==========================================================================
   STUDIO SECTION
   ========================================================================== */
.studio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead-text {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.5;
}

.studio-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.studio-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point-item {
  display: flex;
  gap: 16px;
}

.point-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.point-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.point-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.studio-visual-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.crew-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.studio-blueprint {
  aspect-ratio: 4 / 3;
  background: #090d16;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 240, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.blueprint-element {
  position: absolute;
  padding: 6px 12px;
  background: rgba(14, 19, 29, 0.9);
  border: 1px solid var(--border-active);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blueprint-element .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

.blueprint-element.cam { top: 20%; left: 10%; }
.blueprint-element.stage { bottom: 25%; right: 10%; }
.blueprint-element.render { top: 25%; right: 15%; }

.blueprint-center-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
}

.studio-footer-badge {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-emerald);
}

/* ==========================================================================
   CONTACT / COLLABORATION
   ========================================================================== */
.contact-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
}

.c-val {
  font-weight: 600;
  color: var(--text-primary);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-core);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.form-feedback {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-emerald);
  color: #34d399;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  background: #04060a;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand .title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand .subtitle {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.domain-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.domain-tag a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.domain-tag a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   MODAL LIGHTBOX
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 20;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-magenta);
}

.modal-video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.cinema-player-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  background: #050811;
  display: flex;
  flex-direction: column;
}

.player-hud {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}

.stream-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #ff3366;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.stream-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.simulated-film-scene {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #101c33 0%, #03050a 80%);
}

.scene-anim-fx {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg at 50% 50%, rgba(0, 240, 255, 0.2) 0deg, transparent 60deg, rgba(255, 51, 102, 0.2) 180deg, transparent 240deg, rgba(0, 240, 255, 0.2) 360deg);
  animation: rotateGlow 12s linear infinite;
  opacity: 0.6;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scene-center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 80%;
}

.studio-logo-glow {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 0 30px var(--accent-cyan);
  margin-bottom: 10px;
}

.scene-center-content p {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.player-controls-mock {
  width: 100%;
  background: rgba(7, 9, 14, 0.8);
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  width: 42%;
  height: 100%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.controls-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .studio-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-surface-elevated);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-glass);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
  }
  .nav-links.mobile-open {
    transform: translateY(0);
  }
  .menu-toggle {
    display: flex;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .stat-separator {
    display: none;
  }
  .hero-stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .productions-grid {
    grid-template-columns: 1fr;
  }
}
