/* ============================================
   FIGMOTION — CINEMATIC LANDING PAGE
   London Production Studio · Est. 2023
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #080808;
  --deep:         #0d0d0d;
  --dark:         #111111;
  --mid:          #1c1c1c;
  --surface:      #242424;
  --chrome:       #c8c8c8;
  --silver:       #e8e8e8;
  --white:        #f5f5f5;
  --muted:        #585858;
  --muted-lt:     #888;
  --glass-bg:     rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
  --glass-blur:   blur(24px);
  --panel-bg:     rgba(6,6,6,0.85);
  --panel-border: rgba(255,255,255,0.07);
  --chrome-grad:  linear-gradient(135deg, #e8e8e8 0%, #a0a0a0 25%, #f0f0f0 50%, #888 72%, #d0d0d0 100%);
  --chrome-sm:    linear-gradient(120deg, #c8c8c8 0%, #888 35%, #efefef 55%, #999 75%, #ccc 100%);
  --font-main:    'Space Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', 'SF Mono', 'Consolas', 'Courier New', monospace;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.87, 0, 0.13, 1);
  --ease-cine:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none;
}

/* ══════════════ FILM GRAIN CANVAS ══════════════ */
#grain-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9500;
  opacity: 0.38;
  mix-blend-mode: overlay;
}

/* ══════════════ CURSOR AMBIENT LIGHT ══════════════ */
#cursor-light {
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.028) 0%,
    rgba(255,255,255,0.012) 30%,
    transparent 65%
  );
  mix-blend-mode: screen;
  will-change: left, top;
}

/* ══════════════ CURSOR ══════════════ */
.cursor {
  position: fixed; width: 7px; height: 7px;
  background: var(--white); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              border-color 0.35s;
}
.cursor-follower.hovered { width: 52px; height: 52px; border-color: rgba(255,255,255,0.45); }

/* ══════════════ NAV ══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 3rem;
  transition: background 0.6s var(--ease-cine), backdrop-filter 0.6s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(28px) saturate(1.3);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo { text-decoration: none; }
.nav-logo-text {
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.28em;
  background: var(--chrome-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.8rem; }
.nav-link {
  text-decoration: none; color: var(--muted);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.3s var(--ease-cine); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--chrome);
  transition: width 0.4s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.btn-ghost {
  text-decoration: none; color: var(--white);
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--glass-border); padding: 0.55rem 1.3rem;
  border-radius: 100px; transition: background 0.3s, border-color 0.3s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--chrome); transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6,6,6,0.97); backdrop-filter: blur(36px);
  z-index: 99; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease-cine);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  text-decoration: none; color: var(--white);
  font-size: 2.2rem; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.25s;
}
.mobile-link:hover { background: var(--chrome-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ══════════════ BUTTONS ══════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none; background: var(--white); color: var(--black);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #fff 0%, #d8d8d8 100%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 38px rgba(255,255,255,0.13); }
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
  display: inline-flex; align-items: center; text-decoration: none;
  color: var(--chrome); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  border: 1px solid rgba(200,200,200,0.18);
  transition: border-color 0.4s var(--ease-cine), background 0.4s, transform 0.45s var(--ease-out), color 0.3s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: rgba(200,200,200,0.5); background: rgba(255,255,255,0.04); color: var(--white); transform: translateY(-2px); }
.btn-sm { font-size: 0.72rem; padding: 0.65rem 1.4rem; }
.btn-large { font-size: 0.88rem; padding: 1.1rem 2.6rem; }

/* ══════════════ SECTION LABEL ══════════════ */
.section-label {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-mono);
}
.section-label::before {
  content: ''; display: inline-block; width: 24px; height: 1px; background: var(--muted);
}

/* ══════════════ CHROME TEXT ══════════════ */
.chrome-text {
  background: var(--chrome-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block; filter: drop-shadow(0 0 50px rgba(200,200,200,0.15));
}
.chrome-text-sm {
  background: var(--chrome-sm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 38%, #181818 0%, var(--black) 70%);
}

/* Grain */
.hero-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.28; pointer-events: none;
  animation: grainShift 7s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }    20%  { transform: translate(-2%,-3%); }
  40%  { transform: translate(1%,2%); }  60%  { transform: translate(2%,-1%); }
  80%  { transform: translate(-1%,3%); } 100% { transform: translate(0,0); }
}

/* Hero Figmo watermark */
.hero-figmo-watermark {
  position: absolute;
  right: 6%;
  bottom: 2%;
  width: 38vh;
  min-width: 200px;
  max-width: 460px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
  filter: blur(1px);
  animation: heroFigmoDrift 18s ease-in-out infinite;
}
@keyframes heroFigmoDrift {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-18px) rotate(0.5deg); }
  70%       { transform: translateY(-8px) rotate(-0.3deg); }
}

/* Ambient orbs */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: 0.12;
  animation: orbDrift 22s ease-in-out infinite, ambientPulse 14s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, #909090 0%, transparent 70%); top: -12%; left: -8%; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, #606060 0%, transparent 70%); bottom: 8%; right: -6%; animation-delay: -9s, -4s; }
.orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, #aaa 0%, transparent 70%); top: 42%; left: 62%; animation-delay: -5s, -8s; opacity: 0.07; }
@keyframes orbDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(44px,-32px) scale(1.06); }
  66%       { transform: translate(-20px,22px) scale(0.95); }
}
@keyframes ambientPulse {
  0%, 100% { opacity: 0.12; }
  50%       { opacity: 0.18; }
}

/* ══════════════════════════════════════════
   PRODUCTION PANELS
══════════════════════════════════════════ */
.prod-panel {
  position: absolute;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(32px) saturate(1.3);
  border-radius: 10px;
  padding: 14px 16px;
  pointer-events: none;
  font-family: var(--font-mono);
  min-width: 178px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  will-change: transform, opacity;
}

/* Panel sub-elements */
.panel-rule {
  height: 1px; background: rgba(255,255,255,0.06);
  margin: 9px 0;
}
.panel-row {
  display: flex; justify-content: space-between;
  align-items: center; gap: 14px; margin-bottom: 5px;
}
.panel-row:last-child { margin-bottom: 0; }
.pk {
  font-size: 0.52rem; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.22); text-transform: uppercase;
}
.pv {
  font-size: 0.58rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.pv--live { color: rgba(230,230,230,0.75); }

/* Panel A — Timecode */
.panel-tc {
  top: 15%; right: 7%;
  animation: floatY 7.5s ease-in-out infinite, panelBreath 11s ease-in-out infinite;
}
.tc-header {
  display: flex; align-items: center; gap: 7px; margin-bottom: 2px;
}
.rec-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #e0e0e0;
  animation: recPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes recPulse {
  0%, 100% { opacity: 1; background: #d8d8d8; box-shadow: 0 0 4px rgba(255,255,255,0.25); }
  50%       { opacity: 0.22; background: #555; box-shadow: none; }
}
.tc-label {
  font-size: 0.5rem; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
}
.tc-display {
  font-size: 0.68rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7); margin-left: auto;
  font-variant-numeric: tabular-nums;
}

/* Panel B — Slate */
.panel-slate {
  top: 22%; left: 6%;
  animation: floatY 9s ease-in-out infinite, panelBreath 13s ease-in-out infinite;
  animation-delay: -2.5s, -5s;
}
.slate-brand {
  font-size: 0.55rem; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.38); text-transform: uppercase;
  font-family: var(--font-main);
  margin-bottom: 2px;
}
.slate-footer {
  font-size: 0.5rem; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.18); text-transform: uppercase;
  margin-top: 2px;
}

/* Panel C — Playback */
.panel-play {
  bottom: 20%; right: 8%;
  animation: floatY 6.8s ease-in-out infinite, panelBreath 9s ease-in-out infinite;
  animation-delay: -1s, -2s;
}
.play-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.play-icon {
  font-size: 0.62rem; color: rgba(255,255,255,0.45); flex-shrink: 0;
}
.play-meta { display: flex; flex-direction: column; gap: 3px; }
.play-title {
  font-size: 0.62rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
}
.progress-wrap {
  display: flex; align-items: center; gap: 9px;
}
.progress-track {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
}
.progress-fill {
  width: 38%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.22), rgba(255,255,255,0.52));
  border-radius: 2px;
  animation: progressSweep 14s ease-in-out infinite;
}
@keyframes progressSweep {
  0%   { width: 22%; }
  50%  { width: 74%; }
  100% { width: 22%; }
}

/* Panel D — System */
.panel-sys {
  bottom: 26%; left: 6%;
  animation: floatY 8.5s ease-in-out infinite, panelBreath 15s ease-in-out infinite;
  animation-delay: -3.5s, -7s;
}
.sys-header {
  font-size: 0.52rem; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.28); text-transform: uppercase;
  font-family: var(--font-main); margin-bottom: 10px;
}
.terminal { display: flex; flex-direction: column; gap: 5px; }
.t-line { display: flex; align-items: center; gap: 7px; }
.t-prompt { font-size: 0.55rem; color: rgba(255,255,255,0.2); }
.t-key {
  font-size: 0.55rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28); text-transform: lowercase; flex: 1;
}
.t-val {
  font-size: 0.55rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.52); text-transform: uppercase;
}
.t-val--open { color: rgba(210,210,210,0.72); }
.blink-cursor {
  animation: blink 1.1s step-start infinite;
  font-size: 0.5rem; opacity: 0.6;
}
@keyframes blink { 0%, 100% { opacity: 0.6; } 50% { opacity: 0; } }

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  40%       { transform: translateY(-12px); }
  70%       { transform: translateY(-5px); }
}
@keyframes panelBreath {
  0%, 100% { opacity: 1; }
  30%       { opacity: 0.94; }
  50%       { opacity: 0.88; }
  70%       { opacity: 0.94; }
}

/* ══════════════ HERO CONTENT ══════════════ */
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.6rem; padding: 0 1.5rem;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-mono);
}
.eyebrow-dot {
  display: inline-block; width: 3px; height: 3px;
  background: var(--muted); border-radius: 50%;
}
.eyebrow-sep { color: var(--surface); }
.hero-title {
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 600; line-height: 0.9; letter-spacing: -0.025em;
  user-select: none;
}
.hero-slogan {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--muted);
  opacity: 0.6;
  max-width: 38ch;
  line-height: 1.7;
  text-align: center;
  margin-bottom: -0.4rem;
}
.hero-byline {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  background: var(--chrome-sm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-top: -0.6rem;
  opacity: 0.75;
}
.hero-tagline {
  font-size: clamp(0.72rem, 1.4vw, 0.92rem);
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--muted); font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: center; margin-top: 0.4rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; opacity: 0.3;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--chrome));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-indicator span { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); font-family: var(--font-mono); }

/* ══════════════ MARQUEE ══════════════ */
.marquee-wrap {
  overflow: hidden; background: var(--deep);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 2.8rem; white-space: nowrap;
  animation: marquee 32s linear infinite; width: max-content;
}
.marquee-track span {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); font-weight: 300;
}
.msep { color: var(--surface) !important; font-size: 0.55rem !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { padding: 10rem 3rem 9rem; max-width: 1400px; margin: 0 auto; }
.about-container {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 8rem; align-items: start;
}
.about-title {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.about-title em {
  font-style: italic;
  background: var(--chrome-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Studio brief panel */
.about-brief {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: 12px; overflow: hidden;
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.015);
}
.brief-row {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.35s var(--ease-cine);
}
.brief-row:last-child { border-bottom: none; }
.brief-row:hover { background: rgba(255,255,255,0.03); }
.brief-key {
  font-size: 0.5rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); width: 42px; flex-shrink: 0;
}
.brief-val {
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.brief-val--open { color: rgba(220,220,220,0.85); }

/* Typography improvements */
.about-body {
  font-size: 1rem;
  line-height: 1.92;
  color: #8a8a8a;
  font-family: var(--font-body);
  font-weight: 300;
  margin-bottom: 1.6rem;
}
.about-body--lead {
  font-size: 1.1rem;
  color: #a8a8a8;
  line-height: 1.82;
  font-weight: 300;
}
.about-body--sub {
  font-size: 0.9rem;
  color: #606060;
  line-height: 1.88;
  margin-top: 0.5rem;
}

.about-services {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem;
}
.service-pill {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--chrome); border: 1px solid rgba(200,200,200,0.14);
  padding: 0.42rem 1rem; border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: border-color 0.35s var(--ease-cine), background 0.35s, color 0.3s;
  cursor: default;
}
.service-pill:hover { border-color: rgba(200,200,200,0.38); background: rgba(255,255,255,0.03); color: var(--white); }

/* ══════════════════════════════════════════
   WORK
══════════════════════════════════════════ */
.work { padding: 4rem 3rem 8rem; max-width: 1400px; margin: 0 auto; }
.work-header { margin-bottom: 3.5rem; }
.work-title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin-top: 0.5rem;
}
.work-title em {
  font-style: italic;
  background: var(--chrome-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.work-sub {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.8rem; font-family: var(--font-mono);
}

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,0.03);
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--glass-border);
}
.work-grid--halves {
  grid-template-columns: 1fr 1fr;
}
.work-grid--halves .work-card {
  grid-column: span 1;
  aspect-ratio: 3/2;
}
.work-card {
  position: relative; aspect-ratio: 3/2;
  overflow: hidden; cursor: none; background: var(--deep);
}
.work-card--large { grid-column: span 2; aspect-ratio: auto; }
.work-card--wide  { grid-column: span 2; aspect-ratio: auto; }
/* Tall card — spans 2 rows, fills full portrait height */
.work-card--tall  { grid-row: span 2; aspect-ratio: auto; }
/* Strip card — full width, cinematic letterbox */
.work-card--strip { grid-column: span 3; aspect-ratio: 4/1; }

/* Frame lines on hover */
.work-card::before {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(255,255,255,0);
  border-radius: 4px; z-index: 5; pointer-events: none;
  transition: border-color 0.6s var(--ease-cine);
}
.work-card:hover::before { border-color: rgba(255,255,255,0.06); }

.work-card-media {
  position: absolute; inset: 0;
  transition: transform 1s var(--ease-out);
}
.work-card:hover .work-card-media { transform: scale(1.035); }

/* Card backgrounds — cinematic atmospheres */
.work-card-bg { position: absolute; inset: 0; }

/* 01 Chrome Mirror / Fashion — silver studio, top-left chrome hotspot */
.work-bg-1 {
  background:
    radial-gradient(ellipse 55% 50% at 28% 30%, rgba(220,220,220,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 72% 68%, rgba(80,80,80,0.15) 0%, transparent 50%),
    linear-gradient(145deg, #1e1e1e 0%, #2a2a2a 35%, #161616 70%, #222 100%);
}
/* 02 Darlin No.4 / Music — dark stage, central spotlight */
.work-bg-2 {
  background:
    radial-gradient(ellipse 35% 45% at 50% 45%, rgba(160,160,160,0.1) 0%, rgba(80,80,80,0.05) 40%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 50% 50%, #141414 0%, #050505 100%);
}
/* 03 Studio Identity / Brand — architectural, editorial geometry */
.work-bg-3 {
  background:
    linear-gradient(160deg, rgba(200,200,200,0.06) 0%, transparent 40%),
    linear-gradient(110deg, #181818 0%, #1c1c1c 45%, #121212 100%);
}
/* 04 On Set / Film — location exterior, horizon light */
.work-bg-4 {
  background:
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 40%, #0f0f0f 70%, #080808 100%),
    radial-gradient(ellipse 100% 30% at 50% 0%, rgba(140,140,140,0.06) 0%, transparent 100%);
}
/* 05 Soft Touch / Commercial — diffused right-side light */
.work-bg-5 {
  background:
    radial-gradient(ellipse 55% 70% at 76% 45%, rgba(190,190,190,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 50% 50%, #181818 0%, #0d0d0d 100%);
}
/* 06 Spectrum / Motion — subtle spectral hints, abstract */
.work-bg-6 {
  background:
    linear-gradient(135deg, rgba(200,180,240,0.04) 0%, rgba(180,220,255,0.03) 33%, rgba(255,200,180,0.04) 66%, transparent 100%),
    radial-gradient(ellipse 60% 60% at 50% 50%, #151515 0%, #080808 100%);
}

/* HEROES work card — video background */
.heroes-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* DDF video */
.ddf-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.work-bg-ddf {
  background: linear-gradient(155deg, #0d0d0d 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* HOLDING ON video */
.holding-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.work-bg-holding {
  background: linear-gradient(155deg, #0d0d0d 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* HEROES — fallback gradient (shows before video loads) */
.work-bg-heroes {
  background:
    radial-gradient(ellipse 60% 55% at 30% 35%, rgba(238,218,185,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 72% 65%, rgba(180,155,130,0.07) 0%, transparent 50%),
    linear-gradient(155deg, #1e1b17 0%, #261f18 38%, #18140f 70%, #1c1916 100%);
}

/* FILM A — moody interior, low-key dramatic */
.work-bg-film-a {
  background:
    radial-gradient(ellipse 40% 55% at 40% 50%, rgba(140,140,155,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 50% 50%, #141418 0%, #060608 100%);
}

/* FILM B — exterior, overcast northern light */
.work-bg-film-b {
  background:
    linear-gradient(185deg, rgba(200,205,210,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 10%, rgba(180,185,195,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #121418 0%, #0e1014 50%, #09090c 100%);
}

/* FILM C — night interior, single source warmth */
.work-bg-film-c {
  background:
    radial-gradient(ellipse 30% 40% at 65% 42%, rgba(220,200,160,0.07) 0%, transparent 55%),
    linear-gradient(170deg, #0c0b09 0%, #131210 40%, #070707 100%);
}

/* FILM D — golden hour, warm fade to black */
.work-bg-film-d {
  background:
    radial-gradient(ellipse 70% 40% at 50% 85%, rgba(200,165,110,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(160,140,100,0.05) 0%, transparent 55%),
    linear-gradient(175deg, #14120e 0%, #1c180f 45%, #100e09 100%);
}

/* FILM E — high contrast, near-black */
.work-bg-film-e {
  background:
    radial-gradient(ellipse 25% 35% at 50% 38%, rgba(200,200,200,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 50% 50%, #0d0d0d 0%, #030303 100%);
}

/* ADIDAS × ØDEGAARD — real campaign photography, static per card */
.work-bg-adidas {
  background: #0c0808;
}

/* Shared photo card background — used for all real-image cards */
.work-bg-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 15%;
  filter: brightness(0.88);
  transition: filter 0.55s var(--ease-cine), transform 1s var(--ease-out);
}
.work-card:hover .work-bg-photo {
  filter: brightness(0.96);
}

/* EDITORIAL A — clean beauty, neutral warm */
.work-bg-edit-a {
  background:
    radial-gradient(ellipse 50% 60% at 45% 40%, rgba(230,215,200,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 50%, #1c1918 0%, #0f0d0c 100%);
}

/* EDITORIAL B — dramatic beauty, top light */
.work-bg-edit-b {
  background:
    radial-gradient(ellipse 35% 55% at 50% 28%, rgba(235,220,205,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 50% 50%, #181614 0%, #0a0908 100%);
}

/* EDITORIAL C — bold editorial, geometric side light */
.work-bg-edit-c {
  background:
    linear-gradient(145deg, rgba(225,215,205,0.07) 0%, transparent 45%),
    radial-gradient(ellipse 40% 40% at 28% 35%, rgba(220,210,200,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #1a1816 0%, #1e1b19 40%, #100e0d 100%);
}

/* LONG FORM A — wide production scale, prestige */
.work-bg-lf-a {
  background:
    linear-gradient(180deg, rgba(150,155,165,0.05) 0%, transparent 40%),
    radial-gradient(ellipse 100% 35% at 50% 0%, rgba(160,165,175,0.06) 0%, transparent 70%),
    linear-gradient(180deg, #101214 0%, #181a1c 35%, #0c0d0f 70%, #080809 100%);
}

/* LONG FORM B — dramatic production still, prestige tone */
.work-bg-lf-b {
  background:
    radial-gradient(ellipse 45% 50% at 68% 45%, rgba(160,150,135,0.08) 0%, transparent 55%),
    linear-gradient(150deg, #141210 0%, #1c1916 40%, #0e0c0a 100%);
}

/* ─── Work category structure ─── */
.work-category { margin-top: 3.5rem; }
.work-category:first-child { margin-top: 0; }

.work-cat-divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.work-cat-num {
  font-family: var(--font-mono);
  font-size: 0.5rem; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.2);
}
.work-cat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.work-cat-line {
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.05);
}
.work-cat-count {
  font-family: var(--font-mono);
  font-size: 0.46rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.16);
}

/* Full-width cinematic card (span 3 cols, 21:9 anamorphic) */
.work-card--full { grid-column: span 3; aspect-ratio: 21/9; }

.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.08) 45%, transparent 70%);
  opacity: 0; transition: opacity 0.55s var(--ease-cine); z-index: 1;
}
.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.55s var(--ease-cine); z-index: 1;
}
.work-card:hover .work-card-glow { opacity: 1; }

/* Per-card grain overlay */
.work-card-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.18; pointer-events: none; z-index: 2;
  animation: grainShift 6s steps(2) infinite;
  animation-delay: var(--grain-delay, 0s);
}

/* Production film metadata overlay */
.work-film-meta {
  position: absolute; top: 1rem; left: 1.1rem; z-index: 4;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.work-card:hover .work-film-meta {
  opacity: 1;
  transform: translateY(0);
}
.film-ref {
  font-family: var(--font-mono);
  font-size: 0.48rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.film-type {
  font-family: var(--font-mono);
  font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.film-bottom {
  display: flex; align-items: center; gap: 10px; margin-top: 2px;
}
.film-loc, .film-fmt {
  font-family: var(--font-mono);
  font-size: 0.46rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.film-fmt { color: rgba(255,255,255,0.2); }

/* Playback scan line on hover */
.work-scan-line {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 0.3s, transform 0.8s var(--ease-out);
  transition-delay: 0.1s;
}
.work-card:hover .work-scan-line {
  opacity: 1;
  transform: scaleX(1);
}

.work-card-info {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1.4rem 1.6rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  transition-delay: 0.06s;
}
.work-card:hover .work-card-info { opacity: 1; transform: translateY(0); }
.work-index {
  font-family: var(--font-mono);
  font-size: 0.52rem; letter-spacing: 0.22em; color: var(--muted); align-self: flex-start; padding-top: 0.15rem;
}
.work-card-text h3 { font-size: 0.95rem; font-weight: 400; letter-spacing: 0.04em; color: var(--white); line-height: 1.3; }
.work-card-text p { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-lt); margin-top: 0.25rem; font-family: var(--font-mono); }
.work-arrow { font-size: 1.1rem; color: var(--chrome); align-self: flex-end; transition: transform 0.4s var(--ease-out); }
.work-card:hover .work-arrow { transform: translate(5px,-5px); }

/* Archive tag */
.work-card-tag {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.46rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.28rem 0.5rem; border-radius: 4px;
  backdrop-filter: blur(8px);
  transition: opacity 0.35s;
}
.work-card:hover .work-card-tag { opacity: 0; }

/* ──────────────────────────────────────────
   CARD EXPAND OVERLAY
   Click any work card → FLIP-animates to a
   centred full-view panel with backdrop.
────────────────────────────────────────── */
.card-expand-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0);
  z-index: 8000;
  pointer-events: none;
  transition: background 0.55s var(--ease-cine), backdrop-filter 0.55s;
  cursor: none;
}
.card-expand-backdrop.active {
  background: rgba(0,0,0,0.84);
  backdrop-filter: blur(6px);
  pointer-events: all;
}

.card-expand-panel {
  position: fixed;
  z-index: 8001;
  overflow: hidden;
  cursor: none;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.card-expand-panel.animating {
  transition:
    top          0.64s var(--ease-out),
    left         0.64s var(--ease-out),
    width        0.64s var(--ease-out),
    height       0.64s var(--ease-out),
    border-radius 0.64s var(--ease-out),
    opacity      0.4s  var(--ease-cine),
    box-shadow   0.64s var(--ease-out);
}
.card-expand-panel.active {
  pointer-events: all;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.card-expand-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.ss-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45); color: #fff; border: 1px solid rgba(255,255,255,0.15);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.1rem; line-height: 1;
  cursor: pointer; z-index: 8010;
  transition: background 0.2s, transform 0.2s;
  pointer-events: all;
}
.ss-btn:hover { background: rgba(0,0,0,0.75); transform: translateY(-50%) scale(1.08); }
.ss-btn--prev { left: 1.4rem; }
.ss-btn--next { right: 1.4rem; }
.ss-dots {
  position: absolute; bottom: 4.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 8010; pointer-events: all;
}
.ss-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.ss-dot--active { background: #fff; transform: scale(1.3); }
.card-expand-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.64s var(--ease-out);
}
/* expand close hint */
.card-expand-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-mono); font-size: 0.46rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.4rem 0.8rem; border-radius: 4px;
  opacity: 0; z-index: 2;
  transition: opacity 0.35s var(--ease-out) 0.4s;
  pointer-events: none;
}
.card-expand-panel.active .card-expand-close { opacity: 1; }

/* info strip at bottom of expanded view */
.card-expand-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.4rem 2.8rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease-out) 0.32s, transform 0.4s var(--ease-out) 0.32s;
  z-index: 2;
}
.card-expand-panel.active .card-expand-info { opacity: 1; transform: translateY(0); }
.card-expand-info h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 400; letter-spacing: 0.04em; color: var(--white); line-height: 1.3;
}
.card-expand-info p {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-lt); margin-top: 0.35rem; font-family: var(--font-mono);
}

.work-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2.2rem; padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap; gap: 1rem;
}
.work-footer-text {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--muted); font-family: var(--font-mono);
}

/* ══════════════════════════════════════════
   FIGMO — ARCHIVE
══════════════════════════════════════════ */
.figmo {
  padding: 9rem 3rem; overflow: hidden;
  background: linear-gradient(180deg, var(--black) 0%, #0c0c0c 50%, var(--black) 100%);
}
.figmo-container {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

/* Archive title style */
.figmo-title {
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300; line-height: 1; letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
}
.figmo-title-word {
  background: var(--chrome-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.figmo-object-id {
  margin-bottom: 2rem;
}
.figmo-obj-line {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}

.figmo-body {
  font-size: 1.05rem;
  line-height: 1.88;
  color: #7a7a7a;
  font-family: var(--font-body);
  font-weight: 300;
  margin-bottom: 1rem;
}
.figmo-body--quiet {
  font-size: 0.88rem;
  line-height: 1.92;
  color: #545454;
}

.figmo-rule {
  height: 1px;
  background: var(--glass-border);
  margin: 1.8rem 0;
  width: 60px;
}

.figmo-tags { display: flex; gap: 0.55rem; margin-top: 2rem; flex-wrap: wrap; }
.figmo-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--glass-border);
  padding: 0.38rem 0.9rem; border-radius: 100px;
  transition: border-color 0.35s, color 0.3s;
}
.figmo-tag:hover { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.65); }
.figmo-build-btn { margin-top: 2.2rem; display: inline-flex; }

.figmo-visual { display: flex; align-items: center; justify-content: center; }
.figmo-scene {
  position: relative; width: 320px; height: 380px;
  display: flex; align-items: center; justify-content: center; cursor: none;
}
.figmo-glow-ring {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse at 50% 62%, rgba(180,180,180,0.06) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
  animation: glowRingPulse 8s ease-in-out infinite;
}
@keyframes glowRingPulse {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1.4; }
}
.figmo-svg {
  width: 260px; height: auto;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,0.65));
  transition: filter 0.6s var(--ease-out);
  animation: figmoFloat 5.5s ease-in-out infinite;
  position: relative; z-index: 2;
}
.figmo-scene:hover .figmo-svg {
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(200,200,200,0.1));
}
@keyframes figmoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-13px) rotate(0.8deg); }
  66%       { transform: translateY(-6px) rotate(-0.4deg); }
}
.orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04); pointer-events: none;
}
.orbit-1 { width: 320px; height: 120px; top: 50%; left: 50%; transform: translate(-50%,-50%) rotateX(75deg); animation: orbitSpin 16s linear infinite; }
.orbit-2 { width: 260px; height: 90px; top: 50%; left: 50%; transform: translate(-50%,-50%) rotateX(75deg); animation: orbitSpin 22s linear infinite reverse; border-color: rgba(255,255,255,0.025); }
@keyframes orbitSpin {
  from { transform: translate(-50%,-50%) rotateX(75deg) rotateZ(0deg); }
  to   { transform: translate(-50%,-50%) rotateX(75deg) rotateZ(360deg); }
}

/* ══════════════════════════════════════════
   MATERIAL LAB / CUSTOMISER
══════════════════════════════════════════ */
.customiser {
  padding: 9rem 3rem 10rem;
  background: linear-gradient(180deg, var(--black) 0%, #0e0e0e 40%, var(--black) 100%);
  overflow: hidden;
}
.customiser-container { max-width: 1400px; margin: 0 auto; }
.customiser-header { margin-bottom: 5rem; }
.customiser-title {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 1rem; margin-top: 0.5rem;
}
.customiser-sub {
  font-size: 0.82rem; color: var(--muted);
  letter-spacing: 0.12em; font-family: var(--font-mono);
}
.customiser-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: center;
}
.customiser-stage { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.stage-scene {
  position: relative; width: 320px; height: 400px;
  display: flex; align-items: center; justify-content: center; cursor: none;
}
.stage-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at 50% 55%, rgba(180,180,180,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: stageGlowShift 10s ease-in-out infinite;
}
@keyframes stageGlowShift {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1.2; transform: scale(1.05); }
}
.custom-figmo-svg {
  width: 280px; height: auto; position: relative; z-index: 2;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.65));
  animation: figmoFloat 5.5s ease-in-out infinite;
  transition: filter 0.5s var(--ease-out), opacity 0.3s, transform 0.3s;
}
.custom-figmo-svg.switching { opacity: 0.6; transform: scale(0.97) translateY(3px); }
.figmo-holo { animation: figmoFloat 5.5s ease-in-out infinite, holoFigmo 3.5s linear infinite !important; }
@keyframes holoFigmo {
  0%   { filter: drop-shadow(0 24px 60px rgba(0,0,0,0.65)) hue-rotate(0deg) saturate(1.4); }
  100% { filter: drop-shadow(0 24px 60px rgba(0,0,0,0.65)) hue-rotate(360deg) saturate(1.5); }
}
.stage-platform {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 155px; height: 6px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 50%; filter: blur(3px); z-index: 1;
}
.stage-edition { text-align: center; display: flex; flex-direction: column; gap: 0.3rem; }
.stage-edition-no {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.stage-edition-name {
  font-size: 0.95rem; font-weight: 400; letter-spacing: 0.08em;
  background: var(--chrome-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: opacity 0.3s;
}
.customiser-controls { display: flex; flex-direction: column; gap: 2.2rem; }
.control-group { display: flex; flex-direction: column; gap: 1rem; }
.control-label {
  font-family: var(--font-mono);
  font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.material-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.material-card {
  display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.1rem;
  border: 1px solid var(--glass-border); border-radius: 12px;
  background: var(--glass-bg); cursor: none; text-align: left;
  color: var(--white); position: relative;
  transition: border-color 0.35s var(--ease-cine), background 0.35s, transform 0.3s var(--ease-out);
}
.material-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-1px); }
.material-card.active { border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.045); }
.material-dot { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.dot-mw { background: radial-gradient(circle at 35% 30%, #f0f0f0, #a0a0a0); }
.dot-ch { background: radial-gradient(circle at 30% 25%, #fff 0%, #999 40%, #222 70%, #666 100%); }
.dot-ob { background: radial-gradient(circle at 35% 30%, #2a2a2a, #080808); border: 1px solid #2a2a2a; }
.dot-hl { background: linear-gradient(135deg, #c8b8ff, #ff88cc, #ffe888, #88ffee, #88aaff); animation: holoSpin 3s linear infinite; }
@keyframes holoSpin { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }
.material-info { display: flex; flex-direction: column; gap: 2px; }
.material-name { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.03em; color: var(--white); }
.material-sub { font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
.material-check { position: absolute; top: 0.55rem; right: 0.7rem; font-size: 0.58rem; color: var(--chrome); opacity: 0; transition: opacity 0.25s; }
.material-card.active .material-check { opacity: 1; }
.eye-options { display: flex; gap: 0.55rem; }
.eye-btn {
  flex: 1; padding: 0.65rem 0.8rem;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: var(--glass-bg);
  border: 1px solid var(--glass-border); border-radius: 9px; cursor: none;
  transition: color 0.3s var(--ease-cine), border-color 0.3s, background 0.3s;
}
.eye-btn:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.eye-btn.active { color: var(--white); border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.045); }
.customiser-divider { height: 1px; background: var(--glass-border); }
.customiser-note {
  font-size: 0.82rem; line-height: 1.85;
  color: #505050; font-family: var(--font-body);
}
.customiser-actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.customiser-limited {
  font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}

/* ══════════════ CINE DIVIDER ══════════════ */
.cine-divider {
  padding: 2.2rem 3rem;
  display: flex; align-items: center; gap: 2rem;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--deep);
}
.cine-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--glass-border)); }
.cine-line:last-child { background: linear-gradient(to left, transparent, var(--glass-border)); }
.cine-text {
  display: flex; align-items: center; gap: 1.1rem;
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
  flex-wrap: wrap; justify-content: center;
}
.cine-sep { color: var(--surface); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { padding: 10rem 3rem 8rem; position: relative; overflow: hidden; }
.contact-bg-orb {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(120,120,120,0.04) 0%, transparent 70%);
  filter: blur(80px); top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  animation: orbDrift 20s ease-in-out infinite;
}
.contact-container { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.contact-title {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 1.6rem;
}

/* Atmospheric lines */
.contact-atmosphere {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.contact-atmosphere span {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}
.atm-sep { color: var(--surface) !important; font-size: 0.5rem !important; }

.contact-intro {
  font-size: 0.95rem;
  line-height: 1.88;
  color: #5c5c5c;
  font-family: var(--font-body);
  max-width: 520px;
  margin-bottom: 3.5rem;
}
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-glass {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur); border-radius: 20px;
  padding: 1.8rem; display: flex; flex-direction: column;
}
.contact-item { display: flex; align-items: center; gap: 1.2rem; padding: 1.1rem 0; }
.contact-icon { font-size: 0.9rem; color: var(--muted); width: 24px; text-align: center; flex-shrink: 0; }
.contact-label {
  font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem;
}
.contact-value {
  font-size: 0.86rem; color: var(--silver); text-decoration: none;
  transition: color 0.3s var(--ease-cine); font-weight: 300; line-height: 1.5;
}
a.contact-value:hover { color: var(--white); }
.contact-divider { height: 1px; background: var(--glass-border); }

.contact-cta-wrap { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; padding-top: 0.5rem; }
.contact-note {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.18em;
  color: var(--muted); text-transform: uppercase;
}
.contact-availability {
  display: flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem;
}
.avail-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #b8b8b8;
  animation: recPulse 2.4s ease-in-out infinite; flex-shrink: 0;
}
.avail-text {
  font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* ══════════════ FOOTER ══════════════ */
.footer { border-top: 1px solid var(--glass-border); padding: 2.2rem 3rem; background: var(--deep); }
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.32em;
  background: var(--chrome-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-meta {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em;
  color: var(--muted); text-transform: uppercase;
}
.footer-sep { color: var(--surface); }
.footer-socials { display: flex; gap: 1.4rem; }
.footer-socials a {
  text-decoration: none; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.2em; color: var(--muted); transition: color 0.3s; text-transform: uppercase;
}
.footer-socials a:hover { color: var(--white); }

/* ══════════════ SCROLL REVEAL — CINEMATIC ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out),
    filter 1.1s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-container   { grid-template-columns: 1fr; gap: 4rem; }
  .work-grid         { grid-template-columns: repeat(2,1fr); }
  .work-card--large, .work-card--wide { grid-column: span 2; }
  .figmo-container   { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .figmo-visual      { order: -1; }
  .figmo-tags        { justify-content: center; }
  .figmo-build-btn   { align-self: center; }
  .figmo-rule        { margin-left: auto; margin-right: auto; }
  .customiser-layout { grid-template-columns: 1fr; gap: 4rem; }
  .customiser-stage  { order: -1; }
  .material-grid     { grid-template-columns: repeat(4,1fr); }
  .contact-panel     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-cta-link { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .prod-panel { display: none; }
  .hero-figmo-watermark { width: 28vh; right: 0; opacity: 0.03; }
  .about, .work, .figmo, .customiser, .contact { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about { padding-top: 6rem; padding-bottom: 6rem; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--large, .work-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .work-card-info { opacity: 1; transform: none; }
  .work-card-overlay { opacity: 1; }
  .contact-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .cine-text { font-size: 0.52rem; gap: 0.5rem; }
  .figmo-scene { width: 260px; height: 300px; }
  .figmo-svg { width: 200px; }
  .material-grid { grid-template-columns: repeat(2,1fr); }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  #grain-canvas { opacity: 0.28; }
  #cursor-light { display: none; }
  .contact-atmosphere { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .atm-sep { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .work-footer { flex-direction: column; align-items: flex-start; }
  .about-brief { font-size: 0.9rem; }
}
