/* ==========================================================================
   VIVEK — IMMERSIVE VIDEO PORTFOLIO DESIGN SYSTEM
   Base Palette: Deep Charcoal / Matte Black (#07070a / #0c0c14)
   Primary Accent: Vibrant Electric Lime Green (#ccff00)
   Secondary Accents: Royal Purple (#a855f7) & Holographic Cyan (#06b6d4)
   ========================================================================== */

:root {
  --bg-dark: #050505;
  --bg-surface: #0b0b12;
  --bg-card: rgba(16, 16, 24, 0.72);
  --bg-card-hover: rgba(26, 26, 38, 0.88);

  --accent-lime: #ccff00;
  --accent-lime-glow: rgba(204, 255, 0, 0.4);
  --accent-purple: #a855f7;
  --accent-purple-glow: rgba(168, 85, 247, 0.4);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.4);

  --text-main: #ffffff;
  --text-silver: #a0aec0;
  --text-muted: #64748b;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --border-glow-lime: 1px solid rgba(204, 255, 0, 0.5);
  --border-glow-purple: 1px solid rgba(168, 85, 247, 0.5);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  background-color: #050505;
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  position: relative;
  background-color: #050505;
  background: #050505;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Main Container */
.container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 130px 0;
}

/* Typography Utilities & Shimmer Headlines */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-headline, .section-title, .process-main-headline, .cta-headline {
  background: linear-gradient(110deg, #ffffff 30%, #e2e8f0 45%, #ccff00 55%, #ffffff 75%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 8s infinite linear;
}

@keyframes text-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero-headline {
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 26px;
  filter: drop-shadow(0 0 22px rgba(204, 255, 0, 0.25));
}

.lime-period {
  color: var(--accent-lime);
  -webkit-text-fill-color: var(--accent-lime);
  text-shadow: 0 0 16px var(--accent-lime);
}

.header-subtext {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-purple);
  margin-bottom: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-subtext::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent-purple);
  box-shadow: 0 0 8px var(--accent-purple);
}

.section-title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.1;
}

.header-desc {
  color: var(--text-silver);
  font-size: 1.05rem;
  margin-top: 10px;
  max-width: 500px;
}

.section-header-stack {
  margin-bottom: 56px;
}

.section-header-stack .title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.small-link {
  color: var(--accent-lime);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: var(--transition-smooth);
  padding: 6px 16px;
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: 999px;
}

.small-link:hover {
  background: rgba(204, 255, 0, 0.2);
  box-shadow: 0 0 20px var(--accent-lime-glow);
  transform: translateX(4px);
}

/* Polished Glassmorphic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.btn-primary {
  background-color: var(--accent-lime);
  color: #050508;
  box-shadow: 0 0 30px var(--accent-lime-glow), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 50px rgba(204, 255, 0, 0.75), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-secondary {
  background-color: rgba(168, 85, 247, 0.1);
  color: var(--text-main);
  border: 1.5px solid var(--accent-purple);
  box-shadow: 0 0 25px var(--accent-purple-glow), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(168, 85, 247, 0.25);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.7);
}

.btn-large {
  padding: 22px 52px;
  font-size: 1.15rem;
}

/* HEADER & NAVIGATION BAR */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(6, 6, 9, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: var(--border-glass);
}

.header-container {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.05em;
  transition: var(--transition-smooth);
}

.logo-dot {
  color: var(--accent-lime);
  text-shadow: 0 0 16px var(--accent-lime);
}

.brand-logo:hover {
  transform: scale(1.1);
}

/* Center Glassmorphic Nav Pill Bar */
.nav-center-pill {
  display: flex;
  gap: 26px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 24px;
  border-radius: 999px;
  border: var(--border-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.nav-link {
  color: var(--text-silver);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent-lime);
  text-shadow: 0 0 12px var(--accent-lime-glow);
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-main);
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.3);
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-lime);
  animation: pulse-glow 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--accent-lime); }
  50% { opacity: 0.3; transform: scale(0.75); box-shadow: 0 0 4px var(--accent-lime); }
}

/* FOLD 1: HERO SECTION & VERTICALLY MASKED FILM-STRIPS */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  z-index: 2;
  overflow: visible;

  /* Natural entry/exit vertical fade mask (Clipped ONLY at top/bottom) */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.hero-container {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%; /* Strict Two-Zone: 46% Video Wall on Left, 54% Text Zone on Right */
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* STAGE CONTAINER - CONFINED TO LEFT 46% ZONE */
.film-strip-stage {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 100%;
  min-height: 640px;
  margin: 0;
  overflow: visible;
  z-index: 2;
}

/* =========================================================
   SEPARATE UNCLIPPED ATMOSPHERIC GLOW LAYER
   Subtle light following film strip path
   ========================================================= */
.film-glow-layer {
  position: absolute;
  top: -500px;
  bottom: -500px;
  left: -200px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Left Strip Purple Glow Source (Angled -4deg, matching left strip path) */
.glow-source.left-glow {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0%;
  width: 48%;
  transform: rotate(-4deg);

  background:
    radial-gradient(
      ellipse at 40% 50%,
      rgba(168, 85, 247, 0.18) 0%,
      rgba(157, 52, 255, 0.06) 50%,
      transparent 80%
    );

  filter: blur(40px);
  opacity: 0.60;
}

/* Right Strip Green Glow Source (Angled +4deg, matching right strip path) */
.glow-source.right-glow {
  position: absolute;
  top: -20%;
  bottom: -20%;
  right: 0%;
  width: 48%;
  transform: rotate(4deg);

  background:
    radial-gradient(
      ellipse at 60% 50%,
      rgba(186, 255, 24, 0.14) 0%,
      rgba(204, 255, 0, 0.04) 50%,
      transparent 80%
    );

  filter: blur(40px);
  opacity: 0.60;
}

/* Very Subtle Diffuse Ambient Lighting spilling softly into surrounding hero space */
.diffuse-ambient-glow {
  position: absolute;
  top: -300px;
  bottom: -300px;
  left: -300px;
  right: -200px;

  background:
    radial-gradient(
      ellipse at 25% 45%,
      rgba(168, 85, 247, 0.12),
      transparent 50%
    ),
    radial-gradient(
      ellipse at 68% 55%,
      rgba(186, 255, 24, 0.08),
      transparent 50%
    );

  filter: blur(75px);
  opacity: 0.50;
}

/* =========================================================
   FREE-FLOWING FILM STRIPS VIEWPORT
   Zero mask-image, zero overflow:hidden clipping box
   ========================================================= */
.film-strips-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}

/* EXACTLY TWO WIDE FLOATING CINEMATIC FILM STRIPS */
.film-strip {
  position: absolute;
  top: -420px;    /* Extends above and below the hero stage */
  bottom: -420px;
  width: 47%;
  z-index: 2;
  overflow: visible;
  pointer-events: auto; /* Enable hover & touch events on videos */
}

.film-strip.left {
  left: 1%;
  transform: rotate(-5deg);
}

.film-strip.right {
  right: 1%;
  transform: rotate(5deg);
}

/* THE BLACK FILM TRACK BODY */
.film-track {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
  padding: 8px 0;
  background: #000; /* Real black film material continuous from top to bottom */
  box-shadow:
    0 0 18px rgba(178,65,255,.22),
    0 0 45px rgba(178,65,255,.12),
    0 0 90px rgba(178,65,255,.06);
  will-change: transform;
}

/* Edge lighting & physical definition directly on film strips */
.left .film-track {
  animation: moveUp 74s linear infinite;
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.92),
    0 0 1px rgba(255, 255, 255, 0.16),
    0 0 24px rgba(178, 65, 255, 0.22),
    0 0 50px rgba(178, 65, 255, 0.10);
}

.right .film-track {
  animation: moveDown 74s linear infinite;
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.92),
    0 0 1px rgba(255, 255, 255, 0.16),
    0 0 24px rgba(186, 255, 24, 0.20),
    0 0 50px rgba(186, 255, 24, 0.10);
}

/* Freeze strip movement on hover */
.film-strip:hover .film-track,
.film-strip.video-hovered .film-track {
  animation-play-state: paused;
}

/* VIDEO FRAME */
.film-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8 / 1;
  flex: 0 0 auto;

  padding: 14px 20px;

  background: #000;
  border: 0;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.70),
    inset 0 0 15px rgba(255, 255, 255, 0.03);
  overflow: visible;
  cursor: pointer;
  z-index: 2;
}

/* GENUINE TRANSPARENT SPROCKET HOLE RAILS */
.film-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  background: #050505;
  z-index: 6;

  -webkit-mask-image: repeating-linear-gradient(
    to bottom,
    #000 0px,
    #000 12px,
    transparent 12px,
    transparent 27px
  );
  mask-image: repeating-linear-gradient(
    to bottom,
    #000 0px,
    #000 12px,
    transparent 12px,
    transparent 27px
  );
}

.film-rail.left-rail {
  left: 2px;
}

.film-rail.right-rail {
  right: 2px;
}

.film-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(0,0,0,.85);
  border-right: 1px solid rgba(0,0,0,.85);
}

/* VIDEO - NATURAL, VIBRANT, ZERO TRANSLUCENT WASH */
.film-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #17171b;
  border-radius: 2px;

  filter:
    brightness(0.96)
    saturate(1.05)
    contrast(1.05);

  transition:
    filter .45s ease,
    transform .45s cubic-bezier(.16,1,.3,1);
}

.film-frame:hover .film-video {
  filter:
    brightness(1.02)
    saturate(1.10)
    contrast(1.06);

  transform: scale(1.02);
}

/* INNER LIGHT */
.inner-light {
  position: absolute;
  inset: 14px 22px;
  pointer-events: none;
  z-index: 5;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.glow-purple,
.glow-green {
  box-shadow:
    0 25px 70px rgba(0,0,0,.50),
    inset 0 0 20px rgba(255,255,255,.025);
}

/* CARD VIDEO ASSETS */
.card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* INFINITE LOOP KEYFRAMES */
@keyframes moveUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes moveDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

/* =========================================================
   TRUSTED BY MARQUEE STRIP
   ========================================================= */
.trusted-strip {
  position: relative;
  width: 100%;
  min-height: 128px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(155, 77, 255, 0.05), transparent 45%),
    rgba(5, 5, 6, 0.96);
  isolation: isolate;
  z-index: 5;
}

/* Subtle ambient glow behind marquee */
.trusted-strip::before {
  content: "";
  position: absolute;
  inset: -80px 15% -80px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 50%, rgba(155, 77, 255, 0.09), transparent 28%),
    radial-gradient(circle at 70% 50%, rgba(184, 255, 0, 0.06), transparent 28%);
  filter: blur(35px);
}

.trusted-label {
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.trusted-label::before,
.trusted-label::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16));
}

.trusted-label::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent);
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );
}

.track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 34s linear infinite;
  will-change: transform;
}

.group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.client {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
  color: rgba(255, 255, 255, 0.62);
  opacity: 0.72;
  filter: grayscale(1);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease,
    color 0.35s ease,
    text-shadow 0.35s ease;
  cursor: default;
}

.client:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.045);
  color: #ffffff;
  text-shadow:
    0 0 16px rgba(184, 255, 0, 0.20),
    0 0 30px rgba(155, 77, 255, 0.10);
}

.client-logo {
  display: grid;
  place-items: center;
  min-width: 92px;
  font-family: var(--font-heading, Outfit, sans-serif);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.client-logo small {
  display: block;
  margin-top: 2px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.65;
}

.creator {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  background: #151518;
}

.creator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: filter 0.35s ease;
}

.client:hover .creator-img {
  filter: grayscale(0);
}

.creator-name {
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  font-family: var(--font-body, Inter, sans-serif);
}

.divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.10);
  flex: 0 0 auto;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero Right Copy Stack */
.hero-copy-stack {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 20px;
}

.hero-subhead {
  font-family: var(--font-heading, Outfit, sans-serif);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--accent-purple, #b241ff);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-heading, Outfit, sans-serif);
  font-size: clamp(3.0rem, 4.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  word-break: normal;
  overflow-wrap: normal;
}

.lime-period {
  color: var(--accent-lime, #baff18);
  -webkit-text-fill-color: var(--accent-lime, #baff18);
  text-shadow: 0 0 20px rgba(186, 255, 24, 0.6);
}

.hero-desc {
  font-family: var(--font-body, Inter, sans-serif);
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.55;
  color: #9ca3af;
  margin-bottom: 34px;
  max-width: 500px;
  text-align: left;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  width: auto;
}

.hero-cta-group .btn-primary {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 17px 34px;
  text-transform: uppercase;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: none;
}

/* =========================================================
   NEW MVP LOWER PAGE SYSTEM (VERTICAL WORK, RESULTS & CTA)
   ========================================================= */

.section-number {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #777780;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.section-number span:first-child { color: var(--accent-purple, #a855ff); }
.rule { width: 70px; height: 1px; background: linear-gradient(90deg, var(--accent-purple, #a855ff), transparent); }

.eyebrow {
  color: var(--accent-purple, #a855ff);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.lime { color: var(--accent-lime, #baff18); }

/* ================= SELECTED WORK ================= */
.work {
  padding: 110px 0 125px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  position: relative;
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 55px;
}

.work-title {
  font-size: clamp(55px, 7vw, 100px);
  line-height: 0.86;
  letter-spacing: -0.065em;
  font-family: var(--font-heading, Outfit, sans-serif);
  color: var(--text-white, #f5f4ef);
}

.work-intro {
  max-width: 520px;
  color: var(--text-silver, #a0aec0);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.55;
  font-family: var(--font-body, Inter, sans-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Vertical Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0c;
  border: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.video-card:nth-child(2) { margin-top: 35px; }
.video-card:nth-child(4) { margin-top: 55px; }

.video-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(186, 255, 24, 0.38);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  z-index: 4;
}

.video-card.has-audio {
  border-color: var(--accent-lime, #baff18);
  box-shadow: 0 0 35px rgba(186, 255, 24, 0.35), 0 25px 70px rgba(0, 0, 0, 0.7);
}

.audio-indicator {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  pointer-events: none;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.video-card:hover .audio-indicator {
  opacity: 0.9;
  transform: scale(1);
}

.video-card.has-audio .audio-indicator {
  opacity: 1;
  transform: scale(1);
  background: var(--accent-lime, #baff18);
  color: #000;
  border-color: var(--accent-lime, #baff18);
  box-shadow: 0 0 15px rgba(186, 255, 24, 0.5);
}

.video-card .card-video,
.video-card .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.video-card:hover .card-video,
.video-card:hover .card-img {
  transform: scale(1.05);
}

.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(168, 85, 255, 0.38), transparent 23%),
    linear-gradient(145deg, #19141f, #080809 58%, #12150b);
}

.video-card:nth-child(2) .video-bg {
  background:
    radial-gradient(circle at 68% 30%, rgba(186, 255, 24, 0.25), transparent 23%),
    linear-gradient(145deg, #11191a, #070809 60%, #17120d);
}

.video-card:nth-child(3) .video-bg {
  background:
    radial-gradient(circle at 35% 35%, rgba(168, 85, 255, 0.25), transparent 24%),
    linear-gradient(145deg, #191217, #080809);
}

.video-card:nth-child(4) .video-bg {
  background:
    radial-gradient(circle at 65% 28%, rgba(186, 255, 24, 0.22), transparent 25%),
    linear-gradient(145deg, #14180f, #080809);
}

.video-card:nth-child(5) .video-bg {
  background:
    radial-gradient(circle at 45% 30%, rgba(168, 85, 255, 0.32), transparent 22%),
    linear-gradient(145deg, #15121b, #080809);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.9));
}

.fake-play {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  font-size: 18px;
  padding-left: 3px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  z-index: 3;
  color: #fff;
}

.video-card:hover .fake-play {
  background: var(--accent-lime, #baff18);
  color: #050506;
  border-color: var(--accent-lime, #baff18);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  pointer-events: none;
}

.video-meta small {
  display: block;
  color: var(--accent-lime, #baff18);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.video-meta h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 3px;
  font-family: var(--font-heading, Outfit, sans-serif);
  color: #ffffff;
}

.video-meta p {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  line-height: 1.3;
  font-family: var(--font-body, Inter, sans-serif);
}

.video-count {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 8px;
  color: #d5d5d8;
  z-index: 3;
  font-family: var(--font-heading, Outfit, sans-serif);
}

/* ================= CASE STUDY / RESULTS CAROUSEL ================= */
.case-study-section {
  padding: 100px 0 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  position: relative;
}

.case-study-shell {
  position: relative;
  background: #09090c;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  padding: 44px 50px 36px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.case-study-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.case-study-eyebrow {
  color: var(--accent-lime, #baff18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.case-study-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.case-study-counter {
  color: var(--text-silver, #92929b);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.case-study-nav {
  display: flex;
  gap: 8px;
}

.cs-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 18, 24, 0.85);
  color: #fff;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
  line-height: 1;
}

.cs-arrow:hover {
  background: var(--accent-lime, #baff18);
  color: #050505;
  border-color: var(--accent-lime, #baff18);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(186, 255, 24, 0.45);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: start;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.case-study-grid.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.case-study-left {
  display: flex;
  flex-direction: column;
}

.case-study-client {
  display: flex;
  gap: 16px;
  align-items: center;
}

.case-study-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 35%, #2a0b12, #0d0d12);
  border: 2px solid var(--accent-lime, #baff18);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading, Outfit, sans-serif);
  flex-shrink: 0;
  box-shadow: 0 0 22px rgba(186, 255, 24, 0.28);
  overflow: hidden;
  position: relative;
}

.cs-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.case-study-name {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-family: var(--font-heading, Outfit, sans-serif);
  text-transform: uppercase;
  margin: 0;
}

.case-study-handle {
  color: var(--accent-lime, #baff18);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  font-family: var(--font-body, Inter, sans-serif);
}

.case-study-desc {
  max-width: 520px;
  color: #9ca3af;
  font-size: 17px;
  line-height: 1.55;
  margin: 24px 0 20px;
  font-family: var(--font-body, Inter, sans-serif);
}

.case-study-stats {
  display: flex;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  margin: 10px 0 18px;
}

.case-study-stat {
  flex: 1;
  padding: 16px 10px;
}

.case-study-stat + .case-study-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 24px;
}

.case-study-stat b {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 800;
  color: #ffffff;
  display: block;
  font-family: var(--font-heading, Outfit, sans-serif);
  line-height: 1.1;
}

.case-study-stat small {
  display: block;
  color: #718096;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.case-study-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 6px 0 22px;
}

.case-study-tag {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 11px;
  border-radius: 5px;
  color: #9ca3af;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading, Outfit, sans-serif);
}

.case-study-results-wrap {
  margin-top: 4px;
}

.case-study-results-title {
  color: var(--text-silver, #92929b);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.case-study-results {
  display: flex;
  gap: 28px;
}

.case-study-result {
  flex: 1;
}

.case-study-result b {
  color: var(--accent-lime, #baff18);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  display: block;
  line-height: 1.05;
  font-family: var(--font-heading, Outfit, sans-serif);
  letter-spacing: -0.02em;
}

.case-study-result small {
  display: block;
  color: #718096;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.case-study-cta-row {
  margin-top: 24px;
}

.case-study-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-lime, #baff18);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-heading, Outfit, sans-serif);
  transition: gap 0.3s ease, color 0.3s ease;
}

.case-study-instagram:hover {
  color: #ffffff;
  gap: 12px;
}

.case-study-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cs-video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #08080a;
  border: 1px solid rgba(186, 255, 24, 0.22);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 18px rgba(186, 255, 24, 0.08);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.cs-youtube-player,
.cs-youtube-iframe,
.cs-video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  display: block;
}

.cs-video-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(186, 255, 24, 0.48);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 28px rgba(186, 255, 24, 0.22);
  z-index: 2;
}

.cs-video-card.has-audio {
  border-color: var(--accent-lime, #baff18);
  box-shadow: 0 0 35px rgba(186, 255, 24, 0.35), 0 25px 70px rgba(0, 0, 0, 0.7);
}

.cs-video-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  pointer-events: none;
}

.cs-video-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--font-heading, Outfit, sans-serif);
  line-height: 1.2;
}

.cs-video-views {
  display: block;
  color: var(--accent-lime, #baff18);
  font-size: 18px;
  font-weight: 800;
  margin-top: 3px;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.cs-video-badge {
  display: block;
  color: #718096;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.case-study-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 26px;
}

.cs-service-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.cs-service-icon {
  color: var(--accent-lime, #baff18);
  font-size: 20px;
  line-height: 1;
  font-family: monospace, sans-serif;
}

.cs-service-content strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.cs-service-content p {
  color: #888891;
  font-size: 11.5px;
  line-height: 1.5;
  margin-top: 4px;
  font-family: var(--font-body, Inter, sans-serif);
}

/* ================= CTA ================= */
.cta {
  min-height: 430px;
  padding: 110px 0;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 350px;
  border-radius: 50%;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(168, 85, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.cta-title {
  position: relative;
  font-size: clamp(55px, 7vw, 100px);
  line-height: 0.86;
  letter-spacing: -0.07em;
  font-family: var(--font-heading, Outfit, sans-serif);
  color: var(--text-white, #f5f4ef);
}

.cta-copy {
  position: relative;
  max-width: 520px;
  margin: 25px auto 35px;
  color: var(--text-silver, #92929b);
  font-size: 14px;
  line-height: 1.65;
  font-family: var(--font-body, Inter, sans-serif);
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px 16px 25px;
  border-radius: 999px;
  background: var(--accent-lime, #baff18);
  color: #050506;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 50px rgba(186, 255, 24, 0.2);
  font-family: var(--font-heading, Outfit, sans-serif);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 70px rgba(186, 255, 24, 0.35);
}

.cta-btn span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #050506;
  color: var(--accent-lime, #baff18);
}

.contact {
  position: relative;
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  color: #7d7d86;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-family: var(--font-heading, Outfit, sans-serif);
}

/* =========================================================
   CLEAN RESPONSIVE SYSTEM (TABLET & MOBILE)
   Desktop (>= 1024px) retains full-width cinematic styling
   ========================================================= */

/* =========================================================
   CLEAN RESPONSIVE SYSTEM (TABLET & MOBILE)
   Desktop (>= 1024px) retains full-width cinematic 2-zone styling
   ========================================================= */

/* TABLET RESPONSIVE (768px – 1023px) */
@media (max-width: 1023px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .film-strip-stage {
    max-width: 520px;
    min-height: 460px;
    margin: 0 auto;
  }
  .film-strip {
    top: -220px;
    bottom: -220px;
    width: 46%;
  }
  .hero-copy-stack {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 580px;
    padding-left: 0;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-headline {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  }
  .hero-cta-group {
    justify-content: center;
  }

  .work-head { display: block; }
  .work-intro { margin-top: 22px; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .video-card:nth-child(2), .video-card:nth-child(4) { margin-top: 25px; }

  .case-study-grid { grid-template-columns: 1fr; gap: 36px; }
  .case-study-shell { padding: 36px 30px 30px; }
  .case-study-services { grid-template-columns: 1fr; gap: 20px; }
}

/* MOBILE RESPONSIVE (< 768px) — EXACT REFINEMENT OF APPROVED REFERENCE */
@media (max-width: 767px) {
  /* 1. MINIMAL CLEAN HEADER (V. Logo on Left, Available Badge on Right) */
  .site-header {
    padding: 14px 0;
    background: transparent;
  }

  .site-header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .header-container {
    width: 90%;
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .brand-logo {
    font-size: 2.1rem;
    font-weight: 900;
  }

  /* Hide center nav pill on mobile as per reference */
  .nav-center-pill {
    display: none !important;
  }

  /* Available for Projects Badge on Top Right (Fully visible, zero clipping) */
  .nav-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(186, 255, 24, 0.05);
    border: 1px solid rgba(186, 255, 24, 0.35);
    box-shadow: 0 0 16px rgba(186, 255, 24, 0.12);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .status-text {
    font-size: 9.5px;
    font-weight: 850;
    letter-spacing: 0.07em;
    color: #ffffff;
    white-space: nowrap;
  }

  .pulse-dot {
    width: 6.5px;
    height: 6.5px;
    background-color: var(--accent-lime, #baff18);
    box-shadow: 0 0 8px var(--accent-lime, #baff18);
    flex-shrink: 0;
  }

  /* 2. MOBILE HERO CONTAINER & DOTTED CINEMATIC BACKGROUND */
  .hero-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 70px;
    padding-bottom: 80px; /* 70–90px breathing room after CTA before next section */
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 0;
    position: relative;
    overflow: visible;
  }

  .film-glow-layer {
    position: absolute;
    top: -100px;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
  }

  /* 3. UPPER STAGE: UNCLIPPED FULL-WIDTH STAGE WITH EXPANDED VERTICAL HEIGHT */
  .film-strip-stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 380px;
    min-height: 380px;
    margin: 0 auto 10px;
    overflow: visible; /* CRITICAL: No horizontal box-cropping of the film strips! */
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 6%,
      black 78%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 6%,
      black 78%,
      transparent 100%
    );
  }

  .film-strips-viewport {
    width: 100%;
    max-width: 390px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible; /* ZERO horizontal clipping */
  }

  /* TWO WIDER FLOATING FILM STRIPS (SIZE, ANGLE, POSITION LOCKED) */
  .film-strip {
    position: absolute;
    top: -130px;
    bottom: -130px;
    width: 49%;
  }

  .film-strip.left {
    left: 0.5%;
    transform: rotate(-5deg);
  }

  .film-strip.right {
    right: 0.5%;
    transform: rotate(5deg);
  }

  .film-track {
    gap: 12px;
    padding: 6px 0;
  }

  .film-frame {
    padding: 10px 14px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95);
  }

  .film-rail {
    width: 10px;
    background: #080808;
  }

  .film-video {
    border-radius: 2px;
    filter: brightness(0.98) saturate(1.05) contrast(1.05);
  }

  .inner-light {
    inset: 10px 14px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.06);
  }

  /* 4. DEDICATED TEXT AREA (SHIFTED DOWNWARD AS A UNIFIED GROUP) */
  .hero-copy-stack {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    padding: 10px 0 0;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
  }

  .hero-subhead {
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #b241ff;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
  }

  /* Main Headline (8-10% reduced, bold, prominent, never clipped) */
  .hero-headline {
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: clamp(1.95rem, 7.8vw, 2.45rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  /* Description (18-20px on mobile with high contrast & comfortable line height) */
  .hero-desc {
    font-family: var(--font-body, Inter, sans-serif);
    font-size: clamp(17.5px, 4.4vw, 19.5px);
    line-height: 1.55;
    color: #d1d5db;
    margin: 0 auto 24px;
    max-width: 340px;
    text-align: center;
  }

  /* CTA Button (10-15% reduced, centered, comfortable pill) */
  .hero-cta-group {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-cta-group .btn-primary {
    width: 100%;
    max-width: 275px;
    justify-content: center;
    padding: 15px 24px;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: #ccff00;
    color: #050508;
    box-shadow: 0 0 28px rgba(204, 255, 0, 0.40);
    border-radius: 999px;
  }

  /* Lower Sections */
  .work, .case-study-section, .cta { padding: 75px 0 85px; }
  .work-title, .cta-title { font-size: 48px; }
  .work-intro { font-size: 18px; line-height: 1.5; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .video-card:nth-child(2), .video-card:nth-child(4) { margin-top: 18px; }
  .video-card { border-radius: 14px; }
  .video-meta { left: 12px; right: 12px; bottom: 12px; }
  .video-meta small { font-size: 8px; }
  .video-meta h3 { font-size: 12px; }
  .video-meta p { font-size: 10px; }

  .case-study-shell { padding: 28px 18px 24px; border-radius: 20px; }
  .case-study-topbar { margin-bottom: 22px; flex-wrap: wrap; gap: 14px; }
  .case-study-name { font-size: 32px; }
  .case-study-desc { font-size: 15px; }
  .case-study-stat { padding: 12px 6px; }
  .case-study-stat + .case-study-stat { padding-left: 14px; }
  .case-study-stat b { font-size: 20px; }
  .case-study-results { gap: 18px; }
  .case-study-result b { font-size: 24px; }
  .case-study-videos { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cs-video-views { font-size: 15px; }
  .contact { gap: 15px; }
}

@media (max-width: 390px) {
  .hero-headline { font-size: clamp(1.8rem, 8.2vw, 2.15rem); }
  .hero-desc { font-size: 17px; max-width: 300px; }
  .hero-cta-group .btn-primary { max-width: 255px; padding: 14px 20px; font-size: 11.5px; }
  .status-text { font-size: 8.5px; }
  .brand-logo { font-size: 1.8rem; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .work-title, .cta-title { font-size: 43px; }
  .case-study-stats { flex-direction: column; }
  .case-study-stat + .case-study-stat { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-left: 8px; }
  .case-study-results { flex-direction: column; gap: 12px; }
}

/* =========================================================
   FULL-SCREEN VIDEO LIGHTBOX MODAL (OVERLAY ONLY)
   ========================================================= */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  background: #0d0d12;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85);
  animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-media-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  margin-bottom: 20px;
}

.lightbox-media-container .lightbox-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lightbox-controls {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.control-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading, Outfit, sans-serif);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.control-btn:hover {
  color: var(--accent-lime, #ccff00);
}

.lightbox-time {
  margin-left: auto;
  color: #a0aec0;
  font-size: 12px;
  font-family: var(--font-body, Inter, sans-serif);
  font-variant-numeric: tabular-nums;
}

.lightbox-category {
  color: var(--accent-purple, #a855f7);
  font-family: var(--font-heading, Outfit, sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lightbox-title {
  color: #fff;
  font-family: var(--font-heading, Outfit, sans-serif);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.lightbox-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.modal-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-family: var(--font-heading, Outfit, sans-serif);
}

.modal-badge.badge-quality {
  border-color: rgba(204, 255, 0, 0.4);
  color: var(--accent-lime, #ccff00);
}

.lightbox-desc {
  color: #a0aec0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

.btn-modal {
  padding: 12px 28px;
  font-size: 13px;
}
