/* ============================================================
   UNTITLED VFX — Cinematic Hero
   File: uvfx-hero.css
   Prefix: uvfx-hero-*
   Aesthetic: Cinematic dark / VFX terminal / Premium film studio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Mono:wght@300;400&display=swap');

/* ── Root ── */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);

  --uvfx-hero-h: 100vh;
  --uvfx-hero-min-h: 700px;
  --uvfx-hero-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
  background: var(--ink);
}

/* ══════════════════════════════════════════════
   BACKGROUND LAYERS
══════════════════════════════════════════════ */
.uvfx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* ── Poster / Frame Grid ── */
.uvfx-hero-poster-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  transform: scale(1.06);
  animation: uvfx-grid-idle 24s ease-in-out infinite alternate;
}

@keyframes uvfx-grid-idle {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.1) translateY(-1.5%); }
}

.uvfx-hero-poster {
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.4) brightness(0.6);
  transition: opacity 1s;
}

/* Cinematic gradient placeholders — replace src with real frames */
.uvfx-hero-poster--1 { background: linear-gradient(135deg, #1a0505 0%, #3a0a0a 50%, #0a0a14 100%); }
.uvfx-hero-poster--2 { background: linear-gradient(225deg, #0a0a14 0%, #140505 60%, #200808 100%); }
.uvfx-hero-poster--3 { background: linear-gradient(315deg, #0a0505 0%, #1e0606 50%, #0a0a0a 100%); }
.uvfx-hero-poster--4 { background: linear-gradient(45deg,  #140a00 0%, #0a1420 60%, #100505 100%); }
.uvfx-hero-poster--5 { background: linear-gradient(180deg, #0a0a14 0%, #200808 60%, #0a0a0a 100%); }
.uvfx-hero-poster--6 { background: linear-gradient(270deg, #0a0a0a 0%, #1e0606 50%, #0a1420 100%); }

/* ── Main Overlay ── */
.uvfx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%),
              linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.92) 100%);
}

/* ── Vignette ── */
.uvfx-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
}

/* ── Film Grain ── */
.uvfx-hero-grain {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  animation: uvfx-grain-drift 8s steps(2) infinite;
}

@keyframes uvfx-grain-drift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-1%,1%); }
  50%  { transform: translate(1%,-1%); }
  75%  { transform: translate(-1%,-1%); }
  100% { transform: translate(0,0); }
}

/* ── Scanlines ── */
.uvfx-hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  opacity: 0.6;
}

/* ── Diagonal Slash ── */
.uvfx-hero-slash {
  position: absolute;
  top: 0;
  right: 30%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 25%, var(--red) 75%, transparent 100%);
  opacity: 0.1;
  transform: skewX(-14deg);
}

.uvfx-hero-slash::before,
.uvfx-hero-slash::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  background: inherit;
}

.uvfx-hero-slash::before { left: 18px; width: 1px; opacity: 0.5; }
.uvfx-hero-slash::after  { left: 32px; width: 1px; opacity: 0.2; }

/* ── Signal Nodes ── */
.uvfx-hero-node {
  position: absolute;
  width: 10px;
  height: 10px;
}

.uvfx-hero-node span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--red);
  animation: uvfx-node-pulse 3s ease-in-out infinite;
}

.uvfx-hero-node span::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.3);
  animation: uvfx-node-ring 3s ease-in-out infinite;
}

.uvfx-hero-node span::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.12);
  animation: uvfx-node-ring 3s ease-in-out 0.3s infinite;
}

.uvfx-hero-node--1 { top: 20%; right: 22%; }
.uvfx-hero-node--2 { top: 60%; right: 40%; animation-delay: 1s; }
.uvfx-hero-node--3 { top: 38%; right: 32%; animation-delay: 0.5s; }

@keyframes uvfx-node-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 6px var(--glow); }
  50%       { transform: scale(1.3); box-shadow: 0 0 18px var(--glow); }
}

@keyframes uvfx-node-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ── Corner Brackets ── */
.uvfx-hero-bracket {
  position: absolute;
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  animation: uvfx-bracket-in 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.uvfx-hero-bracket--tl { top: 24px; left: 24px; border-top: 2px solid rgba(229,9,20,0.45); border-left: 2px solid rgba(229,9,20,0.45);   animation-delay: 1.0s; }
.uvfx-hero-bracket--tr { top: 24px; right: 24px; border-top: 2px solid rgba(229,9,20,0.45); border-right: 2px solid rgba(229,9,20,0.45);  animation-delay: 1.1s; }
.uvfx-hero-bracket--bl { bottom: 24px; left: 24px; border-bottom: 2px solid rgba(229,9,20,0.45); border-left: 2px solid rgba(229,9,20,0.45);  animation-delay: 1.2s; }
.uvfx-hero-bracket--br { bottom: 24px; right: 24px; border-bottom: 2px solid rgba(229,9,20,0.45); border-right: 2px solid rgba(229,9,20,0.45); animation-delay: 1.3s; }

@keyframes uvfx-bracket-in {
  from { opacity: 0; transform: scale(1.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════════════ */
.uvfx-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 var(--uvfx-hero-pad-x);
  padding-top: clamp(100px, 14vh, 160px);
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  gap: 28px;
}

/* ── Badge ── */
.uvfx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: uvfx-fade-up 0.6s ease 0.2s forwards;
}

.uvfx-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--glow);
  animation: uvfx-badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes uvfx-badge-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--glow); transform: scale(1); }
  50%       { box-shadow: 0 0 18px var(--glow); transform: scale(1.3); }
}

.uvfx-hero-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  font-family: 'DM Mono', monospace;
}

/* ── Headline ── */
.uvfx-hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.uvfx-hero-headline-line {
  display: block;
  overflow: hidden;
}

.uvfx-hero-headline-word {
  display: inline-block;
  color: var(--ice);
  opacity: 0;
  transform: translateY(110%);
  animation: uvfx-word-rise 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  margin-right: 0.15em;
}

/* Stagger per line */
.uvfx-hero-headline-line--1 .uvfx-hero-headline-word:nth-child(1) { animation-delay: 0.32s; }
.uvfx-hero-headline-line--1 .uvfx-hero-headline-word:nth-child(2) { animation-delay: 0.40s; }
.uvfx-hero-headline-line--1 .uvfx-hero-headline-word:nth-child(3) { animation-delay: 0.48s; }
.uvfx-hero-headline-line--2 .uvfx-hero-headline-word:nth-child(1) { animation-delay: 0.56s; }
.uvfx-hero-headline-line--2 .uvfx-hero-headline-word:nth-child(2) { animation-delay: 0.64s; }
.uvfx-hero-headline-line--3 .uvfx-hero-headline-word:nth-child(1) { animation-delay: 0.72s; }
.uvfx-hero-headline-line--3 .uvfx-hero-headline-word:nth-child(2) { animation-delay: 0.80s; }
.uvfx-hero-headline-line--4 .uvfx-hero-headline-word:nth-child(1) { animation-delay: 0.88s; }
.uvfx-hero-headline-line--4 .uvfx-hero-headline-word:nth-child(2) { animation-delay: 0.96s; }

@keyframes uvfx-word-rise {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}

.uvfx-hero-headline-word--accent {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.5);
}

.uvfx-hero-headline-word--outline {
  -webkit-text-stroke: 2px rgba(245,245,241,0.7);
  color: transparent;
}

.uvfx-hero-headline-word--glow {
  color: var(--ice);
  text-shadow: 0 0 80px rgba(245,245,241,0.25);
}

/* ── Sub headline ── */
.uvfx-hero-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,241,0.52);
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 560px;
  text-align: center;
  opacity: 0;
  animation: uvfx-fade-up 0.7s ease 1.0s forwards;
}

/* ── CTAs ── */
.uvfx-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: uvfx-fade-up 0.7s ease 1.15s forwards;
}

.uvfx-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.uvfx-hero-cta--primary {
  background: var(--red);
  color: var(--ice);
  border: 1px solid var(--red);
}

.uvfx-hero-cta--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(229,9,20,0.4);
  color: var(--ice);
}

.uvfx-hero-cta--primary svg { transition: transform 0.3s; }
.uvfx-hero-cta--primary:hover svg { transform: translateX(-2px) scale(1.1); }

.uvfx-hero-cta--ghost {
  background: transparent;
  color: rgba(245,245,241,0.75);
  border: 1px solid rgba(245,245,241,0.18);
  backdrop-filter: blur(8px);
}

.uvfx-hero-cta--ghost:hover {
  background: rgba(245,245,241,0.06);
  border-color: rgba(245,245,241,0.4);
  transform: translateY(-2px) scale(1.02);
  color: var(--ice);
}

.uvfx-hero-cta--ghost svg { transition: transform 0.3s; }
.uvfx-hero-cta--ghost:hover svg { transform: translateX(4px); }

/* ── Disciplines row ── */
.uvfx-hero-disciplines {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: uvfx-fade-up 0.7s ease 1.3s forwards;
}

.uvfx-hero-disc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,245,241,0.3);
  transition: color 0.3s;
}

.uvfx-hero-disc-tag:hover { color: rgba(245,245,241,0.7); }

.uvfx-hero-disc-sep {
  color: rgba(229,9,20,0.3);
  font-size: 10px;
  line-height: 1;
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.uvfx-hero-stats {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245,245,241,0.06);
  box-shadow: inset 0 1px 0 rgba(229,9,20,0.18);
  opacity: 0;
  animation: uvfx-stats-rise 0.8s cubic-bezier(0.25,0.46,0.45,0.94) 1.5s forwards;
  /* Ensure stats bar is always fully visible after animation */
  animation-fill-mode: forwards;
}

@keyframes uvfx-stats-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.uvfx-hero-stat {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  column-gap: 0;
  row-gap: 2px;
  padding: 22px 16px;
  position: relative;
  transition: background 0.3s;
}

.uvfx-hero-stat:hover { background: rgba(229,9,20,0.04); }

.uvfx-hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px var(--glow);
  transition: width 0.35s ease;
}

.uvfx-hero-stat:hover::before { width: 40%; }

.uvfx-hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
  color: var(--ice);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  display: inline;
}

.uvfx-hero-stat-unit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--red);
  line-height: 1;
  margin-left: 2px;
  position: relative;
  top: -2px;
  display: inline;
}

.uvfx-hero-stat-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,241,0.3);
  margin-top: 4px;
}

.uvfx-hero-stat-divider {
  width: 1px;
  background: rgba(245,245,241,0.07);
  margin: 12px 0;
  align-self: stretch;
}

/* ══════════════════════════════════════════════
   SCROLL CUE
══════════════════════════════════════════════ */
.uvfx-hero-scroll-cue {
  position: absolute;
  bottom: 110px;
  left: var(--uvfx-hero-pad-x);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: uvfx-fade-in 1s ease 1.8s forwards;
}

.uvfx-hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(245,245,241,0.25));
  position: relative;
  overflow: hidden;
}

.uvfx-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: uvfx-scroll-drip 2.2s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes uvfx-scroll-drip {
  0%   { top: -100%; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.uvfx-hero-scroll-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,245,241,0.22);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════════
   SHARED KEYFRAMES
══════════════════════════════════════════════ */
@keyframes uvfx-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes uvfx-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .uvfx-hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
  }

  .uvfx-hero-content {
    padding-top: 130px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .uvfx-hero-headline { font-size: clamp(52px, 14vw, 88px); }
  .uvfx-hero-sub { font-size: 14px; max-width: 100%; }
  .uvfx-hero-scroll-cue { display: none; }
  .uvfx-hero-node--2, .uvfx-hero-node--3 { display: none; }
  .uvfx-hero-poster-grid { grid-template-columns: repeat(2, 1fr); }

  .uvfx-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .uvfx-hero-headline { font-size: clamp(42px, 16vw, 68px); }

  .uvfx-hero-stats { flex-wrap: wrap; }
  .uvfx-hero-stat  { flex: 0 0 50%; padding: 16px 12px; }
  .uvfx-hero-stat-divider { display: none; }

  .uvfx-hero-bracket { width: 24px; height: 24px; }
  .uvfx-hero-bracket--tl, .uvfx-hero-bracket--tr { top: 16px; }
  .uvfx-hero-bracket--bl, .uvfx-hero-bracket--br { bottom: 16px; }
  .uvfx-hero-bracket--tl, .uvfx-hero-bracket--bl { left: 16px; }
  .uvfx-hero-bracket--tr, .uvfx-hero-bracket--br { right: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-hero-poster-grid,
  .uvfx-hero-grain,
  .uvfx-hero-headline-word,
  .uvfx-hero-badge,
  .uvfx-hero-sub,
  .uvfx-hero-ctas,
  .uvfx-hero-disciplines,
  .uvfx-hero-stats,
  .uvfx-hero-bracket,
  .uvfx-hero-node span,
  .uvfx-hero-scroll-line::after,
  .uvfx-hero-badge-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   UNTITLED VFX — Studio Story / Our Journey
   File: uvfx-story.css
   Prefix: uvfx-story-*
   Aesthetic: Cinematic editorial / Film-frame authority / Premium Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-story-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-story {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* Top + bottom rule lines — consistent with all other sections */
.uvfx-story::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.uvfx-story::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.uvfx-story-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.uvfx-story-ambient {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
}

.uvfx-story-ambient--left {
  bottom: -200px; left: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 65%);
}

.uvfx-story-ambient--right {
  top: -150px; right: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.035) 0%, transparent 60%);
}

.uvfx-story-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.6;
}

/* ══════════════════════════════════════════════
   SPINE (matches seo-desc, seo-svc pattern)
══════════════════════════════════════════════ */
.uvfx-story-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.uvfx-story-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.uvfx-story-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.uvfx-story-spine-track.uvfx-story-in-view {
  transform: scaleY(1);
}

/* ══════════════════════════════════════════════
   INNER — two-column layout
══════════════════════════════════════════════ */
.uvfx-story-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-story-pad-x);
  padding-left: calc(var(--uvfx-story-pad-x) + 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ══════════════════════════════════════════════
   LEFT COLUMN
══════════════════════════════════════════════ */
.uvfx-story-left {
  display: flex; flex-direction: column; gap: 32px;

  /* Scroll reveal */
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.uvfx-story-left.uvfx-story-in-view {
  opacity: 1; transform: translateX(0);
}

/* ── Eyebrow ── */
.uvfx-story-eyebrow {
  display: flex; align-items: center; gap: 12px;
}

.uvfx-story-eyebrow-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 10px var(--glow);
  animation: uvfx-story-pip-pulse 2.5s ease-in-out infinite;
}

@keyframes uvfx-story-pip-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--glow); }
  50%       { box-shadow: 0 0 18px var(--glow); }
}

.uvfx-story-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red);
}

.uvfx-story-eyebrow-line {
  flex: 1; height: 1px; max-width: 160px;
  background: linear-gradient(to right, rgba(229,9,20,0.35), transparent);
}

/* ── Heading ── */
.uvfx-story-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.9; letter-spacing: 0.02em;
  margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}

.uvfx-story-heading-line {
  display: block;
  color: var(--ice);
  overflow: hidden;
}

.uvfx-story-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.uvfx-story-heading-line--outline {
  -webkit-text-stroke: 2px rgba(245,245,241,0.55);
  color: transparent;
}

/* ── Body Copy ── */
.uvfx-story-copy {
  display: flex; flex-direction: column; gap: 16px;
}

.uvfx-story-para {
  font-size: clamp(14px, 1.4vw, 15.5px);
  font-weight: 300; line-height: 1.85;
  color: rgba(245,245,241,0.5); margin: 0;
}

.uvfx-story-para--lead {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400; color: rgba(245,245,241,0.72);
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.uvfx-story-para strong {
  color: rgba(245,245,241,0.88); font-weight: 600;
}

.uvfx-story-para em {
  color: rgba(229,9,20,0.85); font-style: italic;
}

/* Pull-quote principle line */
.uvfx-story-para--principle {
  font-size: clamp(13px, 1.3vw, 14.5px) !important;
  color: rgba(245,245,241,0.4) !important;
  font-style: italic;
  border-left: none !important;
  padding-left: 0 !important;
  position: relative;
  padding: 16px 20px;
  background: rgba(229,9,20,0.04);
  border: 1px solid rgba(229,9,20,0.12);
  border-radius: 8px;
  line-height: 1.75 !important;
}

.uvfx-story-para--principle strong {
  color: rgba(245,245,241,0.78) !important;
  font-weight: 500;
  font-style: normal;
  display: block;
  margin-top: 6px;
  font-size: clamp(14px, 1.4vw, 15.5px);
}

/* ── Timeline ── */
.uvfx-story-timeline {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid rgba(245,245,241,0.07);
  padding-left: 24px;
  margin-left: 4px;
}

.uvfx-story-milestone {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  position: relative;
  transition: background 0.3s;
}

/* Node dot on the timeline line */
.uvfx-story-milestone::before {
  content: '';
  position: absolute;
  left: -28px; top: 22px;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(229,9,20,0.3);
  border: 1px solid rgba(229,9,20,0.5);
  transition: background 0.3s, box-shadow 0.3s;
}

.uvfx-story-milestone:hover::before {
  background: var(--red);
  box-shadow: 0 0 10px var(--glow);
}

/* Connecting line between nodes */
.uvfx-story-milestone + .uvfx-story-milestone {
  border-top: 1px solid rgba(245,245,241,0.05);
}

.uvfx-story-milestone-year {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(229,9,20,0.5);
  padding-top: 2px; line-height: 1.4;
  transition: color 0.3s;
}

.uvfx-story-milestone:hover .uvfx-story-milestone-year {
  color: var(--red);
}

.uvfx-story-milestone-body {
  display: flex; flex-direction: column; gap: 4px;
}

.uvfx-story-milestone-title {
  display: block;
  font-size: 13px; font-weight: 600;
  color: rgba(245,245,241,0.78); letter-spacing: -0.01em;
  transition: color 0.3s;
}

.uvfx-story-milestone:hover .uvfx-story-milestone-title {
  color: var(--ice);
}

.uvfx-story-milestone-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(245,245,241,0.36); line-height: 1.6; margin: 0;
  transition: color 0.3s;
}

.uvfx-story-milestone:hover .uvfx-story-milestone-desc {
  color: rgba(245,245,241,0.55);
}

/* ── CTA ── */
.uvfx-story-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(229,9,20,0.35);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(229,9,20,0.75);
  text-decoration: none; align-self: flex-start;
  transition:
    background 0.3s, border-color 0.3s, color 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.uvfx-story-cta svg { transition: transform 0.3s; }

.uvfx-story-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--ice);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.32);
}

.uvfx-story-cta:hover svg { transform: translateX(5px); }

/* ══════════════════════════════════════════════
   RIGHT COLUMN
══════════════════════════════════════════════ */
.uvfx-story-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;

  /* Scroll reveal */
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.uvfx-story-right.uvfx-story-in-view {
  opacity: 1; transform: translateX(0);
}

/* ── Frame Wrap ── */
.uvfx-story-frame-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

/* ── HUD Corner Brackets on image ── */
.uvfx-story-frame-bracket {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 4; pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease 0.8s;
}

.uvfx-story-right.uvfx-story-in-view .uvfx-story-frame-bracket {
  opacity: 1;
}

.uvfx-story-frame-bracket--tl { top: 12px; left: 12px; border-top: 2px solid rgba(229,9,20,0.6); border-left: 2px solid rgba(229,9,20,0.6); }
.uvfx-story-frame-bracket--tr { top: 12px; right: 12px; border-top: 2px solid rgba(229,9,20,0.6); border-right: 2px solid rgba(229,9,20,0.6); }
.uvfx-story-frame-bracket--bl { bottom: 52px; left: 12px; border-bottom: 2px solid rgba(229,9,20,0.6); border-left: 2px solid rgba(229,9,20,0.6); }
.uvfx-story-frame-bracket--br { bottom: 52px; right: 12px; border-bottom: 2px solid rgba(229,9,20,0.6); border-right: 2px solid rgba(229,9,20,0.6); }

/* ── Frame image ── */
.uvfx-story-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0e0e0e;
}

.uvfx-story-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.8s ease;
  filter: saturate(0.85) brightness(0.92);
}

.uvfx-story-frame-wrap:hover .uvfx-story-img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

/* Fallback placeholder when image is missing */
.uvfx-story-frame--placeholder .uvfx-story-frame-fallback {
  opacity: 1;
}

.uvfx-story-frame-fallback {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #100505 0%, #1e0606 30%, #0a0a18 60%, #150505 100%);
  opacity: 1;
  transition: opacity 0.3s;
  /* Film reel visual pattern */
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 38px,
      rgba(229,9,20,0.03) 38px, rgba(229,9,20,0.03) 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 38px,
      rgba(245,245,241,0.015) 38px, rgba(245,245,241,0.015) 40px
    ),
    linear-gradient(135deg, #100505 0%, #1e0606 30%, #0a0a18 60%, #150505 100%);
}

/* Centered placeholder label */
.uvfx-story-frame-fallback::after {
  content: 'UNTITLED VFX';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.25em;
  color: rgba(229,9,20,0.12);
}

/* ── Film strip holes — top edge ── */
.uvfx-story-filmstrip {
  position: absolute; top: 0; left: 0; right: 0;
  height: 20px; z-index: 3;
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(0,0,0,0.6);
  pointer-events: none;
}

.uvfx-story-filmstrip span {
  display: block;
  width: 10px; height: 8px;
  border-radius: 2px;
  background: rgba(245,245,241,0.06);
  border: 1px solid rgba(245,245,241,0.1);
}

/* ── Timecode overlay ── */
.uvfx-story-timecode {
  position: absolute; top: 28px; left: 16px;
  display: flex; align-items: center; gap: 6px;
  z-index: 4; pointer-events: none;
}

.uvfx-story-tc-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(229,9,20,0.55);
  background: rgba(0,0,0,0.5);
  padding: 2px 6px; border-radius: 3px;
}

.uvfx-story-tc-value {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(245,245,241,0.5);
  background: rgba(0,0,0,0.5);
  padding: 2px 8px; border-radius: 3px;
}

/* ── Bottom label bar ── */
.uvfx-story-frame-label {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(245,245,241,0.06);
}

.uvfx-story-frame-label-text {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,245,241,0.3);
}

.uvfx-story-frame-label-res {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(229,9,20,0.55);
}

/* ── Floating stat cards ── */
.uvfx-story-float-card {
  position: absolute;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(245,245,241,0.09);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  z-index: 5;

  opacity: 0; transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.uvfx-story-right.uvfx-story-in-view .uvfx-story-float-card--tl {
  opacity: 1; transform: scale(1);
  transition-delay: 0.5s;
}

.uvfx-story-right.uvfx-story-in-view .uvfx-story-float-card--br {
  opacity: 1; transform: scale(1);
  transition-delay: 0.7s;
}

.uvfx-story-float-card:hover {
  border-color: rgba(229,9,20,0.25);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

.uvfx-story-float-card--tl {
  top: -18px;
  left: -18px;
}

.uvfx-story-float-card--br {
  bottom: 60px; /* above label bar */
  right: -18px;
}

.uvfx-story-float-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; line-height: 1;
  color: var(--ice); letter-spacing: 0.03em;
}

.uvfx-story-float-plus {
  font-size: 18px;
  color: var(--red);
  margin-left: 1px;
}

.uvfx-story-float-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 8px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,245,241,0.3);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .uvfx-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .uvfx-story-right {
    opacity: 1; transform: none; /* already revealed from left reveal */
  }

  .uvfx-story-float-card--tl { top: -14px; left: -10px; }
  .uvfx-story-float-card--br { bottom: 56px; right: -10px; }
}

@media (max-width: 860px) {
  .uvfx-story { padding: 80px 0; }
  .uvfx-story-inner { padding-left: var(--uvfx-story-pad-x); gap: 40px; }
  .uvfx-story-spine { display: none; }
  .uvfx-story-heading { font-size: clamp(44px, 12vw, 72px); }
}

@media (max-width: 560px) {
  .uvfx-story-float-card { padding: 10px 12px; }
  .uvfx-story-float-num  { font-size: 22px; }
  .uvfx-story-float-card--tl { top: -10px; left: 8px; }
  .uvfx-story-float-card--br { bottom: 56px; right: 8px; }
  .uvfx-story-cta { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-story-left,
  .uvfx-story-right,
  .uvfx-story-float-card,
  .uvfx-story-frame-bracket,
  .uvfx-story-spine-track,
  .uvfx-story-eyebrow-pip {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .uvfx-story-img {
    transition: none !important;
  }
}

/* ============================================================
   UNTITLED VFX — What We Do / Capabilities
   File: uvfx-caps.css
   Prefix: uvfx-caps-*
   Aesthetic: Netflix-grid / Cinematic dark cards / Premium film studio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-caps-pad-x: clamp(24px, 6vw, 100px);
  --uvfx-caps-card-bg: #111111;
  --uvfx-caps-card-hover-bg: #171717;
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-caps {
  position: relative;
  width: 100%;
  background: var(--ink);
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.uvfx-caps::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.uvfx-caps::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.uvfx-caps-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.uvfx-caps-ambient {
  position: absolute; width: 650px; height: 650px; border-radius: 50%;
}

.uvfx-caps-ambient--tl {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 65%);
}

.uvfx-caps-ambient--br {
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.035) 0%, transparent 60%);
}

/* Dot grid */
.uvfx-caps-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,245,241,0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 15%, transparent 80%);
}

.uvfx-caps-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.55;
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.uvfx-caps-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.uvfx-caps-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.uvfx-caps-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.uvfx-caps-spine-track.uvfx-caps-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.uvfx-caps-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-caps-pad-x);
  padding-left: calc(var(--uvfx-caps-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 52px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.uvfx-caps-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.uvfx-caps-header.uvfx-caps-in-view { opacity: 1; transform: translateY(0); }

.uvfx-caps-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}

.uvfx-caps-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.uvfx-caps-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.uvfx-caps-heading-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.uvfx-caps-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.uvfx-caps-heading-line { display: block; }

.uvfx-caps-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.uvfx-caps-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38); line-height: 1.7;
  margin: 0; text-align: right; max-width: 260px;
}

/* ══════════════════════════════════════════════
   GRID — 3-col desktop, 2 tablet, 1 mobile
══════════════════════════════════════════════ */
.uvfx-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ══════════════════════════════════════════════
   CARD
══════════════════════════════════════════════ */
.uvfx-caps-card {
  position: relative;
  background: var(--uvfx-caps-card-bg);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  display: flex; flex-direction: column;

  /* Scroll reveal */
  opacity: 0; transform: translateY(22px) scale(0.99);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Stagger */
.uvfx-caps-card:nth-child(1) { transition-delay: 0.00s; }
.uvfx-caps-card:nth-child(2) { transition-delay: 0.07s; }
.uvfx-caps-card:nth-child(3) { transition-delay: 0.14s; }
.uvfx-caps-card:nth-child(4) { transition-delay: 0.05s; }
.uvfx-caps-card:nth-child(5) { transition-delay: 0.12s; }
.uvfx-caps-card:nth-child(6) { transition-delay: 0.19s; }
.uvfx-caps-card:nth-child(7) { transition-delay: 0.04s; }
.uvfx-caps-card:nth-child(8) { transition-delay: 0.11s; }
.uvfx-caps-card:nth-child(9) { transition-delay: 0.18s; }

.uvfx-caps-card.uvfx-caps-in-view {
  opacity: 1; transform: translateY(0) scale(1);
}

/* Featured card spans 2 columns */
.uvfx-caps-card--featured {
  grid-column: span 2;
}

/* ── Hover state ── */
.uvfx-caps-card:hover {
  background: var(--uvfx-caps-card-hover-bg);
  border-color: rgba(229,9,20,0.28);
  box-shadow:
    0 0 0 1px rgba(229,9,20,0.07) inset,
    0 24px 56px rgba(0,0,0,0.5);
  transform: translateY(-5px) scale(1.005) !important;
}

/* ── Radial mouse-follow glow ── */
.uvfx-caps-card-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  top: 0; left: 0;
  z-index: 0;
}

.uvfx-caps-card:hover .uvfx-caps-card-glow { opacity: 1; }

/* ── Card inner ── */
.uvfx-caps-card-inner {
  padding: 26px 22px 20px;
  display: flex; flex-direction: column; gap: 16px;
  flex: 1; position: relative; z-index: 1;
}

/* ── Top row ── */
.uvfx-caps-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
}

.uvfx-caps-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.7);
  flex-shrink: 0;
  transition:
    background 0.35s, border-color 0.35s, color 0.35s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.35s;
}

.uvfx-caps-card-icon svg { width: 20px; height: 20px; }

.uvfx-caps-card:hover .uvfx-caps-card-icon {
  background: rgba(229,9,20,0.18);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 0 20px rgba(229,9,20,0.22);
}

.uvfx-caps-card-index {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(245,245,241,0.15);
  transition: color 0.3s;
}

.uvfx-caps-card:hover .uvfx-caps-card-index {
  color: rgba(229,9,20,0.5);
}

/* ── Body ── */
.uvfx-caps-card-body {
  display: flex; flex-direction: column; gap: 8px;
}

.uvfx-caps-card-title {
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 600;
  color: rgba(245,245,241,0.82); margin: 0;
  line-height: 1.2; letter-spacing: -0.01em;
  transition: color 0.3s;
}

.uvfx-caps-card:hover .uvfx-caps-card-title { color: var(--ice); }

.uvfx-caps-card-desc {
  font-size: clamp(12.5px, 1.1vw, 13.5px); font-weight: 300;
  color: rgba(245,245,241,0.42); line-height: 1.72;
  margin: 0; transition: color 0.3s;
}

.uvfx-caps-card:hover .uvfx-caps-card-desc {
  color: rgba(245,245,241,0.62);
}

/* ── Tags ── */
.uvfx-caps-card-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(245,245,241,0.05);
  /* Cap height on standard cards — expands on hover */
  max-height: 78px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Expand on hover so all tags reveal */
.uvfx-caps-card:hover .uvfx-caps-card-tags { max-height: 220px; }

/* Featured cards always show everything */
.uvfx-caps-card--featured .uvfx-caps-card-tags { max-height: none; }

.uvfx-caps-card-tags li {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.08);
  background: rgba(245,245,241,0.03);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: rgba(245,245,241,0.3);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.uvfx-caps-card:hover .uvfx-caps-card-tags li {
  border-color: rgba(229,9,20,0.2);
  color: rgba(245,245,241,0.58);
  background: rgba(229,9,20,0.05);
}

/* Stagger tag reveal on hover */
.uvfx-caps-card-tags li:nth-child(1)  { transition-delay: 0.00s; }
.uvfx-caps-card-tags li:nth-child(2)  { transition-delay: 0.03s; }
.uvfx-caps-card-tags li:nth-child(3)  { transition-delay: 0.06s; }
.uvfx-caps-card-tags li:nth-child(4)  { transition-delay: 0.09s; }
.uvfx-caps-card-tags li:nth-child(5)  { transition-delay: 0.12s; }
.uvfx-caps-card-tags li:nth-child(6)  { transition-delay: 0.00s; }
.uvfx-caps-card-tags li:nth-child(7)  { transition-delay: 0.03s; }
.uvfx-caps-card-tags li:nth-child(8)  { transition-delay: 0.06s; }
.uvfx-caps-card-tags li:nth-child(9)  { transition-delay: 0.09s; }
.uvfx-caps-card-tags li:nth-child(10) { transition-delay: 0.12s; }
.uvfx-caps-card-tags li:nth-child(11) { transition-delay: 0.00s; }
.uvfx-caps-card-tags li:nth-child(12) { transition-delay: 0.03s; }

/* ── Bottom accent bar ── */
.uvfx-caps-card-bar {
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(229,9,20,0.15));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.34,1.2,0.64,1);
  position: relative; z-index: 1;
}

.uvfx-caps-card:hover .uvfx-caps-card-bar {
  transform: scaleX(1);
}

/* ══════════════════════════════════════════════
   BOTTOM STRIP
══════════════════════════════════════════════ */
.uvfx-caps-strip {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 26px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.uvfx-caps-strip.uvfx-caps-in-view { opacity: 1; transform: translateY(0); }

.uvfx-caps-strip-tags {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
}

.uvfx-caps-strip-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14px, 1.6vw, 18px); letter-spacing: 0.06em;
  color: rgba(245,245,241,0.45);
  transition: color 0.3s;
}

.uvfx-caps-strip-tag:hover { color: var(--ice); }

.uvfx-caps-strip-sep {
  color: rgba(229,9,20,0.35); font-size: 16px; line-height: 1;
}

.uvfx-caps-strip-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 8px;
  background: var(--red); border: 1px solid var(--red);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ice); text-decoration: none; flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.uvfx-caps-strip-cta svg { transition: transform 0.3s; }

.uvfx-caps-strip-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.uvfx-caps-strip-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .uvfx-caps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .uvfx-caps { padding: 80px 0; }
  .uvfx-caps-inner { padding-left: var(--uvfx-caps-pad-x); gap: 40px; }
  .uvfx-caps-spine { display: none; }
  .uvfx-caps-heading-row { flex-direction: column; align-items: flex-start; }
  .uvfx-caps-heading-sub { text-align: left; max-width: 100%; }

  /* 2 col tablet */
  .uvfx-caps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uvfx-caps-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  /* 1 col mobile */
  .uvfx-caps-grid { grid-template-columns: 1fr; }
  .uvfx-caps-card--featured { grid-column: auto; }

  .uvfx-caps-strip {
    flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 18px;
  }
  .uvfx-caps-strip-cta { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-caps-header,
  .uvfx-caps-card,
  .uvfx-caps-strip,
  .uvfx-caps-spine-track,
  .uvfx-caps-card-bar {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============================================================
   UNTITLED VFX — Our Creative Process
   File: uvfx-proc.css
   Prefix: uvfx-proc-*
   Aesthetic: Radar / Signal / Horizontal timeline / Premium dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-proc-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-proc {
  position: relative;
  width: 100%;
  background: #0c0c0c;
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.uvfx-proc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.uvfx-proc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.uvfx-proc-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.uvfx-proc-ambient {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
}

.uvfx-proc-ambient--tl {
  top: -250px; left: -250px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 60%);
}

.uvfx-proc-ambient--br {
  bottom: -250px; right: -250px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

.uvfx-proc-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.55;
}

/* ── Radar rings — decorative top-right ── */
.uvfx-proc-radar {
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  pointer-events: none;
}

.uvfx-proc-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: uvfx-proc-radar-pulse 5s ease-out infinite;
}

.uvfx-proc-radar-ring--1 { width: 160px; height: 160px; animation-delay: 0s; }
.uvfx-proc-radar-ring--2 { width: 300px; height: 300px; animation-delay: 1.2s; }
.uvfx-proc-radar-ring--3 { width: 440px; height: 440px; animation-delay: 2.4s; }

@keyframes uvfx-proc-radar-pulse {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.1); }
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.uvfx-proc-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.uvfx-proc-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.uvfx-proc-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.uvfx-proc-spine-track.uvfx-proc-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.uvfx-proc-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-proc-pad-x);
  padding-left: calc(var(--uvfx-proc-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 64px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.uvfx-proc-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.uvfx-proc-header.uvfx-proc-in-view { opacity: 1; transform: translateY(0); }

.uvfx-proc-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}

.uvfx-proc-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.uvfx-proc-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.uvfx-proc-heading-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.uvfx-proc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.uvfx-proc-heading-line { display: block; }

.uvfx-proc-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.uvfx-proc-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38); line-height: 1.7;
  margin: 0; text-align: right; max-width: 240px;
}

/* ══════════════════════════════════════════════
   RUNWAY — horizontal 4-step timeline
══════════════════════════════════════════════ */
.uvfx-proc-runway {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 80px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.uvfx-proc-runway.uvfx-proc-in-view { opacity: 1; transform: translateY(0); }

/* ── The red glowing track line ── */
.uvfx-proc-track {
  position: absolute;
  top: calc(80px + 7px);
  left: calc(100% / 10);   /* center of col 1 of 5 */
  right: calc(100% / 10);  /* center of col 5 of 5 */
  height: 2px;
  background: rgba(245,245,241,0.06);
  overflow: visible;
}

.uvfx-proc-track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--red) 0%, rgba(229,9,20,0.4) 70%, transparent 100%);
  box-shadow: 0 0 14px rgba(229,9,20,0.6), 0 0 36px rgba(229,9,20,0.2);
  border-radius: 2px;
  transition: width 2.2s cubic-bezier(0.16,1,0.3,1) 0.4s;
  position: relative;
}

/* Glowing leading dot on the fill */
.uvfx-proc-track-fill::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--glow), 0 0 28px rgba(229,9,20,0.4);
  opacity: 0;
  transition: opacity 0.3s ease 2.4s;
}

.uvfx-proc-runway.uvfx-proc-in-view .uvfx-proc-track-fill { width: 100%; }
.uvfx-proc-runway.uvfx-proc-in-view .uvfx-proc-track-fill::after { opacity: 1; }

/* ══════════════════════════════════════════════
   SINGLE STEP
══════════════════════════════════════════════ */
.uvfx-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

/* Stagger each step's card animation */
.uvfx-proc-step[data-uvfx-proc-step="1"] .uvfx-proc-card { transition-delay: 0.10s; }
.uvfx-proc-step[data-uvfx-proc-step="2"] .uvfx-proc-card { transition-delay: 0.22s; }
.uvfx-proc-step[data-uvfx-proc-step="3"] .uvfx-proc-card { transition-delay: 0.34s; }
.uvfx-proc-step[data-uvfx-proc-step="4"] .uvfx-proc-card { transition-delay: 0.46s; }
.uvfx-proc-step[data-uvfx-proc-step="5"] .uvfx-proc-card { transition-delay: 0.58s; }

/* ── Node on the track ── */
.uvfx-proc-node {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-bottom: 0;
  z-index: 3;
}

.uvfx-proc-node-inner {
  display: block;
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(229,9,20,0.25);
  border: 2px solid rgba(229,9,20,0.5);
  transition: background 0.35s, box-shadow 0.35s,
              transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.uvfx-proc-step:hover .uvfx-proc-node-inner {
  background: var(--red);
  box-shadow: 0 0 20px var(--glow), 0 0 40px rgba(229,9,20,0.3);
  transform: scale(1.6);
}

.uvfx-proc-node-ring {
  position: absolute;
  inset: -8px; border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.18);
  opacity: 0;
  transition: opacity 0.35s, transform 0.4s;
}

.uvfx-proc-step:hover .uvfx-proc-node-ring {
  opacity: 1; transform: scale(1.3);
}

/* ── Big number ── */
.uvfx-proc-step-num-wrap {
  position: absolute;
  /* floats ABOVE the node, centered on the column */
  top: 0;
  left: 50%; transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.uvfx-proc-step-bignum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: 0.04em;
  color: rgba(245,245,241,0.05);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  display: block;
  /* push it up so it sits above the track line */
  transform: translateY(-100%);
  padding-bottom: 8px;
  white-space: nowrap;
}

.uvfx-proc-step:hover .uvfx-proc-step-bignum {
  color: rgba(229,9,20,0.18);
  text-shadow: 0 0 40px rgba(229,9,20,0.25);
}

/* Active step number (JS sets .uvfx-proc-step--active) */
.uvfx-proc-step--active .uvfx-proc-step-bignum {
  color: rgba(229,9,20,0.22);
}

/* ── Step Card ── */
.uvfx-proc-card {
  background: #121212;
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 16px;
  padding: 22px 20px 18px;
  display: flex; flex-direction: column; gap: 12px;
  width: 100%; margin-top: 28px;
  cursor: default; position: relative; overflow: hidden;

  opacity: 0; transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}

.uvfx-proc-runway.uvfx-proc-in-view .uvfx-proc-card {
  opacity: 1; transform: translateY(0);
}

.uvfx-proc-step:hover .uvfx-proc-card {
  background: #171717;
  border-color: rgba(229,9,20,0.28);
  box-shadow:
    0 0 0 1px rgba(229,9,20,0.06) inset,
    0 20px 48px rgba(0,0,0,0.55);
}

/* Red left accent strip on hover */
.uvfx-proc-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), rgba(229,9,20,0.2));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.uvfx-proc-step:hover .uvfx-proc-card::before { transform: scaleY(1); }

/* ── Card header: icon + timecode ── */
.uvfx-proc-card-header {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}

.uvfx-proc-card-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.65); flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, color 0.35s,
              transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}

.uvfx-proc-card-icon svg { width: 15px; height: 15px; }

.uvfx-proc-step:hover .uvfx-proc-card-icon {
  background: rgba(229,9,20,0.18);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 0 16px rgba(229,9,20,0.22);
}

.uvfx-proc-card-tc {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(229,9,20,0.3);
  transition: color 0.3s;
}

.uvfx-proc-step:hover .uvfx-proc-card-tc { color: rgba(229,9,20,0.7); }

/* ── Card title ── */
.uvfx-proc-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 0.04em; line-height: 1;
  color: rgba(245,245,241,0.82); margin: 0;
  transition: color 0.3s;
}

.uvfx-proc-step:hover .uvfx-proc-card-title { color: var(--ice); }

/* ── Card description ── */
.uvfx-proc-card-desc {
  font-size: clamp(12px, 1.1vw, 13px); font-weight: 300;
  color: rgba(245,245,241,0.42); line-height: 1.7; margin: 0;
  transition: color 0.3s;
}

.uvfx-proc-step:hover .uvfx-proc-card-desc { color: rgba(245,245,241,0.62); }

/* ── Bullet items ── */
.uvfx-proc-card-items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 5px;
  border-top: 1px solid rgba(245,245,241,0.05);
  padding-top: 12px; margin-top: 2px;
}

.uvfx-proc-card-items li {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 400;
  color: rgba(245,245,241,0.32); line-height: 1.4;
  transition: color 0.3s;
}

.uvfx-proc-card-items li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(229,9,20,0.35); flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.uvfx-proc-step:hover .uvfx-proc-card-items li { color: rgba(245,245,241,0.58); }
.uvfx-proc-step:hover .uvfx-proc-card-items li::before {
  background: var(--red);
  box-shadow: 0 0 5px var(--glow);
}

/* ══════════════════════════════════════════════
   FOOTER CTA
══════════════════════════════════════════════ */
.uvfx-proc-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 28px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.uvfx-proc-footer.uvfx-proc-in-view { opacity: 1; transform: translateY(0); }

.uvfx-proc-footer-left {
  display: flex; flex-direction: column; gap: 4px;
}

.uvfx-proc-footer-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px); letter-spacing: 0.04em;
  color: var(--ice); line-height: 1;
}

.uvfx-proc-footer-sub {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38); margin: 0;
}

.uvfx-proc-footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 8px;
  background: var(--red); border: 1px solid var(--red);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ice); text-decoration: none; flex-shrink: 0;
  transition: background 0.3s,
              transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s;
}

.uvfx-proc-footer-cta svg { transition: transform 0.3s; }

.uvfx-proc-footer-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.uvfx-proc-footer-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .uvfx-proc-runway {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
    padding-top: 64px;
  }

  .uvfx-proc-track { display: none; }
  .uvfx-proc-node  { display: none; }

  .uvfx-proc-step-num-wrap {
    position: static;
    transform: none;
    align-self: flex-start;
    padding: 0 0 0 8px;
    margin-bottom: -8px;
  }

  .uvfx-proc-step-bignum {
    transform: none;
    padding-bottom: 0;
    font-size: clamp(48px, 8vw, 72px);
  }
}

@media (max-width: 860px) {
  .uvfx-proc { padding: 80px 0; }
  .uvfx-proc-inner { padding-left: var(--uvfx-proc-pad-x); gap: 44px; }
  .uvfx-proc-spine { display: none; }
  .uvfx-proc-heading-row { flex-direction: column; align-items: flex-start; }
  .uvfx-proc-heading-sub { text-align: left; max-width: 100%; }
  .uvfx-proc-runway { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

@media (max-width: 600px) {
  .uvfx-proc-runway {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .uvfx-proc-footer {
    flex-direction: column; align-items: flex-start;
    gap: 16px; padding: 22px 20px;
  }

  .uvfx-proc-footer-cta { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-proc-header,
  .uvfx-proc-runway,
  .uvfx-proc-card,
  .uvfx-proc-track-fill,
  .uvfx-proc-footer,
  .uvfx-proc-spine-track,
  .uvfx-proc-radar-ring {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
  }
}

/* ============================================================
   UNTITLED VFX — Studio Philosophy
   File: uvfx-phil.css
   Prefix: uvfx-phil-*
   Aesthetic: Cinematic manifesto / Full-bleed centered / Maximum impact
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-phil-pad-x: clamp(24px, 8vw, 140px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
   — Extra tall — let the words breathe
══════════════════════════════════════════════ */
.uvfx-phil {
  position: relative;
  width: 100%;
  background: #080808;
  padding: 160px 0 160px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.uvfx-phil::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.25) 50%, transparent);
  z-index: 1;
}

.uvfx-phil::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.25) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.uvfx-phil-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Film grain */
.uvfx-phil-grain {
  position: absolute; inset: -20%; width: 140%; height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4; mix-blend-mode: overlay;
  animation: uvfx-phil-grain-drift 9s steps(2) infinite;
}

@keyframes uvfx-phil-grain-drift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-1%,1%); }
  50%  { transform: translate(1%,-1%); }
  75%  { transform: translate(-1%,-1%); }
  100% { transform: translate(0,0); }
}

/* Dark radial vignette — draws focus to center */
.uvfx-phil-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 75% 80% at 50% 50%,
    transparent 30%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Scanlines */
.uvfx-phil-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  opacity: 0.5;
}

/* Horizontal rule lines — decorative bands */
.uvfx-phil-rule {
  position: absolute; left: 0; right: 0; height: 1px;
}

.uvfx-phil-rule--top {
  top: 80px;
  background: linear-gradient(to right, transparent 5%, rgba(245,245,241,0.04) 50%, transparent 95%);
}

.uvfx-phil-rule--bottom {
  bottom: 80px;
  background: linear-gradient(to right, transparent 5%, rgba(245,245,241,0.04) 50%, transparent 95%);
}

/* Corner brackets */
.uvfx-phil-bracket {
  position: absolute;
  width: 44px; height: 44px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.uvfx-phil-bracket.uvfx-phil-in-view { opacity: 1; }

.uvfx-phil-bracket--tl { top: 28px; left: 28px; border-top: 1px solid rgba(229,9,20,0.35); border-left: 1px solid rgba(229,9,20,0.35); }
.uvfx-phil-bracket--tr { top: 28px; right: 28px; border-top: 1px solid rgba(229,9,20,0.35); border-right: 1px solid rgba(229,9,20,0.35); }
.uvfx-phil-bracket--bl { bottom: 28px; left: 28px; border-bottom: 1px solid rgba(229,9,20,0.35); border-left: 1px solid rgba(229,9,20,0.35); }
.uvfx-phil-bracket--br { bottom: 28px; right: 28px; border-bottom: 1px solid rgba(229,9,20,0.35); border-right: 1px solid rgba(229,9,20,0.35); }

/* Spine */
.uvfx-phil-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 160px; bottom: 160px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.uvfx-phil-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.uvfx-phil-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.uvfx-phil-spine-track.uvfx-phil-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER — fully centered
══════════════════════════════════════════════ */
.uvfx-phil-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-phil-pad-x);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0; /* controlled per-element */
  text-align: center;
}

/* ══════════════════════════════════════════════
   EYEBROW
══════════════════════════════════════════════ */
.uvfx-phil-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 64px;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.uvfx-phil-eyebrow.uvfx-phil-in-view { opacity: 1; }

.uvfx-phil-eyebrow-line {
  display: block; flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.4));
}

.uvfx-phil-eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, rgba(229,9,20,0.4));
}

.uvfx-phil-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--glow);
  animation: uvfx-phil-dot-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes uvfx-phil-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--glow); transform: scale(1); }
  50%       { box-shadow: 0 0 16px var(--glow); transform: scale(1.35); }
}

.uvfx-phil-eyebrow-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(229,9,20,0.65); white-space: nowrap;
}

/* ══════════════════════════════════════════════
   STATEMENTS
══════════════════════════════════════════════ */
.uvfx-phil-statement {
  display: flex; flex-direction: column;
  gap: 4px; align-items: center;
}

.uvfx-phil-statement--1 { margin-bottom: 0; }
.uvfx-phil-statement--2 { margin-top: 0; }

/* Each line */
.uvfx-phil-line {
  display: flex; align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.22em;
  margin: 0;
  line-height: 1;
}

/* Slight indent for "every transition" lines */
.uvfx-phil-line--indent {
  padding-left: clamp(20px, 4vw, 80px);
}

/* ── Individual words ── */
.uvfx-phil-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7.5vw, 108px);
  letter-spacing: 0.02em;
  color: var(--ice);
  display: inline-block;

  /* Reveal animation — triggered per word */
  opacity: 0;
  transform: translateY(60%) skewY(3deg);
  transition:
    opacity 0.75s cubic-bezier(0.16,1,0.3,1),
    transform 0.75s cubic-bezier(0.16,1,0.3,1),
    color 0.4s ease,
    text-shadow 0.4s ease;
}

.uvfx-phil-word.uvfx-phil-word-visible {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}

/* Word variants */
.uvfx-phil-word--accent {
  color: var(--red);
  text-shadow: 0 0 80px rgba(229,9,20,0.5);
}

.uvfx-phil-word--dim {
  color: rgba(245,245,241,0.35);
}

.uvfx-phil-word--outline {
  -webkit-text-stroke: 2px rgba(245,245,241,0.6);
  color: transparent;
}

/* The word "felt" — largest, most dramatic */
.uvfx-phil-word--felt {
  color: var(--red);
  text-shadow:
    0 0 80px rgba(229,9,20,0.6),
    0 0 160px rgba(229,9,20,0.25);
  font-size: clamp(60px, 12vw, 160px);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════════ */
.uvfx-phil-divider {
  display: flex; align-items: center; gap: 20px;
  width: 100%; max-width: 360px;
  margin: 56px 0;
  opacity: 0;
  transition: opacity 0.7s ease 0.3s;
}

.uvfx-phil-divider.uvfx-phil-in-view { opacity: 1; }

.uvfx-phil-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.25));
}

.uvfx-phil-divider-line:last-child {
  background: linear-gradient(to left, transparent, rgba(229,9,20,0.25));
}

.uvfx-phil-divider-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.3);
  background: rgba(229,9,20,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.6); flex-shrink: 0;
  box-shadow: 0 0 16px rgba(229,9,20,0.12);
  animation: uvfx-phil-icon-pulse 3s ease-in-out infinite;
}

@keyframes uvfx-phil-icon-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(229,9,20,0.12); }
  50%       { box-shadow: 0 0 24px rgba(229,9,20,0.28); }
}

.uvfx-phil-divider-icon svg { width: 12px; height: 12px; margin-left: 2px; }

/* ══════════════════════════════════════════════
   SIGNATURE
══════════════════════════════════════════════ */
.uvfx-phil-sig {
  display: flex; align-items: center; gap: 16px;
  margin-top: 72px;
  opacity: 0;
  transition: opacity 0.7s ease 0.5s;
}

.uvfx-phil-sig.uvfx-phil-in-view { opacity: 1; }

.uvfx-phil-sig-line {
  display: block; width: 48px; height: 1px;
  background: rgba(245,245,241,0.15);
}

.uvfx-phil-sig-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(245,245,241,0.25);
  white-space: nowrap;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .uvfx-phil { padding: 120px 0; }
  .uvfx-phil-word { font-size: clamp(36px, 10vw, 72px); }
  .uvfx-phil-word--felt { font-size: clamp(52px, 15vw, 100px); }
  .uvfx-phil-eyebrow { margin-bottom: 48px; }
  .uvfx-phil-divider { margin: 40px 0; }
  .uvfx-phil-sig { margin-top: 52px; }
  .uvfx-phil-spine { display: none; }
}

@media (max-width: 560px) {
  .uvfx-phil { padding: 100px 0; }
  .uvfx-phil-word { font-size: clamp(32px, 12vw, 60px); }
  .uvfx-phil-word--felt { font-size: clamp(48px, 18vw, 80px); }
  .uvfx-phil-bracket { width: 28px; height: 28px; }
  .uvfx-phil-line--indent { padding-left: 12px; }
  .uvfx-phil-divider { max-width: 260px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-phil-word,
  .uvfx-phil-eyebrow,
  .uvfx-phil-divider,
  .uvfx-phil-sig,
  .uvfx-phil-bracket,
  .uvfx-phil-spine-track,
  .uvfx-phil-grain,
  .uvfx-phil-eyebrow-dot,
  .uvfx-phil-divider-icon {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .uvfx-phil-word {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   UNTITLED VFX — Our Team (Redesigned)
   File: uvfx-team.css
   Prefix: uvfx-team-*
   Aesthetic: Founder hero spotlight + editorial department rows
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-team-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-team {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  padding: 120px 0 130px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.uvfx-team::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.uvfx-team::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.uvfx-team-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.uvfx-team-ambient {
  position: absolute; width: 900px; height: 900px; border-radius: 50%;
}
.uvfx-team-ambient--tl {
  top: -350px; left: -350px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 60%);
}
.uvfx-team-ambient--br {
  bottom: -350px; right: -350px;
  background: radial-gradient(circle, rgba(229,9,20,0.035) 0%, transparent 60%);
}

.uvfx-team-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.5;
}

/* Subtle vertical grid lines — editorial feel */
.uvfx-team-grid-lines {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(245,245,241,0.02) 0px, rgba(245,245,241,0.02) 1px,
      transparent 1px, transparent 120px
    );
}

.uvfx-team-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 130px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px; z-index: 2;
}
.uvfx-team-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.uvfx-team-spine-track {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}
.uvfx-team-spine-track.uvfx-team-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.uvfx-team-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-team-pad-x);
  padding-left: calc(var(--uvfx-team-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 80px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.uvfx-team-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.uvfx-team-header.uvfx-team-in-view { opacity: 1; transform: translateY(0); }

.uvfx-team-eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.uvfx-team-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}
.uvfx-team-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}
.uvfx-team-heading-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.uvfx-team-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}
.uvfx-team-heading-line { display: block; }
.uvfx-team-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}
.uvfx-team-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px); font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38); line-height: 1.8;
  margin: 0; text-align: right; max-width: 280px;
}

/* ══════════════════════════════════════════════
   FOUNDER HERO
══════════════════════════════════════════════ */
.uvfx-team-founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 56px;
  background: #111111;
  border: 1px solid rgba(245,245,241,0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;

  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.uvfx-team-founder.uvfx-team-in-view { opacity: 1; transform: translateY(0); }

/* Red top accent bar */
.uvfx-team-founder::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, transparent, var(--red) 40%, rgba(229,9,20,0.3) 70%, transparent);
  box-shadow: 0 0 24px rgba(229,9,20,0.4);
}

/* Background diagonal slash */
.uvfx-team-founder::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,9,20,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Founder visual side ── */
.uvfx-team-founder-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.uvfx-team-founder-avatar {
  position: relative;
  width: 180px; height: 180px;
}

.uvfx-team-founder-avatar-bg {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(229,9,20,0.3) 0%, transparent 55%),
    linear-gradient(145deg, #1e0a0a 0%, #111 50%, #1a0808 100%);
}

.uvfx-team-founder-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px; letter-spacing: 0.06em;
  color: rgba(245,245,241,0.8);
  text-shadow: 0 0 40px rgba(229,9,20,0.35);
  z-index: 2;
}

/* Animated pulsing rings */
.uvfx-team-founder-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: uvfx-team-ring-pulse 4s ease-out infinite;
}
.uvfx-team-founder-ring--1 { width: 200px; height: 200px; animation-delay: 0s; }
.uvfx-team-founder-ring--2 { width: 240px; height: 240px; animation-delay: 1.2s; border-color: rgba(229,9,20,0.08); }
.uvfx-team-founder-ring--3 { width: 280px; height: 280px; animation-delay: 2.4s; border-color: rgba(229,9,20,0.04); }

@keyframes uvfx-team-ring-pulse {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
}

.uvfx-team-founder-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.12) 0%, transparent 65%);
  animation: uvfx-team-glow-breathe 3s ease-in-out infinite;
}

@keyframes uvfx-team-glow-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Floating founder badge */
.uvfx-team-founder-badge {
  position: absolute;
  top: 10px; right: -10px;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.35);
  backdrop-filter: blur(8px);
}
.uvfx-team-founder-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--glow);
  animation: uvfx-team-dot-pulse 2s ease-in-out infinite;
}
@keyframes uvfx-team-dot-pulse {
  0%, 100% { box-shadow: 0 0 5px var(--glow); }
  50%       { box-shadow: 0 0 14px var(--glow); }
}
.uvfx-team-founder-badge-text {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(229,9,20,0.8);
}

/* Year tag */
.uvfx-team-founder-since {
  position: absolute;
  bottom: 5px; left: -8px;
  display: flex; flex-direction: column; align-items: center;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(245,245,241,0.08);
  border-radius: 10px; padding: 8px 14px;
  backdrop-filter: blur(8px);
}
.uvfx-team-founder-since-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,245,241,0.3);
}
.uvfx-team-founder-since-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.06em;
  color: var(--ice); line-height: 1;
}

/* ── Founder content side ── */
.uvfx-team-founder-content {
  display: flex; flex-direction: column; gap: 24px;
}

.uvfx-team-founder-meta {
  display: flex; flex-direction: column; gap: 6px;
}

.uvfx-team-founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: 0.03em; line-height: 1;
  color: var(--ice); margin: 0;
}

.uvfx-team-founder-role {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(229,9,20,0.7);
}

.uvfx-team-founder-bio {
  display: flex; flex-direction: column; gap: 12px;
  border-left: 2px solid rgba(229,9,20,0.2);
  padding-left: 20px;
}

.uvfx-team-founder-bio p {
  font-size: clamp(13px, 1.2vw, 14.5px); font-weight: 300;
  color: rgba(245,245,241,0.52); line-height: 1.8; margin: 0;
}

.uvfx-team-founder-bio em {
  color: rgba(229,9,20,0.75); font-style: italic;
}

.uvfx-team-founder-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.uvfx-team-founder-tags span {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.08);
  background: rgba(245,245,241,0.03);
  color: rgba(245,245,241,0.4);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.uvfx-team-founder:hover .uvfx-team-founder-tags span {
  border-color: rgba(229,9,20,0.2);
  color: rgba(245,245,241,0.62);
  background: rgba(229,9,20,0.05);
}

/* ══════════════════════════════════════════════
   DEPARTMENTS WRAPPER
══════════════════════════════════════════════ */
.uvfx-team-departments {
  display: flex; flex-direction: column; gap: 48px;
}

/* ══════════════════════════════════════════════
   SINGLE DEPARTMENT
══════════════════════════════════════════════ */
.uvfx-team-dept {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.uvfx-team-dept.uvfx-team-in-view { opacity: 1; transform: translateY(0); }

/* Department label row */
.uvfx-team-dept-label {
  display: flex; align-items: center; gap: 16px;
}

.uvfx-team-dept-line {
  display: block; width: 24px; height: 1px;
  background: var(--red); flex-shrink: 0; opacity: 0.7;
}

.uvfx-team-dept-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.1em;
  color: rgba(245,245,241,0.6);
}

.uvfx-team-dept-count {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(229,9,20,0.4);
  margin-left: auto;
}

/* Department cards — horizontal flow */
.uvfx-team-dept-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

/* ══════════════════════════════════════════════
   MEMBER CARD
══════════════════════════════════════════════ */
.uvfx-team-member {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: #111111;
  border: 1px solid rgba(245,245,241,0.06);
  border-radius: 14px;
  cursor: default; position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.34,1.3,0.64,1),
    box-shadow 0.35s;
}

.uvfx-team-member::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.uvfx-team-member:hover {
  background: #161616;
  border-color: rgba(229,9,20,0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), -4px 0 20px rgba(229,9,20,0.06);
}

.uvfx-team-member:hover::before { transform: scaleY(1); }

/* Avatar */
.uvfx-team-member-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  flex-shrink: 0; position: relative;
  background:
    radial-gradient(circle at 40% 35%, rgba(229,9,20,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #1a1010 0%, #0e0e0e 60%, #1a0a0a 100%);
  border: 1px solid rgba(229,9,20,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.uvfx-team-member-avatar span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 0.08em;
  color: rgba(245,245,241,0.7);
  z-index: 1; position: relative;
  transition: color 0.3s;
}

.uvfx-team-member-avatar-glow {
  position: absolute; inset: -6px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.12) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.3s;
}

.uvfx-team-member:hover .uvfx-team-member-avatar {
  border-color: rgba(229,9,20,0.5);
  box-shadow: 0 0 16px rgba(229,9,20,0.15);
}

.uvfx-team-member:hover .uvfx-team-member-avatar span {
  color: var(--ice);
}

.uvfx-team-member:hover .uvfx-team-member-avatar-glow { opacity: 1; }

/* Info */
.uvfx-team-member-info {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}

.uvfx-team-member-name {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.1vw, 14px);
  font-weight: 600; color: rgba(245,245,241,0.82);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.3s;
}

.uvfx-team-member:hover .uvfx-team-member-name { color: var(--ice); }

.uvfx-team-member-role {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(229,9,20,0.45);
  line-height: 1.4;
  transition: color 0.3s;
}

.uvfx-team-member:hover .uvfx-team-member-role { color: rgba(229,9,20,0.75); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .uvfx-team-founder {
    grid-template-columns: 200px 1fr;
    gap: 40px; padding: 36px 40px;
  }
  .uvfx-team-founder-avatar { width: 140px; height: 140px; }
  .uvfx-team-founder-initials { font-size: 44px; }
  .uvfx-team-founder-ring--1 { width: 160px; height: 160px; }
  .uvfx-team-founder-ring--2 { width: 195px; height: 195px; }
  .uvfx-team-founder-ring--3 { width: 230px; height: 230px; }
}

@media (max-width: 860px) {
  .uvfx-team { padding: 80px 0; }
  .uvfx-team-inner { padding-left: var(--uvfx-team-pad-x); gap: 56px; }
  .uvfx-team-spine { display: none; }
  .uvfx-team-heading-row { flex-direction: column; align-items: flex-start; }
  .uvfx-team-heading-sub { text-align: left; max-width: 100%; }

  .uvfx-team-founder {
    grid-template-columns: 1fr;
    gap: 32px; padding: 32px 28px;
    text-align: center;
  }
  .uvfx-team-founder-visual { justify-content: center; }
  .uvfx-team-founder-bio { border-left: none; padding-left: 0; border-top: 1px solid rgba(229,9,20,0.15); padding-top: 16px; }
  .uvfx-team-founder-tags { justify-content: center; }
  .uvfx-team-founder-badge { right: calc(50% - 90px); }
  .uvfx-team-founder-since { left: calc(50% - 90px); }
}

@media (max-width: 600px) {
  .uvfx-team-dept-cards { grid-template-columns: 1fr; }
  .uvfx-team-founder { padding: 28px 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-team-header,
  .uvfx-team-founder,
  .uvfx-team-dept,
  .uvfx-team-spine-track,
  .uvfx-team-founder-ring,
  .uvfx-team-founder-glow,
  .uvfx-team-founder-badge-dot {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   UNTITLED VFX — Studio Culture
   File: uvfx-culture.css
   Prefix: uvfx-culture-*
   Aesthetic: 2026 dark premium / editorial two-column / mosaic tiles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-culture-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-culture {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  padding: 120px 0 120px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.uvfx-culture::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.28) 50%, transparent);
  z-index: 1;
}

.uvfx-culture::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.uvfx-culture-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.uvfx-culture-ambient {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
}
.uvfx-culture-ambient--l {
  top: -200px; left: -300px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 60%);
}
.uvfx-culture-ambient--r {
  bottom: -200px; right: -300px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

.uvfx-culture-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.5;
}

/* Film grain texture */
.uvfx-culture-noise {
  position: absolute; inset: -20%; width: 140%; height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.35; mix-blend-mode: overlay;
  animation: uvfx-culture-grain 8s steps(2) infinite;
}

@keyframes uvfx-culture-grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, 1%); }
  50%  { transform: translate(1%, -1%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* Spine */
.uvfx-culture-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 120px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}
.uvfx-culture-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.uvfx-culture-spine-track {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}
.uvfx-culture-spine-track.uvfx-culture-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.uvfx-culture-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-culture-pad-x);
  padding-left: calc(var(--uvfx-culture-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 72px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.uvfx-culture-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.uvfx-culture-header.uvfx-culture-in-view { opacity: 1; transform: translateY(0); }

.uvfx-culture-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}
.uvfx-culture-eyebrow-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 10px var(--glow);
  animation: uvfx-culture-pip 2.5s ease-in-out infinite;
}
@keyframes uvfx-culture-pip {
  0%, 100% { box-shadow: 0 0 6px var(--glow); transform: scale(1); }
  50%       { box-shadow: 0 0 18px var(--glow); transform: scale(1.4); }
}
.uvfx-culture-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.uvfx-culture-heading-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.uvfx-culture-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}
.uvfx-culture-heading-line { display: block; }
.uvfx-culture-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}
.uvfx-culture-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px); font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38); line-height: 1.8;
  margin: 0; text-align: right; max-width: 240px;
}

/* ══════════════════════════════════════════════
   BODY — two-column
══════════════════════════════════════════════ */
.uvfx-culture-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════════════
   LEFT COLUMN
══════════════════════════════════════════════ */
.uvfx-culture-left {
  display: flex; flex-direction: column; gap: 28px;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.uvfx-culture-left.uvfx-culture-in-view { opacity: 1; transform: translateX(0); }

.uvfx-culture-manifesto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing: 0.03em; line-height: 1.1;
  color: rgba(245,245,241,0.85); margin: 0;
}

.uvfx-culture-desc {
  font-size: clamp(13px, 1.2vw, 14.5px); font-weight: 300;
  color: rgba(245,245,241,0.48); line-height: 1.85; margin: 0;
  border-left: 2px solid rgba(229,9,20,0.2);
  padding-left: 18px;
}
.uvfx-culture-desc em { color: rgba(229,9,20,0.75); font-style: italic; }

/* ── Pillars ── */
.uvfx-culture-pillars {
  display: flex; flex-direction: column; gap: 0;
}

.uvfx-culture-pillar {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,245,241,0.05);
  position: relative; cursor: default;
  transition: padding-left 0.35s ease;
}

.uvfx-culture-pillar:first-child {
  border-top: 1px solid rgba(245,245,241,0.05);
}

.uvfx-culture-pillar:hover { padding-left: 8px; }

/* Red left bar sweep */
.uvfx-culture-pillar-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}
.uvfx-culture-pillar:hover .uvfx-culture-pillar-bar { transform: scaleY(1); }

/* Icon box */
.uvfx-culture-pillar-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.6); flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s,
              transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.uvfx-culture-pillar-icon svg { width: 16px; height: 16px; }

.uvfx-culture-pillar:hover .uvfx-culture-pillar-icon {
  background: rgba(229,9,20,0.16);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 0 14px rgba(229,9,20,0.2);
}

/* Pillar text */
.uvfx-culture-pillar-body {
  display: flex; flex-direction: column; gap: 3px;
}
.uvfx-culture-pillar-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px); font-weight: 600;
  color: rgba(245,245,241,0.8); letter-spacing: -0.01em;
  transition: color 0.3s;
}
.uvfx-culture-pillar:hover .uvfx-culture-pillar-title { color: var(--ice); }

.uvfx-culture-pillar-desc {
  font-size: 11.5px; font-weight: 300;
  color: rgba(245,245,241,0.35); line-height: 1.5;
  transition: color 0.3s;
}
.uvfx-culture-pillar:hover .uvfx-culture-pillar-desc { color: rgba(245,245,241,0.58); }

/* ══════════════════════════════════════════════
   RIGHT COLUMN
══════════════════════════════════════════════ */
.uvfx-culture-right {
  display: flex; flex-direction: column; gap: 24px;
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.75s ease 0.1s, transform 0.75s ease 0.1s;
}
.uvfx-culture-right.uvfx-culture-in-view { opacity: 1; transform: translateX(0); }

/* ── Discipline list — replaces mosaic grid ── */
.uvfx-culture-mosaic {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 18px;
  overflow: hidden;
  background: #111111;
}

/* Base tile — now a horizontal row */
.uvfx-culture-tile {
  position: relative; overflow: hidden;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,245,241,0.06);
  border-radius: 0;
  padding: 20px 28px;
  display: flex; flex-direction: row;
  align-items: center; gap: 18px;
  cursor: default;
  transition:
    background 0.3s,
    padding-left 0.35s ease,
    box-shadow 0.3s;
}

.uvfx-culture-tile:last-child { border-bottom: none; }

.uvfx-culture-tile:hover {
  background: rgba(229,9,20,0.04);
  padding-left: 36px;
  box-shadow: none;
  transform: none;
}

/* Red left accent sweep */
.uvfx-culture-tile::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  box-shadow: 0 0 10px var(--glow);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}
.uvfx-culture-tile:hover::before { transform: scaleY(1); }

/* Remove featured/wide modifiers — all rows equal */
.uvfx-culture-tile--featured { padding: 20px 28px; }
.uvfx-culture-tile--featured:hover { padding-left: 36px; }
.uvfx-culture-tile--wide { grid-column: unset; }

/* Row number — auto-counted */
.uvfx-culture-tile-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(229,9,20,0.35);
  flex-shrink: 0; width: 24px;
  transition: color 0.3s;
}
.uvfx-culture-tile:hover .uvfx-culture-tile-num { color: rgba(229,9,20,0.7); }

/* Tile icon */
.uvfx-culture-tile-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.6); flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s,
              transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.uvfx-culture-tile-icon svg { width: 15px; height: 15px; }

/* Override featured icon size — same as others now */
.uvfx-culture-tile--featured .uvfx-culture-tile-icon {
  width: 38px; height: 38px; border-radius: 10px;
}
.uvfx-culture-tile--featured .uvfx-culture-tile-icon svg { width: 15px; height: 15px; }

.uvfx-culture-tile:hover .uvfx-culture-tile-icon {
  background: rgba(229,9,20,0.16);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 0 14px rgba(229,9,20,0.2);
}

/* Tile name */
.uvfx-culture-tile-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: 0.07em;
  color: rgba(245,245,241,0.65);
  line-height: 1; flex: 1;
  transition: color 0.3s;
}
.uvfx-culture-tile--featured .uvfx-culture-tile-name { font-size: clamp(17px, 1.7vw, 21px); }
.uvfx-culture-tile:hover .uvfx-culture-tile-name { color: var(--ice); }

/* Arrow indicator — appears on hover */
.uvfx-culture-tile-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  color: rgba(229,9,20,0.4);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.34,1.4,0.64,1), color 0.3s;
}
.uvfx-culture-tile-arrow svg { width: 14px; height: 14px; }
.uvfx-culture-tile:hover .uvfx-culture-tile-arrow {
  opacity: 1; transform: translateX(0);
  color: rgba(229,9,20,0.8);
}

/* Mouse-follow radial glow */
.uvfx-culture-tile-glow {
  position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.08) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  top: 0; left: 0; z-index: 0;
}
.uvfx-culture-tile:hover .uvfx-culture-tile-glow { opacity: 1; }

/* ── Quote block ── */
.uvfx-culture-quote {
  position: relative;
  padding: 24px 28px;
  background: rgba(229,9,20,0.04);
  border: 1px solid rgba(229,9,20,0.12);
  border-radius: 14px;
  display: flex; align-items: flex-start; gap: 12px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.uvfx-culture-quote.uvfx-culture-in-view { opacity: 1; transform: translateY(0); }

.uvfx-culture-quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; line-height: 0.7;
  color: rgba(229,9,20,0.25); flex-shrink: 0;
  user-select: none;
}
.uvfx-culture-quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.04em; line-height: 1.2;
  color: rgba(245,245,241,0.65); margin: 4px 0 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .uvfx-culture-body { grid-template-columns: 1fr; gap: 48px; }
  .uvfx-culture-right { transform: translateX(0); }
}

@media (max-width: 860px) {
  .uvfx-culture { padding: 80px 0; }
  .uvfx-culture-inner { padding-left: var(--uvfx-culture-pad-x); gap: 48px; }
  .uvfx-culture-spine { display: none; }
  .uvfx-culture-heading-row { flex-direction: column; align-items: flex-start; }
  .uvfx-culture-heading-sub { text-align: left; max-width: 100%; }
}

@media (max-width: 560px) {
  .uvfx-culture-mosaic { grid-template-columns: 1fr; }
  .uvfx-culture-tile--featured { grid-row: span 1; }
  .uvfx-culture-tile--wide { grid-column: span 1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-culture-header,
  .uvfx-culture-left,
  .uvfx-culture-right,
  .uvfx-culture-quote,
  .uvfx-culture-spine-track,
  .uvfx-culture-noise,
  .uvfx-culture-eyebrow-pip {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   UNTITLED VFX — Studio Stats
   File: uvfx-stats.css
   Prefix: uvfx-stats-sec-*
   Aesthetic: Cinematic dark / Signal / Premium film studio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-stats-sec-pad-x: clamp(24px, 6vw, 100px);
  --uvfx-stats-sec-card-bg: #111111;
  --uvfx-stats-sec-card-hover-bg: #181818;
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-stats-sec {
  position: relative;
  width: 100%;
  background: #0b0b0b;
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* Top rule — red tint (matches hero/story pattern) */
.uvfx-stats-sec::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

/* Bottom rule — ice subtle */
.uvfx-stats-sec::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND LAYERS
══════════════════════════════════════════════ */
.uvfx-stats-sec-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.uvfx-stats-sec-ambient {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
}

.uvfx-stats-sec-ambient--left {
  bottom: -220px; left: -220px;
  background: radial-gradient(circle, rgba(229,9,20,0.055) 0%, transparent 62%);
}

.uvfx-stats-sec-ambient--right {
  top: -180px; right: -180px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

/* Subtle dot grid */
.uvfx-stats-sec-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,245,241,0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.7;
}

/* Scanlines */
.uvfx-stats-sec-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.55;
}

/* Film strip perforations — top edge */
.uvfx-stats-sec-filmstrip {
  position: absolute; top: 0; left: 0; right: 0;
  height: 20px; z-index: 2;
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}

.uvfx-stats-sec-filmstrip span {
  display: block;
  width: 10px; height: 8px;
  border-radius: 2px;
  background: rgba(245,245,241,0.05);
  border: 1px solid rgba(245,245,241,0.08);
}

/* ── Corner Brackets ── */
.uvfx-stats-sec-bracket {
  position: absolute;
  width: 36px; height: 36px;
  pointer-events: none;
  opacity: 0;
  animation: uvfx-stats-sec-bracket-in 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
  z-index: 3;
}

.uvfx-stats-sec-bracket--tl { top: 28px; left: 28px; border-top: 2px solid rgba(229,9,20,0.4); border-left: 2px solid rgba(229,9,20,0.4);   animation-delay: 0.9s; }
.uvfx-stats-sec-bracket--tr { top: 28px; right: 28px; border-top: 2px solid rgba(229,9,20,0.4); border-right: 2px solid rgba(229,9,20,0.4);  animation-delay: 1.0s; }
.uvfx-stats-sec-bracket--bl { bottom: 28px; left: 28px; border-bottom: 2px solid rgba(229,9,20,0.4); border-left: 2px solid rgba(229,9,20,0.4);  animation-delay: 1.1s; }
.uvfx-stats-sec-bracket--br { bottom: 28px; right: 28px; border-bottom: 2px solid rgba(229,9,20,0.4); border-right: 2px solid rgba(229,9,20,0.4); animation-delay: 1.2s; }

@keyframes uvfx-stats-sec-bracket-in {
  from { opacity: 0; transform: scale(1.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.uvfx-stats-sec-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.uvfx-stats-sec-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.uvfx-stats-sec-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.uvfx-stats-sec-spine-track.uvfx-stats-sec-in-view {
  transform: scaleY(1);
}

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.uvfx-stats-sec-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-stats-sec-pad-x);
  padding-left: calc(var(--uvfx-stats-sec-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 56px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.uvfx-stats-sec-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.uvfx-stats-sec-header.uvfx-stats-sec-in-view {
  opacity: 1; transform: translateY(0);
}

.uvfx-stats-sec-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}

.uvfx-stats-sec-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.uvfx-stats-sec-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
}

.uvfx-stats-sec-heading-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.uvfx-stats-sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.uvfx-stats-sec-heading-line { display: block; }

.uvfx-stats-sec-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.uvfx-stats-sec-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.38); line-height: 1.7;
  margin: 0; text-align: right; max-width: 240px;
}

/* ══════════════════════════════════════════════
   GRID WRAP + SIGNAL TRACK
══════════════════════════════════════════════ */
.uvfx-stats-sec-grid-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 0;
}

/* Horizontal signal track running across top of cards */
.uvfx-stats-sec-track {
  position: absolute;
  top: -20px; left: calc(100% / 8); right: calc(100% / 8);
  height: 2px;
  background: rgba(245,245,241,0.05);
  z-index: 0;
  pointer-events: none;
}

.uvfx-stats-sec-track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--red) 0%, rgba(229,9,20,0.35) 70%, transparent 100%);
  box-shadow: 0 0 14px rgba(229,9,20,0.55), 0 0 32px rgba(229,9,20,0.2);
  border-radius: 2px;
  transition: width 2s cubic-bezier(0.16,1,0.3,1) 0.5s;
  position: relative;
}

/* Glowing leading dot */
.uvfx-stats-sec-track-fill::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--glow), 0 0 26px rgba(229,9,20,0.4);
  opacity: 0;
  transition: opacity 0.3s ease 2.3s;
}

.uvfx-stats-sec-grid-wrap.uvfx-stats-sec-in-view .uvfx-stats-sec-track-fill {
  width: 100%;
}
.uvfx-stats-sec-grid-wrap.uvfx-stats-sec-in-view .uvfx-stats-sec-track-fill::after {
  opacity: 1;
}

/* ══════════════════════════════════════════════
   CARD
══════════════════════════════════════════════ */
.uvfx-stats-sec-card {
  position: relative;
  background: var(--uvfx-stats-sec-card-bg);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 18px;
  overflow: hidden;
  cursor: default;
  display: flex; flex-direction: column;

  /* Entrance */
  opacity: 0; transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}

/* Entrance stagger */
.uvfx-stats-sec-card:nth-child(1) { transition-delay: 0.08s; }
.uvfx-stats-sec-card:nth-child(2) { transition-delay: 0.18s; }
.uvfx-stats-sec-card:nth-child(3) { transition-delay: 0.28s; }
.uvfx-stats-sec-card:nth-child(4) { transition-delay: 0.38s; }

.uvfx-stats-sec-card.uvfx-stats-sec-in-view {
  opacity: 1; transform: translateY(0) scale(1);
}

/* Hover — lift + red border */
.uvfx-stats-sec-card:hover {
  background: var(--uvfx-stats-sec-card-hover-bg);
  border-color: rgba(229,9,20,0.35);
  box-shadow:
    0 0 0 1px rgba(229,9,20,0.07) inset,
    0 0 40px rgba(229,9,20,0.1),
    0 28px 60px rgba(0,0,0,0.55);
  transform: translateY(-7px) scale(1.01) !important;
}

/* Radial mouse-follow glow */
.uvfx-stats-sec-card-bg-glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.09) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  top: 0; left: 0; z-index: 0;
}

.uvfx-stats-sec-card:hover .uvfx-stats-sec-card-bg-glow { opacity: 1; }

/* ── Card inner ── */
.uvfx-stats-sec-card-inner {
  padding: 28px 24px 0;
  display: flex; flex-direction: column; gap: 0;
  flex: 1; position: relative; z-index: 1;
}

/* ── Top row: icon + index ── */
.uvfx-stats-sec-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.uvfx-stats-sec-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.65); flex-shrink: 0;
  transition:
    background 0.35s, border-color 0.35s, color 0.35s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}

.uvfx-stats-sec-card-icon svg { width: 18px; height: 18px; }

.uvfx-stats-sec-card:hover .uvfx-stats-sec-card-icon {
  background: rgba(229,9,20,0.18);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 0 20px rgba(229,9,20,0.22);
}

.uvfx-stats-sec-card-index {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(245,245,241,0.14);
  transition: color 0.3s;
}

.uvfx-stats-sec-card:hover .uvfx-stats-sec-card-index {
  color: rgba(229,9,20,0.5);
}

/* ══════════════════════════════════════════════
   THE BIG NUMBER — Cinematic focal point
══════════════════════════════════════════════ */
.uvfx-stats-sec-card-num-wrap {
  display: flex; align-items: baseline; gap: 0;
  line-height: 1;
  margin-bottom: 20px;
}

.uvfx-stats-sec-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 92px);
  letter-spacing: 0.03em;
  color: var(--ice);
  line-height: 1;
  font-variant-numeric: tabular-nums;

  /* Subtle reveal: number glows in */
  transition:
    color 0.4s ease,
    text-shadow 0.4s ease;
}

.uvfx-stats-sec-card:hover .uvfx-stats-sec-card-num {
  color: var(--ice);
  text-shadow:
    0 0 60px rgba(245,245,241,0.12),
    0 0 120px rgba(245,245,241,0.05);
}

.uvfx-stats-sec-card-unit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--red);
  line-height: 1;
  margin-left: 3px;
  position: relative;
  top: -4px;
  text-shadow: 0 0 24px rgba(229,9,20,0.45);
  transition: text-shadow 0.4s ease;
}

.uvfx-stats-sec-card:hover .uvfx-stats-sec-card-unit {
  text-shadow: 0 0 40px rgba(229,9,20,0.7);
}

/* ── Label + desc ── */
.uvfx-stats-sec-card-info {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(245,245,241,0.06);
  padding-top: 18px;
}

.uvfx-stats-sec-card-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(245,245,241,0.78);
  transition: color 0.3s;
}

.uvfx-stats-sec-card:hover .uvfx-stats-sec-card-label {
  color: var(--ice);
}

.uvfx-stats-sec-card-desc {
  font-size: clamp(11.5px, 1vw, 12.5px);
  font-weight: 300; line-height: 1.7;
  color: rgba(245,245,241,0.35); margin: 0;
  transition: color 0.3s;
}

.uvfx-stats-sec-card:hover .uvfx-stats-sec-card-desc {
  color: rgba(245,245,241,0.58);
}

/* ── Animated progress bar at bottom of card ── */
.uvfx-stats-sec-card-bar {
  height: 2px;
  background: rgba(245,245,241,0.05);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.uvfx-stats-sec-card-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(to right, var(--red), rgba(229,9,20,0.3));
  box-shadow: 0 0 10px rgba(229,9,20,0.5);
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(0.16,1,0.3,1);
}

/* The fill widths — each card gets a unique percentage feel */
.uvfx-stats-sec-card:nth-child(1).uvfx-stats-sec-in-view .uvfx-stats-sec-card-bar-fill { width: 92%; transition-delay: 0.6s; }
.uvfx-stats-sec-card:nth-child(2).uvfx-stats-sec-in-view .uvfx-stats-sec-card-bar-fill { width: 78%; transition-delay: 0.75s; }
.uvfx-stats-sec-card:nth-child(3).uvfx-stats-sec-in-view .uvfx-stats-sec-card-bar-fill { width: 85%; transition-delay: 0.9s; }
.uvfx-stats-sec-card:nth-child(4).uvfx-stats-sec-in-view .uvfx-stats-sec-card-bar-fill { width: 96%; transition-delay: 1.05s; }

/* ══════════════════════════════════════════════
   BOTTOM STRIP
══════════════════════════════════════════════ */
.uvfx-stats-sec-strip {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 26px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.uvfx-stats-sec-strip.uvfx-stats-sec-in-view {
  opacity: 1; transform: translateY(0);
}

.uvfx-stats-sec-strip-left {
  display: flex; flex-direction: column; gap: 4px;
}

.uvfx-stats-sec-strip-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px); letter-spacing: 0.04em;
  color: var(--ice); line-height: 1;
}

.uvfx-stats-sec-strip-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,245,241,0.28);
}

.uvfx-stats-sec-strip-tags {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}

.uvfx-stats-sec-strip-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px); letter-spacing: 0.05em;
  color: rgba(245,245,241,0.38);
  transition: color 0.3s;
}

.uvfx-stats-sec-strip-tag:hover { color: var(--ice); }

.uvfx-stats-sec-strip-sep {
  color: rgba(229,9,20,0.3); font-size: 14px; line-height: 1;
}

/* CTA button */
.uvfx-stats-sec-strip-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 8px;
  background: var(--red); border: 1px solid var(--red);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ice); text-decoration: none; flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.uvfx-stats-sec-strip-cta svg { transition: transform 0.3s; }

.uvfx-stats-sec-strip-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.uvfx-stats-sec-strip-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .uvfx-stats-sec-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .uvfx-stats-sec-track { display: none; }
}

@media (max-width: 860px) {
  .uvfx-stats-sec { padding: 80px 0; }
  .uvfx-stats-sec-inner { padding-left: var(--uvfx-stats-sec-pad-x); gap: 44px; }
  .uvfx-stats-sec-spine { display: none; }
  .uvfx-stats-sec-heading-row { flex-direction: column; align-items: flex-start; }
  .uvfx-stats-sec-heading-sub { text-align: left; max-width: 100%; }
}

@media (max-width: 560px) {
  .uvfx-stats-sec-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .uvfx-stats-sec-card-inner { padding: 22px 18px 0; }
  .uvfx-stats-sec-card-num  { font-size: clamp(48px, 14vw, 72px); }
  .uvfx-stats-sec-card-unit { font-size: clamp(24px, 7vw, 38px); }

  .uvfx-stats-sec-strip {
    flex-direction: column; align-items: flex-start;
    gap: 16px; padding: 20px 18px;
  }
  .uvfx-stats-sec-strip-cta { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-stats-sec-header,
  .uvfx-stats-sec-card,
  .uvfx-stats-sec-strip,
  .uvfx-stats-sec-spine-track,
  .uvfx-stats-sec-track-fill,
  .uvfx-stats-sec-card-bar-fill,
  .uvfx-stats-sec-bracket {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
  }
}

/* ============================================================
   UNTITLED VFX — Final CTA
   File: uvfx-cta.css
   Prefix: uvfx-cta-sec-*
   Aesthetic: Cinematic manifesto / Netflix-dark / Maximum impact CTA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --uvfx-cta-sec-pad-x: clamp(24px, 8vw, 140px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.uvfx-cta-sec {
  position: relative;
  width: 100%;
  background: #060606;
  padding: 160px 0 170px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* Top border — strong red pulse */
.uvfx-cta-sec::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.55) 50%, transparent);
  z-index: 1;
}

/* Bottom border — faint */
.uvfx-cta-sec::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.07) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND LAYERS
══════════════════════════════════════════════ */
.uvfx-cta-sec-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Deep crimson core — the heart of the Netflix-style glow */
.uvfx-cta-sec-glow-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(229,9,20,0.22) 0%,
    rgba(229,9,20,0.10) 30%,
    rgba(229,9,20,0.03) 60%,
    transparent 80%
  );
  animation: uvfx-cta-sec-core-breathe 6s ease-in-out infinite;
}

@keyframes uvfx-cta-sec-core-breathe {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;    transform: translate(-50%, -50%) scale(1.07); }
}

/* Outer halos */
.uvfx-cta-sec-halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.uvfx-cta-sec-halo--1 {
  top: -30%; left: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 62%);
}

.uvfx-cta-sec-halo--2 {
  bottom: -30%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 58%);
}

/* Film grain */
.uvfx-cta-sec-grain {
  position: absolute; inset: -20%; width: 140%; height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.45; mix-blend-mode: overlay;
  animation: uvfx-cta-sec-grain-drift 8s steps(2) infinite;
}

@keyframes uvfx-cta-sec-grain-drift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-1%,1%); }
  50%  { transform: translate(1%,-1%); }
  75%  { transform: translate(-1%,-1%); }
  100% { transform: translate(0,0); }
}

/* Scanlines */
.uvfx-cta-sec-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.045) 3px, rgba(0,0,0,0.045) 4px
  );
  opacity: 0.55;
}

/* Dark edge vignette — pushes focus to center */
.uvfx-cta-sec-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 80% 85% at 50% 50%,
    transparent 25%,
    rgba(0,0,0,0.5) 100%
  );
}

/* Horizontal rule bands */
.uvfx-cta-sec-rule {
  position: absolute; left: 0; right: 0; height: 1px;
}

.uvfx-cta-sec-rule--top {
  top: 72px;
  background: linear-gradient(to right, transparent 5%, rgba(245,245,241,0.04) 50%, transparent 95%);
}

.uvfx-cta-sec-rule--bottom {
  bottom: 72px;
  background: linear-gradient(to right, transparent 5%, rgba(245,245,241,0.04) 50%, transparent 95%);
}

/* Diagonal slash accent */
.uvfx-cta-sec-slash {
  position: absolute;
  top: 0; right: 28%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 25%, var(--red) 75%, transparent 100%);
  opacity: 0.07;
  transform: skewX(-14deg);
}

.uvfx-cta-sec-slash::before,
.uvfx-cta-sec-slash::after {
  content: '';
  position: absolute; top: 0; height: 100%;
  background: inherit;
}

.uvfx-cta-sec-slash::before { left: 20px; width: 1px; opacity: 0.5; }
.uvfx-cta-sec-slash::after  { left: 36px; width: 1px; opacity: 0.2; }

/* Film strip perforations */
.uvfx-cta-sec-filmstrip {
  position: absolute; top: 0; left: 0; right: 0;
  height: 20px; z-index: 2;
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.uvfx-cta-sec-filmstrip span {
  display: block; width: 10px; height: 8px;
  border-radius: 2px;
  background: rgba(245,245,241,0.05);
  border: 1px solid rgba(245,245,241,0.08);
}

/* ── Corner Brackets ── */
.uvfx-cta-sec-bracket {
  position: absolute;
  width: 44px; height: 44px;
  pointer-events: none; z-index: 3;
  opacity: 0;
  animation: uvfx-cta-sec-bracket-in 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.uvfx-cta-sec-bracket--tl { top: 30px; left: 30px;  border-top: 1.5px solid rgba(229,9,20,0.45); border-left: 1.5px solid rgba(229,9,20,0.45);   animation-delay: 0.8s; }
.uvfx-cta-sec-bracket--tr { top: 30px; right: 30px; border-top: 1.5px solid rgba(229,9,20,0.45); border-right: 1.5px solid rgba(229,9,20,0.45);  animation-delay: 0.9s; }
.uvfx-cta-sec-bracket--bl { bottom: 30px; left: 30px;  border-bottom: 1.5px solid rgba(229,9,20,0.45); border-left: 1.5px solid rgba(229,9,20,0.45);  animation-delay: 1.0s; }
.uvfx-cta-sec-bracket--br { bottom: 30px; right: 30px; border-bottom: 1.5px solid rgba(229,9,20,0.45); border-right: 1.5px solid rgba(229,9,20,0.45); animation-delay: 1.1s; }

@keyframes uvfx-cta-sec-bracket-in {
  from { opacity: 0; transform: scale(1.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Signal Nodes ── */
.uvfx-cta-sec-node {
  position: absolute;
  width: 10px; height: 10px;
  z-index: 3;
}

.uvfx-cta-sec-node span {
  display: block; width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--red);
  animation: uvfx-cta-sec-node-pulse 3s ease-in-out infinite;
}

.uvfx-cta-sec-node span::before {
  content: '';
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.3);
  animation: uvfx-cta-sec-node-ring 3s ease-in-out infinite;
}

.uvfx-cta-sec-node span::after {
  content: '';
  position: absolute; inset: -18px; border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.1);
  animation: uvfx-cta-sec-node-ring 3s ease-in-out 0.3s infinite;
}

.uvfx-cta-sec-node--1 { top: 22%; left: 8%; }
.uvfx-cta-sec-node--2 { bottom: 28%; right: 10%; animation-delay: 1.4s; }

@keyframes uvfx-cta-sec-node-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 6px var(--glow); }
  50%       { transform: scale(1.3); box-shadow: 0 0 18px var(--glow); }
}

@keyframes uvfx-cta-sec-node-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ══════════════════════════════════════════════
   INNER — centered column
══════════════════════════════════════════════ */
.uvfx-cta-sec-inner {
  position: relative; z-index: 2;
  padding: 0 var(--uvfx-cta-sec-pad-x);
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  text-align: center;
}

/* ══════════════════════════════════════════════
   EYEBROW
══════════════════════════════════════════════ */
.uvfx-cta-sec-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 52px;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s;
}

.uvfx-cta-sec-eyebrow.uvfx-cta-sec-in-view { opacity: 1; }

.uvfx-cta-sec-eyebrow-line {
  display: block; flex: 1; max-width: 72px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.45));
}

.uvfx-cta-sec-eyebrow-line--r {
  background: linear-gradient(to left, transparent, rgba(229,9,20,0.45));
}

.uvfx-cta-sec-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--glow);
  flex-shrink: 0;
  animation: uvfx-cta-sec-dot-pulse 2.5s ease-in-out infinite;
}

@keyframes uvfx-cta-sec-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--glow); transform: scale(1); }
  50%       { box-shadow: 0 0 18px var(--glow); transform: scale(1.4); }
}

.uvfx-cta-sec-eyebrow-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(229,9,20,0.7); white-space: nowrap;
}

/* ══════════════════════════════════════════════
   HEADLINE
   — Each line clips and word-rises up
══════════════════════════════════════════════ */
.uvfx-cta-sec-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 10vw, 140px);
  line-height: 0.9; letter-spacing: 0.025em;
  margin: 0 0 40px;
  display: flex; flex-direction: column;
  gap: 6px; align-items: center;
}

.uvfx-cta-sec-headline-line {
  display: flex; align-items: baseline;
  justify-content: center; gap: 0.2em;
  overflow: hidden;
}

/* Animate each line clip container */
.uvfx-cta-sec-headline-line--1 { overflow: visible; }
.uvfx-cta-sec-headline-line--2 { overflow: visible; }
.uvfx-cta-sec-headline-line--3 { overflow: visible; }

/* Individual word */
.uvfx-cta-sec-hw {
  display: inline-block;
  color: var(--ice);
  opacity: 0;
  transform: translateY(80%) skewY(2deg);
  transition:
    opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.uvfx-cta-sec-hw.uvfx-cta-sec-hw-visible {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}

/* Stagger delays */
.uvfx-cta-sec-headline-line--1 .uvfx-cta-sec-hw:nth-child(1) { transition-delay: 0.10s; }
.uvfx-cta-sec-headline-line--1 .uvfx-cta-sec-hw:nth-child(2) { transition-delay: 0.20s; }
.uvfx-cta-sec-headline-line--2 .uvfx-cta-sec-hw:nth-child(1) { transition-delay: 0.30s; }
.uvfx-cta-sec-headline-line--3 .uvfx-cta-sec-hw:nth-child(1) { transition-delay: 0.42s; }

/* Word style variants */
.uvfx-cta-sec-hw--accent {
  color: var(--red);
  text-shadow:
    0 0 80px rgba(229,9,20,0.65),
    0 0 200px rgba(229,9,20,0.2);
}

.uvfx-cta-sec-hw--outline {
  -webkit-text-stroke: 2px rgba(245,245,241,0.6);
  color: transparent;
}

.uvfx-cta-sec-hw--dim {
  color: rgba(245,245,241,0.38);
}

/* ══════════════════════════════════════════════
   SUB COPY
══════════════════════════════════════════════ */
.uvfx-cta-sec-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300; line-height: 1.85;
  color: rgba(245,245,241,0.45);
  max-width: 520px; text-align: center;
  margin: 0 0 52px;

  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease 0.55s, transform 0.7s ease 0.55s;
}

.uvfx-cta-sec-sub.uvfx-cta-sec-in-view {
  opacity: 1; transform: translateY(0);
}

.uvfx-cta-sec-sub em {
  color: rgba(229,9,20,0.75); font-style: italic;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.uvfx-cta-sec-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;

  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.uvfx-cta-sec-actions.uvfx-cta-sec-in-view {
  opacity: 1; transform: translateY(0);
}

/* Shared button base */
.uvfx-cta-sec-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  padding: 17px 38px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease;
}

/* ── Primary ── */
.uvfx-cta-sec-btn--primary {
  background: var(--red);
  color: var(--ice);
  border: 1px solid var(--red);
  font-size: 15px; padding: 18px 44px;
}

/* Pulsing inner glow layer */
.uvfx-cta-sec-btn-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.uvfx-cta-sec-btn--primary:hover .uvfx-cta-sec-btn-glow { opacity: 1; }

.uvfx-cta-sec-btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(229,9,20,0.3),
    0 16px 40px rgba(229,9,20,0.45),
    0 0 80px rgba(229,9,20,0.18);
}

.uvfx-cta-sec-btn--primary svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.uvfx-cta-sec-btn--primary:hover svg { transform: scale(1.15); }

/* ── Ghost ── */
.uvfx-cta-sec-btn--ghost {
  background: transparent;
  color: rgba(245,245,241,0.65);
  border: 1px solid rgba(245,245,241,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.uvfx-cta-sec-btn--ghost svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.uvfx-cta-sec-btn--ghost:hover {
  background: rgba(245,245,241,0.06);
  border-color: rgba(245,245,241,0.38);
  color: var(--ice);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.uvfx-cta-sec-btn--ghost:hover svg { transform: translateX(5px); }

/* ══════════════════════════════════════════════
   DISCIPLINE TAGS ROW
══════════════════════════════════════════════ */
.uvfx-cta-sec-tags {
  display: flex; align-items: center;
  flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 56px;

  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease 0.85s, transform 0.7s ease 0.85s;
}

.uvfx-cta-sec-tags.uvfx-cta-sec-in-view {
  opacity: 1; transform: translateY(0);
}

.uvfx-cta-sec-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,245,241,0.25);
  transition: color 0.3s;
}

.uvfx-cta-sec-tag:hover { color: rgba(245,245,241,0.65); }

.uvfx-cta-sec-tag-sep {
  color: rgba(229,9,20,0.28);
  font-size: 12px; line-height: 1;
}

/* ══════════════════════════════════════════════
   STUDIO SIGNATURE
══════════════════════════════════════════════ */
.uvfx-cta-sec-sig {
  display: flex; align-items: center; gap: 18px;

  opacity: 0;
  transition: opacity 0.7s ease 1.0s;
}

.uvfx-cta-sec-sig.uvfx-cta-sec-in-view { opacity: 1; }

.uvfx-cta-sec-sig-line {
  display: block; width: 52px; height: 1px;
  background: rgba(245,245,241,0.12);
}

.uvfx-cta-sec-sig-text {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,245,241,0.2);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .uvfx-cta-sec { padding: 120px 0 130px; }
  .uvfx-cta-sec-headline { font-size: clamp(48px, 13vw, 96px); }
  .uvfx-cta-sec-eyebrow  { margin-bottom: 40px; }
  .uvfx-cta-sec-node--2  { display: none; }
}

@media (max-width: 600px) {
  .uvfx-cta-sec { padding: 100px 0 110px; }

  .uvfx-cta-sec-headline { font-size: clamp(40px, 16vw, 72px); }
  .uvfx-cta-sec-hw--outline { -webkit-text-stroke-width: 1.5px; }

  .uvfx-cta-sec-actions {
    flex-direction: column;
    width: 100%; max-width: 340px;
  }

  .uvfx-cta-sec-btn { width: 100%; }

  .uvfx-cta-sec-bracket { width: 28px; height: 28px; }
  .uvfx-cta-sec-bracket--tl,
  .uvfx-cta-sec-bracket--tr { top: 18px; }
  .uvfx-cta-sec-bracket--bl,
  .uvfx-cta-sec-bracket--br { bottom: 18px; }
  .uvfx-cta-sec-bracket--tl,
  .uvfx-cta-sec-bracket--bl { left: 18px; }
  .uvfx-cta-sec-bracket--tr,
  .uvfx-cta-sec-bracket--br { right: 18px; }

  .uvfx-cta-sec-sig-text { font-size: 8px; letter-spacing: 0.16em; }
  .uvfx-cta-sec-sig-line  { width: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .uvfx-cta-sec-eyebrow,
  .uvfx-cta-sec-hw,
  .uvfx-cta-sec-sub,
  .uvfx-cta-sec-actions,
  .uvfx-cta-sec-tags,
  .uvfx-cta-sec-sig,
  .uvfx-cta-sec-bracket,
  .uvfx-cta-sec-glow-core,
  .uvfx-cta-sec-grain,
  .uvfx-cta-sec-node span,
  .uvfx-cta-sec-eyebrow-dot {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}