/* ═══════════════════════════════════════════════════════════════
   WOMENATRIX v2 — Case Study Stylesheet
   AZRI Creative Studio · 2025–2026
   Design: Cinematic Editorial + Parallax Storytelling
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --red:    #FF0040;
  --cyan:   #00D4FF;
  --void:   #050509;
  --void2:  #020203;
  --ink:    #F0EDE8;
  --ink2:   #A8A4A0;
  --ink3:   #5A5755;
  --card:   #0a0a0f;
  --border: rgba(255,255,255,0.07);
  --border-red:  rgba(255,0,64,0.25);
  --border-cyan: rgba(0,212,255,0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-arabic:  'KufyanArabic', 'Noto Kufi Arabic', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--void2);
  color: var(--ink2);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── UTILITIES ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.full-bleed { width: 100vw; margin-left: calc(-50vw + 50%); }
.section { padding: 7rem 0; position: relative; }
.section-dark { background: var(--void); }

/* ─── GRAIN + SCANLINES ─── */
.grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.035;
}
.scanlines {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
  );
}
.cursor-glow {
  position: fixed; width: 350px; height: 350px;
  border-radius: 50%; pointer-events: none; z-index: 9997;
  background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  will-change: left, top;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; transition: background .4s, padding .4s;
}
.nav.scrolled { background: rgba(5,5,9,0.92); backdrop-filter: blur(12px); padding: .75rem 2rem; }
.nav-logo {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink);
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: var(--font-mono); font-size: .65rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink3);
  transition: color .3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--font-mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .5rem 1.2rem; border: 1px solid var(--red);
  color: var(--red); border-radius: 2px; transition: all .3s var(--ease-out);
}
.nav-cta:hover { background: var(--red); color: #fff; }
.nav-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 1001;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  width: 0%; transition: none;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
}

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-family: var(--font-mono); font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink3);
  margin-bottom: 1.25rem;
}
.section-headline {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; color: var(--ink);
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.headline-muted { color: var(--ink3); }
.headline-accent-red { color: var(--red); }
.headline-accent-cyan { color: var(--cyan); }
.section-sublead {
  font-size: 1.05rem; color: var(--ink2); max-width: 680px;
  line-height: 1.75; margin-bottom: 2.5rem;
}
.lead-text { font-size: 1.1rem; line-height: 1.8; color: var(--ink); margin-bottom: 1rem; }

/* ─── BADGES ─── */
.badge {
  font-family: var(--font-mono); font-size: .55rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 2px; display: inline-block;
}
.badge-red { background: rgba(255,0,64,0.15); color: var(--red); border: 1px solid var(--border-red); }
.badge-cyan { background: rgba(0,212,255,0.12); color: var(--cyan); border: 1px solid var(--border-cyan); }
.badge-ghost { background: rgba(255,255,255,0.04); color: var(--ink3); border: 1px solid var(--border); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
}
/* Base dark scrim so the bright video never fights the text */
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(5,5,9,0.52);
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(5,5,9,0.65) 100%),
    linear-gradient(to bottom, rgba(5,5,9,0.35) 0%, transparent 30%, transparent 55%, rgba(5,5,9,0.85) 100%);
}
.hero-overlay-red {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(255,0,64,0.18), transparent 60%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 2rem;
}
.hero-eyebrow { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-title-img { margin-bottom: 2rem; }
.title-img { max-width: 520px; margin: 0 auto; width: 100%; }
.hero-sub {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--ink2); line-height: 1.8; margin-bottom: 2.5rem;
  text-shadow: 0 1px 14px rgba(0,0,0,.9), 0 2px 30px rgba(0,0,0,.6);
}
.hero-meta {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.meta-item { text-align: center; }
.meta-label {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink3); display: block; margin-bottom: .25rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.9);
}
.meta-value { font-family: var(--font-body); font-size: .85rem; color: var(--ink); text-shadow: 0 1px 10px rgba(0,0,0,.9); }
.meta-divider { width: 1px; background: var(--border); align-self: stretch; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  font-family: var(--font-mono); font-size: .65rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; background: var(--red); color: #fff;
  border: 1px solid var(--red); border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.cta-btn:hover { background: #e6003a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,64,.3); }
.cta-ghost {
  font-family: var(--font-mono); font-size: .65rem; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .85rem 2rem; border: 1px solid var(--border);
  color: var(--ink3); border-radius: 2px; transition: all .3s;
}
.cta-ghost:hover { border-color: var(--ink); color: var(--ink); }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--ink3)); }
.hero-scroll-hint span {
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--ink3);
}

/* ─── HORIZONTAL SCROLL STRIP ─── */
.scroll-strip {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 1rem 2rem; cursor: grab;
  scrollbar-width: none;
}
.scroll-strip::-webkit-scrollbar { display: none; }
.scroll-strip:active { cursor: grabbing; }
.ss-item {
  flex: 0 0 auto; width: 420px; scroll-snap-align: start;
  position: relative; border-radius: 4px; overflow: hidden;
}
.ss-item img, .ss-item video {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.ss-item:hover img { transform: scale(1.04); }
.ss-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(transparent, rgba(5,5,9,.85));
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .06em; color: var(--ink2);
}

@media (max-width: 600px) {
  .ss-item { width: 85vw; }
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin: 3rem 0;
}
.bstat { text-align: center; padding: 1.5rem 1rem; border: 1px solid var(--border); border-radius: 4px; }
.bstat-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  color: var(--ink); display: inline;
}
.bstat-unit { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--ink3); }
.bstat-label {
  display: block; margin-top: .25rem;
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink3);
}

@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-bar { grid-template-columns: 1fr; } }

/* ─── RUPTURE PAIR ─── */
.rupture-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin: 3rem 0; border-radius: 6px; overflow: hidden;
}
.rupture-side { position: relative; overflow: hidden; }
.rupture-side img {
  width: 100%; height: 360px; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.rupture-side:hover img { transform: scale(1.03); }
.rupture-label {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 2px;
}
.rupture-before .rupture-label { background: rgba(240,237,232,0.1); color: var(--ink2); }
.rupture-after .rupture-label { background: rgba(255,0,64,0.2); color: var(--red); }

@media (max-width: 600px) {
  .rupture-pair { grid-template-columns: 1fr; }
  .rupture-side img { height: 240px; }
}

/* ─── COMPONENT CARDS ─── */
.components-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.comp-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem 1.5rem;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.comp-card:hover { transform: translateY(-3px); }
.comp-card-red { border-color: var(--border-red); }
.comp-card-red:hover { border-color: var(--red); }
.comp-card-cyan { border-color: var(--border-cyan); }
.comp-card-cyan:hover { border-color: var(--cyan); }
.comp-num {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .2em; color: var(--ink3); display: block; margin-bottom: .75rem;
}
.comp-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: .75rem;
}
.comp-card p { font-size: .85rem; color: var(--ink2); line-height: 1.65; }
.comp-tag {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink3); margin-top: 1rem; display: block;
}

@media (max-width: 768px) { .components-grid { grid-template-columns: 1fr; } }

/* ─── POSTER DUO ─── */
.poster-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
.poster-duo-item { position: relative; border-radius: 4px; overflow: hidden; }
.poster-duo-item img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.poster-duo-item:hover img { transform: scale(1.03); }
.poster-duo-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 2px;
  background: rgba(5,5,9,.7); backdrop-filter: blur(6px);
}
.label-red { color: var(--red); }
.label-cyan { color: var(--cyan); }

@media (max-width: 600px) { .poster-duo { grid-template-columns: 1fr; } }

/* ─── SRT NARRATION ARC ─── */
.srt-arc {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem; align-items: center;
  margin-bottom: 3.5rem; padding: 2.5rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--card);
}
.srt-tc {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink3); display: block; margin-bottom: .5rem;
}
.srt-ar {
  font-family: var(--font-arabic); font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--ink); direction: rtl; text-align: right;
  line-height: 1.7; margin-bottom: .5rem;
}
.srt-en {
  font-family: var(--font-body); font-size: .85rem; font-style: italic;
  color: var(--ink3); line-height: 1.65;
}
.srt-threat { color: var(--red); }
.srt-pivot-arrow {
  font-size: 2rem; color: var(--red); text-align: center;
  writing-mode: vertical-lr;
}

@media (max-width: 768px) {
  .srt-arc { grid-template-columns: 1fr; gap: 1rem; }
  .srt-pivot-arrow { writing-mode: horizontal-tb; transform: none; }
}

/* ─── EVIDENCE WALL ─── */
.evidence-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
  margin-top: 2.5rem;
}
.ew-cell {
  position: relative; overflow: hidden; cursor: pointer;
}
.ew-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.ew-cell:hover img { transform: scale(1.06); }
.ew-span2 { grid-column: span 2; }
.ew-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,5,9,.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; transition: background .3s;
}
.ew-cell:hover .ew-overlay { background: linear-gradient(180deg, transparent 10%, rgba(5,5,9,.92) 100%); }
.ew-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  color: var(--ink); line-height: 1;
}
.ew-unit { font-size: 1.5rem; color: var(--ink3); }
.ew-label {
  font-family: var(--font-body); font-size: .78rem;
  color: var(--ink2); line-height: 1.5; margin-top: .25rem;
}
.ew-source {
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .08em; color: var(--ink3); margin-top: .35rem;
}
.ew-red .ew-num { color: var(--red); }
.ew-cyan .ew-num { color: var(--cyan); }

@media (max-width: 900px) {
  .evidence-wall { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .ew-cell.ew-span2 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .evidence-wall { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .ew-cell.ew-span2 { grid-column: span 1; }
}

/* ─── EVIDENCE GRID (uncropped) ─── */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.eg-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.eg-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.15);
}
.eg-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  background: #000;
}
.eg-item figcaption {
  padding: .85rem 1rem;
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--ink2);
  line-height: 1.5;
}
.eg-stat {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  margin-right: .35rem;
}
.eg-source {
  font-family: var(--font-mono);
  font-size: .5rem;
  letter-spacing: .08em;
  color: var(--ink3);
  display: block;
  margin-top: .25rem;
}

@media (max-width: 600px) {
  .evidence-grid { grid-template-columns: 1fr; }
}

/* ─── THREAT CARDS ─── */
.threat-dual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 3rem 0;
}
.threat-card {
  background: var(--card); border-radius: 8px;
  padding: 2rem; border: 1px solid var(--border);
}
.threat-card-red { border-color: var(--border-red); }
.threat-card-cyan { border-color: var(--border-cyan); }
.threat-icon { font-size: 1.2rem; color: var(--ink3); margin-bottom: .5rem; }
.threat-tag {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: .75rem;
}
.threat-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: .75rem;
}
.threat-card p { font-size: .85rem; line-height: 1.7; }
.threat-quote {
  font-family: var(--font-body); font-size: .85rem; font-style: italic;
  color: var(--cyan); margin-top: 1rem; padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.threat-card-red .threat-quote { color: var(--red); }

@media (max-width: 768px) { .threat-dual { grid-template-columns: 1fr; } }

/* ─── AESTHETIC HERO (full-bleed video/frame with overlay) ─── */
.aesthetic-hero {
  position: relative; width: 100%; min-height: 70vh;
  overflow: hidden; display: flex; align-items: flex-end;
}
.aes-video, .aesthetic-hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.aes-overlay {
  position: relative; z-index: 1; width: 100%;
  padding: 3rem 2rem;
  background: linear-gradient(transparent 0%, rgba(5,5,9,.6) 35%, rgba(5,5,9,.95) 100%);
}
.aes-tag {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .75rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.9), 0 0 30px rgba(0,0,0,.7);
}
.aes-quote {
  font-family: var(--font-body); font-size: 1.1rem;
  font-style: italic; color: var(--ink);
  max-width: 700px; line-height: 1.75;
  text-shadow: 0 2px 16px rgba(0,0,0,.9), 0 0 40px rgba(0,0,0,.6);
}

/* ─── PRINCIPLE CARDS ─── */
.aes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 3rem 0;
}
.aes-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem 1.5rem;
}
.aes-num { color: var(--ink3); margin-bottom: .5rem; font-size: .9rem; }
.aes-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .75rem;
}
.aes-card p { font-size: .82rem; line-height: 1.7; }

@media (max-width: 768px) { .aes-grid { grid-template-columns: 1fr; } }

/* ─── CREATIVE DECISIONS ─── */
.decision {
  margin-bottom: 5rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.decision:last-of-type { border-bottom: none; }
.decision-meta {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.d-index {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--ink);
}
.d-tag {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 2px;
}
.d-tag-red { background: rgba(255,0,64,0.12); color: var(--red); }
.d-tag-cyan { background: rgba(0,212,255,0.1); color: var(--cyan); }
.d-tag-ghost { background: rgba(255,255,255,0.04); color: var(--ink3); }
.decision-content { margin-bottom: 2rem; }
.decision-content h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); margin-bottom: 1rem;
}
.decision-content p {
  font-size: .9rem; color: var(--ink2); line-height: 1.75;
  margin-bottom: .75rem; max-width: 720px;
}

/* Decision frame grid — 2×3 or flexible */
.decision-frames {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.df-item {
  position: relative; border-radius: 4px; overflow: hidden;
}
.df-item img, .df-item video {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.df-item:hover img, .df-item:hover video { transform: scale(1.04); }
.df-item figcaption, .df-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem .75rem;
  background: linear-gradient(transparent, rgba(5,5,9,.85));
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .04em; color: var(--ink2);
}
.df-wide { grid-column: span 2; }
.df-wide img, .df-wide video { height: 340px; }
.df-clip { position: relative; }

@media (max-width: 900px) {
  .decision-frames { grid-template-columns: repeat(2, 1fr); }
  .df-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .decision-frames { grid-template-columns: 1fr; }
  .df-wide { grid-column: span 1; }
  .df-item img, .df-item video { height: 220px; }
  .df-wide img, .df-wide video { height: 240px; }
}

/* Decision 03 — full-bleed trophy */
.decision-hero-frame {
  position: relative; width: 100%; border-radius: 6px; overflow: hidden;
  margin-bottom: 1rem;
}
.decision-hero-frame img {
  width: 100%; height: 400px; object-fit: cover;
}
.decision-hero-frame figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(5,5,9,.9));
  font-family: var(--font-display); font-size: 1.1rem;
  font-style: italic; color: var(--ink);
}

/* Decision 05 — split screen */
.split-screen {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 6px; overflow: hidden;
}
.split-half {
  position: relative; padding: 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.split-red { background: rgba(255,0,64,0.06); border-right: 1px solid var(--border-red); }
.split-cyan { background: rgba(0,212,255,0.04); }
.split-half .split-label {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .2em; text-transform: uppercase;
}
.split-red .split-label { color: var(--red); }
.split-cyan .split-label { color: var(--cyan); }
.split-half img, .split-half video {
  width: 100%; border-radius: 4px; aspect-ratio: 16/9; object-fit: cover;
}

@media (max-width: 768px) { .split-screen { grid-template-columns: 1fr; } }

/* ─── PRODUCTION PIPELINE — PHASE GRID ─── */
.pipeline-grid-wrap {
  margin-top: 5rem;
  padding: 3rem;
  background: var(--card);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 8px;
}
.pl-header { margin-bottom: 2.5rem; }
.pl-headline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700; color: var(--ink);
  margin-bottom: .75rem; line-height: 1.3;
}
.pl-sub { font-size: .85rem; color: var(--ink2); }

.pipeline-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.phase-card {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .3s;
}
.phase-card:hover { background: rgba(0,212,255,0.02); }
.phase-card:nth-child(4) { border-right: none; }
.phase-card:nth-child(n+5) { border-bottom: none; }
.phase-card:nth-child(7) { border-right: none; }

.phase-num-bar {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.phase-num {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 900; color: var(--cyan); line-height: 1;
}
.phase-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(0,212,255,0.3), transparent);
}

.phase-card h4 {
  font-family: var(--font-display); font-size: .92rem;
  font-weight: 700; color: var(--ink); margin-bottom: .5rem;
}
.phase-card p {
  font-size: .78rem; line-height: 1.65; color: var(--ink2);
}
.phase-tag {
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink3); display: inline-block;
  padding: .2rem .5rem; border: 1px solid var(--border);
  border-radius: 2px; margin-top: .75rem;
}
.phase-tag-red { border-color: var(--border-red); color: var(--red); }
.phase-tag-cyan { border-color: var(--border-cyan); color: var(--cyan); }

@media (max-width: 900px) {
  .pipeline-grid-wrap { padding: 2rem; }
  .pipeline-phases { grid-template-columns: repeat(2, 1fr); }
  .phase-card:nth-child(4) { border-right: 1px solid var(--border); }
  .phase-card:nth-child(2),
  .phase-card:nth-child(4),
  .phase-card:nth-child(6) { border-right: none; }
  .phase-card:nth-child(n+5) { border-bottom: 1px solid var(--border); }
  .phase-card:nth-child(n+7) { border-bottom: none; }
}
@media (max-width: 520px) {
  .pipeline-phases { grid-template-columns: 1fr; }
  .phase-card { border-right: none; border-bottom: 1px solid var(--border); }
  .phase-card:last-child { border-bottom: none; }
}

/* ─── CAMPAIGN SERIES HERO ─── */
.campaign-hero-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
  margin-top: 1.5rem;
}
.campaign-hero-item {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .4s, transform .4s var(--ease-out);
}
.campaign-hero-item:hover {
  border-color: var(--cyan);
  transform: translateY(-6px) scale(1.02);
}
.campaign-hero-item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.campaign-hero-item:hover img { transform: scale(1.06); }
.campaign-hero-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(5,5,9,.7));
  pointer-events: none;
}

@media (max-width: 768px) { .campaign-hero-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .campaign-hero-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── FILM ACTS ─── */
.act-opener {
  position: relative; width: 100%; height: 50vh; min-height: 320px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.act-opener-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.act-opener-overlay {
  position: relative; z-index: 1; text-align: center;
  padding: 2rem;
}
.act-label {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  display: inline-block; padding: .4rem 1rem;
  border-radius: 2px; margin-bottom: 1rem;
}
.act-label-red { background: rgba(255,0,64,0.2); color: var(--red); text-shadow: 0 1px 12px rgba(0,0,0,.9); }
.act-label-cyan { background: rgba(0,212,255,0.15); color: var(--cyan); text-shadow: 0 1px 12px rgba(0,0,0,.9); }
.act-label-ghost { background: rgba(255,255,255,0.06); color: var(--ink); text-shadow: 0 1px 12px rgba(0,0,0,.9); }
.act-title {
  font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700; color: var(--ink);
  text-shadow: 0 2px 24px rgba(0,0,0,.95), 0 4px 48px rgba(0,0,0,.8), 0 0 80px rgba(0,0,0,.6);
}

/* Masonry grid for dense frame sections */
.masonry-grid {
  columns: 4;
  column-gap: .5rem;
  margin: 2rem 0;
}
.masonry-grid .mg-item {
  break-inside: avoid;
  margin-bottom: .5rem;
  position: relative; border-radius: 3px; overflow: hidden;
}
.masonry-grid .mg-item img {
  width: 100%; display: block;
  transition: transform .5s var(--ease-out);
}
.masonry-grid .mg-item:hover img { transform: scale(1.04); }
.masonry-grid .mg-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .5rem .6rem;
  background: linear-gradient(transparent, rgba(5,5,9,.8));
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .04em; color: var(--ink2);
  opacity: 0; transition: opacity .3s;
}
.masonry-grid .mg-item:hover figcaption { opacity: 1; }

@media (max-width: 900px) { .masonry-grid { columns: 3; } }
@media (max-width: 600px) { .masonry-grid { columns: 2; } }

/* Cinematic grid for film acts */
.cine-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
  margin: 2rem 0;
}
.cg-item {
  position: relative; border-radius: 3px; overflow: hidden;
}
.cg-item img, .cg-item video {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.cg-item:hover img { transform: scale(1.04); }
.cg-span2 { grid-column: span 2; }
.cg-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .5rem .6rem;
  background: linear-gradient(transparent, rgba(5,5,9,.8));
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .04em; color: var(--ink2);
  opacity: 0; transition: opacity .3s;
}
.cg-item:hover figcaption { opacity: 1; }

@media (max-width: 768px) {
  .cine-grid { grid-template-columns: repeat(2, 1fr); }
  .cg-span2 { grid-column: span 2; }
}
@media (max-width: 480px) {
  .cine-grid { grid-template-columns: 1fr; }
  .cg-span2 { grid-column: span 1; }
}

/* Pull quote */
.pull-quote {
  text-align: center; max-width: 700px; margin: 3rem auto;
  padding: 2rem 0;
}
.pq-rule {
  display: block; width: 40px; height: 2px; margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}
.pull-quote p {
  font-family: var(--font-display); font-size: 1.4rem;
  font-style: italic; font-weight: 400; color: var(--ink);
  line-height: 1.6;
}
.pull-quote cite {
  display: block; margin-top: 1rem;
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink3); font-style: normal;
}

/* ─── ARTICLES / RESEARCH ─── */
.articles-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 2rem;
}
.article-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
}
.article-card-en { border-color: var(--border-cyan); }
.article-card-ar { border-color: var(--border-red); }
.article-visual {
  height: 200px; overflow: hidden;
}
.article-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.article-card:hover .article-visual img { transform: scale(1.04); }
.article-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-lang {
  font-family: var(--font-mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .2em; color: var(--ink3);
  padding: .2rem .5rem; border: 1px solid var(--border);
  border-radius: 2px; display: inline-block; margin-bottom: .75rem;
  width: fit-content;
}
.article-tag {
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .5rem; display: block;
}
.tag-cyan { color: var(--cyan); }
.tag-red { color: var(--red); }
.article-body h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--ink); margin-bottom: .5rem;
}
.article-author {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .08em; color: var(--ink3); margin-bottom: .75rem;
}
.article-body p { font-size: .82rem; line-height: 1.7; margin-bottom: .5rem; }
.article-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); margin-top: auto; padding-top: .75rem;
  transition: color .3s;
}
.article-cta:hover { color: var(--ink); }
.article-cta-red { color: var(--red); }
.article-cta-red:hover { color: var(--ink); }

@media (max-width: 768px) { .articles-grid { grid-template-columns: 1fr; } }

/* Penalty block */
.penalty-block {
  margin-top: 3rem; padding: 2rem;
  background: var(--card); border: 1px solid var(--border-red);
  border-radius: 8px;
}
.pen-label {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.pen-text { font-size: .9rem; color: var(--ink2); line-height: 1.75; max-width: 700px; }
.pen-vis {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 1.5rem;
}
.pen-vis img { width: 100%; border-radius: 4px; aspect-ratio: 16/9; object-fit: cover; }

@media (max-width: 600px) { .pen-vis { grid-template-columns: 1fr; } }

/* ─── PALETTE CARDS ─── */
.palette-full {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.palette-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: border-color .3s;
}
.palette-card:hover { border-color: var(--swatch-color, var(--border)); }
.pf-swatch {
  background: var(--swatch-color, #333);
  height: 80px; border-bottom: 1px solid var(--swatch-border, var(--border));
}
.pf-info { padding: 1.2rem 1rem; display: flex; flex-direction: column; gap: .35rem; }
.pf-hex { font-family: var(--font-mono); font-size: .7rem; color: var(--ink3); letter-spacing: .06em; }
.pf-name { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--ink); }
.pf-why { font-size: .78rem; line-height: 1.6; color: var(--ink2); margin-top: .25rem; }

@media (max-width: 900px) { .palette-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .palette-full { grid-template-columns: 1fr; } }

/* ─── CRAFT ROW ─── */
.craft-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.craft-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.5rem;
}
.craft-card-title {
  font-family: var(--font-display); font-size: .9rem; font-weight: 700;
  color: var(--ink); margin-bottom: 1rem;
}
.comp-arc { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.arc-step {
  flex: 1; text-align: center; padding: .75rem .5rem;
  border-radius: 4px; min-width: 80px;
}
.arc-red { background: rgba(255,0,64,0.1); border: 1px solid var(--border-red); }
.arc-cyan { background: rgba(0,212,255,0.08); border: 1px solid var(--border-cyan); }
.arc-warm { background: rgba(240,237,232,0.05); border: 1px solid var(--border); }
.arc-label { font-family: var(--font-mono); font-size: .55rem; letter-spacing: .15em; color: var(--ink); display: block; }
.arc-desc { font-size: .55rem; color: var(--ink3); display: block; margin-top: .15rem; }
.arc-arrow { color: var(--ink3); font-size: .8rem; }
.motif-list { list-style: none; }
.motif-item { display: flex; gap: .6rem; margin-bottom: .75rem; }
.motif-icon { color: var(--cyan); font-size: .8rem; flex-shrink: 0; margin-top: .1rem; }
.motif-item strong { font-family: var(--font-display); font-size: .8rem; color: var(--ink); display: block; }
.motif-item p { font-size: .7rem; color: var(--ink2); line-height: 1.5; margin: 0; }
.typo-demo { margin-bottom: .75rem; }
.typo-ar {
  font-family: var(--font-arabic); font-size: 1.1rem;
  color: var(--ink2); direction: rtl; text-align: right;
}
.typo-en {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .2em; color: var(--ink3); margin-top: .25rem;
}
.typo-data {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--red); margin-top: .25rem;
}
.craft-note { font-size: .72rem; color: var(--ink2); line-height: 1.5; }
.bls-main { text-align: center; }
.bls-main img {
  width: 100%; max-height: 160px; object-fit: contain;
  border-radius: 4px; margin-bottom: .5rem;
}
.bls-main span {
  font-family: var(--font-mono); font-size: .55rem;
  color: var(--ink3); letter-spacing: .06em;
}
.brand-cta {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); transition: color .3s;
}
.brand-cta:hover { color: var(--ink); }

@media (max-width: 900px) { .craft-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .craft-row { grid-template-columns: 1fr; } }

/* ─── POSTER GALLERY ─── */
.poster-gallery {
  margin-top: 3rem;
}
.campaign-label {
  margin-bottom: 1rem;
}
.cat-tag {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 2px;
}
.cat-red { background: rgba(255,0,64,0.12); color: var(--red); }
.cat-cyan { background: rgba(0,212,255,0.1); color: var(--cyan); }
.cat-ghost { background: rgba(255,255,255,0.04); color: var(--ink3); }

.campaign-poster-set {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem;
  align-items: start; margin-top: 1rem;
}
.poster-h { display: flex; flex-direction: column; gap: .75rem; }
.poster-h img { width: 100%; border-radius: 4px; }
.poster-v { display: flex; flex-direction: column; gap: .75rem; width: 220px; flex-shrink: 0; }
.poster-v img { width: 100%; height: auto; object-fit: contain; border-radius: 4px; background: #0d0d14; }
.poster-h span, .poster-v span {
  font-family: var(--font-mono); font-size: .6rem;
  color: var(--ink3); letter-spacing: .08em; text-transform: uppercase;
}

@media (max-width: 768px) {
  .campaign-poster-set { grid-template-columns: 1fr; }
  .poster-v { width: 100%; max-width: 320px; }
}

.campaign-grid-5 {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem;
  margin-top: 1rem;
}
.campaign-grid-5 img {
  width: 100%; border-radius: 4px; aspect-ratio: 3/4;
  object-fit: cover; cursor: pointer;
  transition: transform .3s var(--ease-out);
}
.campaign-grid-5 img:hover { transform: scale(1.03); }

@media (max-width: 768px) { .campaign-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .campaign-grid-5 { grid-template-columns: repeat(2, 1fr); } }

/* ─── TEASERS GRID ─── */
.teasers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}
.teaser-item { display: flex; flex-direction: column; gap: .75rem; }
.teaser-item video {
  width: 100%; border-radius: 6px; background: #0d0d14;
  max-height: 400px; object-fit: contain;
}
.teaser-item span {
  font-family: var(--font-mono); font-size: .6rem;
  color: var(--ink3); letter-spacing: .08em; text-transform: uppercase;
}

@media (max-width: 768px) { .teasers-grid { grid-template-columns: 1fr; } }

/* ─── WATCH / CINEMA ITEMS ─── */
.watch-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 2.5rem;
}
.cinema-item {
  cursor: pointer; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
  transition: border-color .3s, transform .3s var(--ease-out);
}
.cinema-item:hover { border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.cinema-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.cinema-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.cinema-item:hover .cinema-thumb img { transform: scale(1.04); }
.cinema-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,9,.45);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.cinema-item:hover .cinema-overlay { background: rgba(5,5,9,.3); }
.cinema-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-out);
  box-shadow: 0 0 40px rgba(255,0,64,.4);
}
.cinema-item:hover .cinema-play-btn { transform: scale(1.12); }
.cinema-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.watch-info { padding: 1.25rem 1.5rem 1.5rem; }
.watch-badge-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.watch-dur { font-family: var(--font-mono); font-size: .7rem; color: var(--ink3); }
.watch-info h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--ink); margin: 0 0 .5rem;
}
.watch-info p { font-size: .85rem; color: var(--ink2); line-height: 1.65; margin: 0; }

@media (max-width: 768px) { .watch-grid { grid-template-columns: 1fr; } }

/* ─── CINEMA MODAL ─── */
.cinema-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.cinema-modal.active { opacity: 1; pointer-events: all; }
.cinema-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(2,2,3,.92); backdrop-filter: blur(8px);
}
.cinema-modal-inner {
  position: relative; z-index: 1;
  width: min(92vw, 1100px); padding-top: 2.5rem;
}
.cinema-modal-close {
  position: absolute; top: 0; right: 0;
  background: transparent; border: none;
  color: var(--ink); font-size: 1.1rem;
  cursor: pointer; padding: .5rem .75rem;
  opacity: .6; transition: opacity .2s;
}
.cinema-modal-close:hover { opacity: 1; }
.cinema-modal-frame {
  aspect-ratio: 16/9; background: #000;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
}
.cinema-modal-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── MANIFESTO ─── */
.manifesto-section {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.manifesto-bg {
  position: absolute; inset: 0;
}
.manifesto-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.manifesto-veil {
  position: absolute; inset: 0;
  background: rgba(5,5,9,.82);
}
.manifesto-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 800px; padding: 4rem 2rem;
}
.manifesto-label {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 2rem; display: block;
}
.manifesto-ar {
  font-family: var(--font-arabic);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.45;
  color: var(--ink); direction: rtl; margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.95), 0 4px 50px rgba(0,0,0,.7);
}
.manifesto-en {
  font-family: var(--font-body); font-size: clamp(.9rem, 1.5vw, 1.15rem);
  font-style: italic; color: var(--ink2); line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0,0,0,.95), 0 4px 40px rgba(0,0,0,.7);
}
.manifesto-rule {
  width: 40px; height: 2px; margin: 2rem auto;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}
.manifesto-tc {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink3);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(2,2,3,.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 90vh; border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: transparent; border: none;
  color: var(--ink); font-size: 1.2rem;
  cursor: pointer; opacity: .6; transition: opacity .2s;
}
.lb-close:hover { opacity: 1; }

/* ─── FOOTER ─── */
.footer {
  padding: 4rem 0 3rem; border-top: 1px solid var(--border);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 900; color: var(--ink); letter-spacing: .05em;
}
.footer-divider { height: 1px; background: var(--border); margin-bottom: 2rem; }
.footer-bottom { text-align: center; }
.footer-bottom p {
  font-size: .8rem; color: var(--ink3); margin-bottom: .5rem;
}
.footer-team {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .1em; color: var(--ink3); margin-top: 1rem;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1; transform: translateY(0);
}

/* Stagger children */
.fade-up.visible .fade-child:nth-child(1) { transition-delay: 0s; }
.fade-up.visible .fade-child:nth-child(2) { transition-delay: .08s; }
.fade-up.visible .fade-child:nth-child(3) { transition-delay: .16s; }
.fade-up.visible .fade-child:nth-child(4) { transition-delay: .24s; }

/* Magnetic buttons */
.magnetic { transition: transform .2s var(--ease-out); }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-video, .act-opener-video, .aes-video { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ─── DATAVIZ STRIP (filmstrip in identity) ─── */
.dataviz-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem;
  margin-top: 3rem;
}
.dvs-item { position: relative; border-radius: 4px; overflow: hidden; }
.dvs-item img, .dvs-item video {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.dvs-item:hover img { transform: scale(1.04); }
.dvs-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .5rem .6rem;
  background: linear-gradient(transparent, rgba(5,5,9,.8));
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .04em; color: var(--ink2);
}

@media (max-width: 900px) { .dataviz-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .dataviz-strip { grid-template-columns: repeat(2, 1fr); } }

/* ─── STUDIO CHALLENGE GRID ─── */
.challenge-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.challenge-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem 1.75rem; position: relative;
  overflow: hidden; transition: border-color .3s, transform .3s var(--ease-out);
}
.challenge-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.12); }
.challenge-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--cyan)); opacity: 0.3;
}
.ch-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 900;
  color: rgba(240,237,232,0.04); position: absolute; top: .5rem; right: 1.25rem;
  line-height: 1; pointer-events: none;
}
.ch-tag {
  font-family: var(--font-mono); font-size: .55rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .75rem; display: block;
}
.challenge-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: .75rem;
}
.challenge-card p { font-size: .85rem; color: var(--ink2); line-height: 1.7; }

@media (max-width: 768px) { .challenge-grid { grid-template-columns: 1fr; } }

/* ─── TACTICAL TOOL ─── */
.tactical-buckets {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.bucket-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem 1.5rem; text-align: center;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.bucket-card:hover { transform: translateY(-3px); }
.bucket-card-red { border-color: var(--border-red); }
.bucket-card-red:hover { border-color: var(--red); }
.bucket-card-cyan { border-color: var(--border-cyan); }
.bucket-card-cyan:hover { border-color: var(--cyan); }
.bucket-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.bucket-card h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: .5rem;
}
.bucket-card p { font-size: .82rem; color: var(--ink2); line-height: 1.65; }
.bucket-tag {
  font-family: var(--font-mono); font-size: .5rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink3); margin-top: 1rem; display: inline-block;
  padding: .2rem .5rem; border: 1px solid var(--border); border-radius: 2px;
}
.mockup-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 3rem;
}
.mockup-placeholder {
  aspect-ratio: 3/4; background: var(--card);
  border: 1px dashed rgba(255,255,255,0.1); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center; gap: .75rem;
  transition: border-color .3s;
}
.mockup-placeholder:hover { border-color: rgba(0,212,255,0.3); }
.mockup-placeholder .mp-icon {
  font-size: 1.5rem; opacity: .3;
}
.mockup-placeholder span {
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink3);
  line-height: 1.5;
}
.tactical-context {
  margin-top: 3rem; padding: 2rem;
  background: var(--card); border: 1px solid var(--border-cyan);
  border-radius: 8px;
}
.tactical-context p { font-size: .88rem; color: var(--ink2); line-height: 1.75; }

@media (max-width: 768px) {
  .tactical-buckets { grid-template-columns: 1fr; }
  .mockup-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .mockup-grid { grid-template-columns: 1fr; } }

/* ─── OUTCOME SECTION ─── */
.outcome-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin: 4rem 0 3rem;
}
.outcome-metric {
  text-align: center; padding: 3rem 2rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--card);
}
.om-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900; line-height: 1; color: var(--ink);
  display: block; letter-spacing: -0.02em;
}
.om-suffix {
  font-size: clamp(1.5rem, 4vw, 3rem); color: var(--ink3);
}
.om-label {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink3); margin-top: 1.25rem; display: block;
}
.om-sublabel {
  font-family: var(--font-body); font-size: .8rem;
  color: var(--ink2); margin-top: .5rem; display: block;
}
.om-red { border-color: var(--border-red); }
.om-red .om-num { color: var(--red); }
.om-cyan { border-color: var(--border-cyan); }
.om-cyan .om-num { color: var(--cyan); }
.outcome-zero {
  text-align: center; margin: 2rem 0 3rem;
  padding: 2rem;
}
.oz-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900; color: var(--ink);
  line-height: 1; display: block;
}
.oz-label {
  font-family: var(--font-mono); font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink3); margin-top: 1rem; display: block;
}
.outcome-note {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem; margin-top: 2rem;
}
.on-label {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem; display: block;
}
.outcome-note h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: .75rem;
}
.outcome-note p { font-size: .88rem; color: var(--ink2); line-height: 1.75; }

@media (max-width: 768px) { .outcome-metrics { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ─── ANCHOR QUOTE ─── */
.anchor-quote-section {
  padding: 7rem 0; position: relative;
  border-top: 1px solid var(--border);
}
.anchor-rule {
  width: 60px; height: 2px; margin: 0 auto 3rem;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}
.anchor-blockquote {
  max-width: 780px; margin: 0 auto; text-align: center;
  padding: 0 2rem;
}
.anchor-blockquote p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic; line-height: 1.85; color: var(--ink);
  margin-bottom: 2rem;
}
.anchor-blockquote cite {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink3); font-style: normal;
}

/* ─── ACT OPENER SHADOW OVERLAY ─── */
.act-opener::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,9,0.65) 0%,
    rgba(5,5,9,0.35) 30%,
    rgba(5,5,9,0.35) 70%,
    rgba(5,5,9,0.65) 100%
  );
  pointer-events: none;
}
.act-opener-overlay { z-index: 1; }

/* ─── CYAN RUPTURE LABEL ─── */
.rupture-cyan .rupture-label {
  background: rgba(0,212,255,0.2);
  color: var(--cyan);
}

/* ─── TACTICAL TOOL — SIDE LAYOUT ─── */
.tactical-side-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  overflow: hidden;
}
.tactical-img-side img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.tactical-info-side h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .75rem;
}
.tactical-info-side p {
  font-size: .88rem;
  color: var(--ink2);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .tactical-side-layout { grid-template-columns: 1fr; }
}

/* ─── OUTCOME NOTE — SIDE LAYOUT ─── */
.outcome-note-side {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2rem;
}
.outcome-note-text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .75rem;
}
.outcome-note-text p {
  font-size: .88rem;
  color: var(--ink2);
  line-height: 1.75;
}
.outcome-note-img img {
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .outcome-note-side {
    grid-template-columns: 1fr;
  }
  .outcome-note-img { order: -1; }
  .outcome-note-img img { max-width: 300px; }
}

/* ─── VOICE BLOCK ─── */
.voice-block {
  background: var(--card);
  border: 1px solid var(--border-cyan);
  border-radius: 8px;
  padding: 2.5rem;
}
.voice-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.voice-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.voice-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .75rem;
}
.voice-content p {
  font-size: .88rem;
  color: var(--ink2);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .voice-inner { flex-direction: column; gap: 1rem; }
}

/* ─── PAGE LOADER ─── */
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.loaded {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.loader-inner { text-align: center; }

.ai-matrix-loader {
  width: 120px; height: 160px;
  margin: 0 auto; position: relative;
  perspective: 800px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
}
.digit {
  color: var(--cyan); font-family: var(--font-mono);
  font-size: 18px; text-align: center;
  text-shadow: 0 0 5px var(--cyan);
  animation: matrix-fall 2s infinite, matrix-flicker 0.5s infinite;
  opacity: 0;
}
.digit:nth-child(1)  { animation-delay: 0.1s; }
.digit:nth-child(2)  { animation-delay: 0.2s; }
.digit:nth-child(3)  { animation-delay: 0.3s; }
.digit:nth-child(4)  { animation-delay: 0.4s; }
.digit:nth-child(5)  { animation-delay: 0.5s; }
.digit:nth-child(6)  { animation-delay: 0.6s; }
.digit:nth-child(7)  { animation-delay: 0.7s; }
.digit:nth-child(8)  { animation-delay: 0.8s; }
.digit:nth-child(9)  { animation-delay: 0.9s; }
.digit:nth-child(10) { animation-delay: 1.0s; }
.digit:nth-child(11) { animation-delay: 1.1s; }
.digit:nth-child(12) { animation-delay: 1.2s; }

.glow {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  animation: matrix-pulse 2s infinite;
}

@keyframes matrix-fall {
  0%       { transform: translateY(-50px) rotateX(90deg); opacity: 0; }
  20%, 80% { transform: translateY(0) rotateX(0deg); opacity: 0.8; }
  100%     { transform: translateY(50px) rotateX(-90deg); opacity: 0; }
}
@keyframes matrix-flicker {
  0%, 19%, 21%, 100% { opacity: 0.8; }
  20%                { opacity: 0.2; }
}
@keyframes matrix-pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.7; }
}
