/* =========================================================
   sectores · cinema treatment + manifesto typography
   layered over the brand kit, locally scoped where possible
   ========================================================= */

/* Page goes black under the cinema. */
body { background: #000; }

/* ===================== HERO CINEMA ===================== */
.cinema-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 76px - 36px);
  min-height: 640px;
  background: #000;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cinema-hero .stage,
.cinema-strip .stage {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 30% 40%, #0c1422 0%, #050708 60%, #000 100%);
  overflow: hidden;
}
/* the placeholder <video> sits on top of .stage if user drops a file */
.cinema-hero video,
.cinema-strip video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.92);
  z-index: 1;
}

/* real photo still reused from the previous site, framed like a film frame */
.cinema-hero .cinema-still,
.cinema-strip .cinema-still,
.pc-cinema .cinema-still {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.9);
  z-index: 1;
}

/* --- moving abstract "scene" beneath the (missing) video ---- */
.scene-layer {
  position: absolute; inset: 0;
  pointer-events: none;
}
.scene-layer .horizon {
  position: absolute; left: 0; right: 0; top: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 30%, rgba(0,148,6,0.4) 60%, transparent 100%);
  filter: blur(0.4px);
}
.scene-layer .horizon::before,
.scene-layer .horizon::after {
  content: ""; position: absolute; left: 0; right: 0;
}
.scene-layer .horizon::before {
  top: -180px; height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.025) 100%);
}
.scene-layer .horizon::after {
  top: 0; height: 240px;
  background: linear-gradient(to bottom, rgba(0,148,6,0.04) 0%, transparent 100%);
}

/* drifting silhouette suggesting a van moving across frame */
.scene-layer .van-shadow {
  position: absolute;
  top: 52%;
  left: -30%;
  width: 36%;
  height: 12%;
  background: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
  filter: blur(8px);
  opacity: 0.85;
  animation: drift 22s linear infinite;
}
.scene-layer .van-shadow.b {
  top: 56%;
  width: 22%; height: 8%;
  animation-duration: 38s;
  animation-delay: -8s;
  opacity: 0.55;
}
@keyframes drift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(360%); }
}

/* sweeping headlight cones */
.scene-layer .beam {
  position: absolute;
  top: 30%;
  left: -40%;
  width: 80%;
  height: 60%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,236,200,0.18) 0%, rgba(255,236,200,0.05) 40%, transparent 70%);
  filter: blur(20px);
  animation: sweep 14s ease-in-out infinite;
}
.scene-layer .beam.b {
  animation-delay: -7s;
  animation-duration: 22s;
  top: 35%;
  opacity: 0.6;
}
@keyframes sweep {
  0%   { transform: translateX(0) scale(1); opacity: 0; }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.6; }
  100% { transform: translateX(160%) scale(1.4); opacity: 0; }
}

/* a slow breathing color cast */
.scene-layer .cast {
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 70% 30%, rgba(0,148,6,0.18) 0%, transparent 60%);
  mix-blend-mode: screen;
  animation: breathe 12s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.06); }
}

/* film grain (SVG noise) */
.scene-layer .grain {
  position: absolute; inset: -10%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.32;
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: grain 0.9s steps(8) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-2%,-3%); }
  20%  { transform: translate(-4%, 2%); }
  30%  { transform: translate( 4%,-1%); }
  40%  { transform: translate(-1%, 5%); }
  50%  { transform: translate(-3%,-2%); }
  60%  { transform: translate( 2%,-5%); }
  70%  { transform: translate( 5%, 1%); }
  80%  { transform: translate(-2%, 4%); }
  90%  { transform: translate( 1%,-3%); }
  100% { transform: translate(0,0); }
}

/* vignette */
.scene-layer .vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.75) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 30%);
}

/* aspect ratio variants (per sector tint) */
.scene-layer.tint-dawn .cast {
  background: radial-gradient(70% 60% at 50% 30%, rgba(120,180,230,0.22) 0%, transparent 60%);
}
.scene-layer.tint-dusk .cast {
  background: radial-gradient(70% 60% at 80% 40%, rgba(255,170,90,0.22) 0%, transparent 60%);
}
.scene-layer.tint-fog .cast {
  background: radial-gradient(70% 60% at 40% 50%, rgba(220,225,230,0.18) 0%, transparent 60%);
}
.scene-layer.tint-night .cast {
  background: radial-gradient(70% 60% at 60% 35%, rgba(40,80,140,0.30) 0%, transparent 60%);
}

/* Broadcast watermark — e-auto logo sutil sobre el video del hero
   (posicionado sobre el HUD .br, separado de "SANTIAGO · CHILE") */
.hero-watermark {
  position: absolute;
  top: 96px;
  right: 28px;
  z-index: 6;
  width: clamp(120px, 12vw, 170px);
  aspect-ratio: 2.11 / 1;
  pointer-events: none;
  opacity: 0.88;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.6));
  transition: opacity 0.4s var(--ease);
}
.hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cinema-hero:hover .hero-watermark { opacity: 1; }
@media (max-width: 880px) {
  .hero-watermark {
    top: 80px;
    right: 18px;
    width: 110px;
    opacity: 0.78;
  }
}

/* hard cinema letterbox bars (inside an already 2.39:1 box, they add weight) */
.cinema-strip .bars {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 4;
}
.cinema-strip .bars::before,
.cinema-strip .bars::after {
  content: ""; position: absolute; left: 0; right: 0;
  height: 12px;
  background: #000;
}
.cinema-strip .bars::before { top: 0; }
.cinema-strip .bars::after { bottom: 0; }

/* HUD / on-set overlays */
.cinema-hud {
  position: absolute; inset: 0;
  z-index: 5;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  pointer-events: none;
}
.cinema-hud .corner {
  position: absolute;
  padding: 22px 28px;
  display: flex; gap: 14px; align-items: center;
}
.cinema-hud .tl { top: 0; left: 0; }
.cinema-hud .tr { top: 0; right: 0; text-align: right; flex-direction: row-reverse; }
.cinema-hud .bl { bottom: 0; left: 0; }
.cinema-hud .br { bottom: 0; right: 0; text-align: right; flex-direction: row-reverse; }
.cinema-hud .rec {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.cinema-hud .rec::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: rec-blink 1.4s ease-in-out infinite;
}
@keyframes rec-blink {
  0%, 60% { opacity: 1; }
  61%, 100% { opacity: 0.15; }
}
.cinema-hud .tc { color: rgba(255,255,255,0.92); font-weight: 500; }
.cinema-hud .scn { color: rgba(255,255,255,0.55); }
.cinema-hud .crosshair {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  border: 1px solid rgba(255,255,255,0.18);
}
.cinema-hud .crosshair::before,
.cinema-hud .crosshair::after {
  content: ""; position: absolute;
  background: rgba(255,255,255,0.45);
}
.cinema-hud .crosshair::before {
  top: 50%; left: -8px; right: -8px; height: 1px;
}
.cinema-hud .crosshair::after {
  left: 50%; top: -8px; bottom: -8px; width: 1px;
}

/* hero-only manifesto overlay (centered, huge) */
.cinema-hero .wrap {
  position: relative;
  z-index: 6;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 72px;
}
.cinema-hero .breadcrumb {
  position: absolute;
  top: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; align-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 7;
}
.cinema-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.cinema-hero .breadcrumb a:hover { color: var(--green); }
.cinema-hero .breadcrumb .here { color: rgba(255,255,255,0.95); }
.cinema-hero .breadcrumb .sep { color: rgba(255,255,255,0.25); }

.manifesto-lede {
  font-family: var(--font);
  font-weight: 200;
  font-size: clamp(48px, 8.5vw, 148px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 22ch;
  margin: 0 0 28px;
  text-wrap: balance;
}
.manifesto-lede em {
  font-style: normal;
  font-weight: 600;
  color: var(--green);
}
.manifesto-lede .strike {
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,0.45);
}
.manifesto-lede .strike::after {
  content: ""; position: absolute;
  left: -2%; right: -2%;
  top: 55%;
  height: 4px;
  background: var(--green);
  transform: rotate(-2deg);
}
.manifesto-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  letter-spacing: 0.005em;
}
.manifesto-sub strong {
  color: #fff;
  font-weight: 500;
}

/* ===================== MANIFESTO BAND ===================== */
.manifesto-band {
  background: #000;
  color: #fff;
  padding: 140px 0 120px;
  position: relative;
}
.manifesto-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
}
.manifesto-band .wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.manifesto-band .side {
  position: sticky; top: 132px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.manifesto-band .side .label {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 24px;
}
.manifesto-band .side .label::before {
  content: ""; width: 24px; height: 1px; background: var(--green);
}
.manifesto-band .side .index {
  display: flex; flex-direction: column; gap: 12px;
  color: rgba(255,255,255,0.35);
}
.manifesto-band .side .index span { display: block; }
.manifesto-band .side .index .on { color: #fff; }

.manifesto-statements {
  display: flex; flex-direction: column;
  gap: 8px;
}
.manifesto-statements p {
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.92);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-wrap: pretty;
}
.manifesto-statements p:last-child { border-bottom: none; }
.manifesto-statements .num {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--green);
  vertical-align: 0.5em;
  margin-right: 18px;
}
.manifesto-statements em {
  font-style: normal;
  color: #fff;
  font-weight: 500;
}
.manifesto-statements .accent {
  font-style: normal;
  color: var(--green);
  font-weight: 500;
}

/* ===================== SUBNAV OVERRIDE (on black) ===================== */
.subnav.on-black {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.subnav.on-black .subnav-links a {
  color: rgba(255,255,255,0.6);
}
.subnav.on-black .subnav-links a:hover,
.subnav.on-black .subnav-links a.active {
  color: #fff;
}

/* ===================== SECTOR SCENES ===================== */
.sector-scene {
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cinema-strip {
  position: relative;
  width: 100%;
  aspect-ratio: 2.39 / 1;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.cinema-strip.tall { aspect-ratio: 16 / 9; }

/* caption that sits inside the cinema strip, lower-thirds style */
.lower-thirds {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  padding: 0 0 56px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  pointer-events: none;
}
.lower-thirds .wrap {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px;
}
.lower-thirds .quote {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #fff;
  max-width: 22ch;
  text-wrap: balance;
}
.lower-thirds .quote::before {
  content: "“";
  display: block;
  font-size: 1em;
  line-height: 0.6;
  color: var(--green);
  margin-bottom: 4px;
}
.lower-thirds .quote-attr {
  margin-top: 14px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.lower-thirds .timestamp {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: right;
  line-height: 1.8;
}
.lower-thirds .timestamp .big {
  display: block;
  font-family: var(--font);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

/* sector text panel below the cinema strip */
.sector-essay {
  padding: 100px 0 120px;
}
.sector-essay .wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.sector-essay .meta {
  position: sticky; top: 132px;
}
.sector-essay .meta .index {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--green);
  margin-bottom: 24px;
}
.sector-essay .meta h2 {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
  text-wrap: balance;
}
.sector-essay .meta h2 em {
  font-style: normal;
  color: var(--green);
  font-weight: 300;
}
.sector-essay .meta .tags-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 32px;
}
.sector-essay .meta .tags-row span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 10px;
}
.sector-essay .meta .cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.sector-essay .meta .cta-row .btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 22px;
  font-size: 12.5px;
}
.sector-essay .meta .cta-row .btn:hover {
  border-color: var(--green);
  background: var(--green);
  color: #000;
}

.sector-essay .copy p {
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.sector-essay .copy p:first-child {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 32px;
}
.sector-essay .copy p strong {
  color: #fff;
  font-weight: 500;
}
.sector-essay .copy p em {
  font-style: normal;
  color: var(--green);
}

/* poetic stats — number-as-verse */
.verse-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.verse-stats .vs {
  padding: 28px 24px 28px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.verse-stats .vs:last-child { border-right: none; padding-right: 0; }
.verse-stats .vs .n {
  font-family: var(--font);
  font-weight: 200;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 4px;
}
.verse-stats .vs .n .u {
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
  vertical-align: 0.6em;
}
.verse-stats .vs .l {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===================== COVENANT BAND (closing manifesto) ===================== */
.covenant {
  position: relative;
  background: #000;
  padding: 160px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.covenant .bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(180px, 28vw, 520px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.covenant .wrap { position: relative; z-index: 1; }
.covenant .sig {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 12px;
}
.covenant .sig::before {
  content: ""; width: 32px; height: 1px; background: var(--green);
}
.covenant h2 {
  font-size: clamp(48px, 6.5vw, 108px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 18ch;
  text-wrap: balance;
}
.covenant h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--green);
}
.covenant .pledge-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.covenant .pledge {
  padding: 36px 32px 36px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.covenant .pledge:last-child { border-right: none; }
.covenant .pledge .k {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.covenant .pledge p {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  text-wrap: pretty;
}
.covenant .pledge p strong {
  color: #fff;
  font-weight: 500;
}

/* ===================== STATS BAND (on black) ===================== */
.stats-band.on-black {
  background: #000;
  color: #fff;
  padding: 0 0 120px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-band.on-black .stats-grid {
  padding-top: 80px;
}
.stats-band.on-black .stat .num {
  color: #fff;
  font-weight: 200;
  font-size: clamp(44px, 4.8vw, 72px);
}
.stats-band.on-black .stat .num .u {
  color: rgba(255,255,255,0.5);
}
.stats-band.on-black .stat .label {
  color: rgba(255,255,255,0.55);
}

/* ===================== FINAL CTA OVERRIDE ===================== */
.final-cta.cinema {
  background: #000;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.final-cta.cinema h2 {
  font-weight: 300;
}
.final-cta.cinema h2 em {
  font-weight: 600;
  font-style: normal;
  color: var(--green);
}
.final-cta.cinema .final-cta-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}

/* footer keeps existing dark styling — already on-ink */

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .manifesto-band .wrap { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-band .side { position: static; }
  .sector-essay .wrap { grid-template-columns: 1fr; gap: 40px; }
  .sector-essay .meta { position: static; }
  .verse-stats { grid-template-columns: 1fr; }
  .verse-stats .vs { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-right: 0; }
  .covenant .pledge-grid { grid-template-columns: 1fr; }
  .covenant .pledge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; }
  .lower-thirds .wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .lower-thirds .timestamp { text-align: left; }
  .cinema-hero { height: auto; min-height: 0; padding: 140px 0 80px; }
  .manifesto-lede { font-size: clamp(40px, 11vw, 80px); }
}
@media (max-width: 720px) {
  .cinema-hud .corner { padding: 14px 16px; font-size: 9px; }
  .lower-thirds { padding-bottom: 32px; }
  .lower-thirds .quote { font-size: 20px; }
}

/* =========================================================
   MOBILE REFINEMENTS · cinema treatment
   Limpia HUDs solapados, ajusta tipografía manifiesto a
   anchos reales de móvil, comprime padding y reduce ruido
   visual sin perder el lenguaje cinematográfico.
   ========================================================= */
@media (max-width: 880px) {
  /* Hero cinema: altura natural, sin huecos negros gigantes */
  .cinema-hero {
    height: auto;
    min-height: 0;
    padding: 88px 0 48px;
  }
  .cinema-hero .wrap {
    height: auto;
    padding-bottom: 24px;
    padding-top: 24px;
  }

  /* Manifesto-lede: la frase principal cabe sin overflow */
  .manifesto-lede {
    font-size: clamp(34px, 9vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: none;
    overflow-wrap: break-word;
  }
  /* Suprimimos los <br/> editoriales para que el texto fluya
     en móvil (caben en una sola tipografía menor) */
  .manifesto-lede br { display: none; }

  .manifesto-sub {
    font-size: 14.5px;
    line-height: 1.55;
    max-width: 38ch;
  }

  /* HUD cinematográfico: solo top-left (REC + timecode) */
  .cinema-hud .crosshair { display: none; }
  .cinema-hud .tr,
  .cinema-hud .bl,
  .cinema-hud .br { display: none; }
  .cinema-hud .corner { padding: 12px 14px; font-size: 9px; gap: 8px; }
  .cinema-hud .tl .scn { display: none; }
  .cinema-hud .tl { gap: 8px; }
  .cinema-hud .tc { font-size: 9px; }

  /* Watermark molesta en móvil — se oculta */
  .hero-watermark { display: none; }

  /* Manifesto band */
  .manifesto-band { padding: 72px 0 64px; }
  .manifesto-band .wrap { gap: 28px; }
  .manifesto-band .side {
    font-size: 9.5px;
    letter-spacing: 0.18em;
  }
  .manifesto-band .side .label { margin-bottom: 18px; }
  .manifesto-band .side .index { gap: 8px; }

  .manifesto-statements { gap: 0; }
  .manifesto-statements p {
    font-size: 19px;
    line-height: 1.32;
    padding: 20px 0;
    letter-spacing: -0.005em;
  }
  /* Numerales del manifiesto en bloque superior (no inline) */
  .manifesto-statements .num {
    display: block;
    font-size: 10px;
    margin-right: 0;
    margin-bottom: 8px;
    vertical-align: baseline;
    color: var(--green);
  }

  /* Chapter strip: títulos más contenidos, sin HUD que pise el título */
  .chapter-strip {
    aspect-ratio: 16 / 11;
    max-height: 64vh;
  }
  .chapter-strip .cinema-hud { display: none; }

  /* Sector essay */
  .sector-essay { padding: 56px 0 64px; }
  .sector-essay .wrap { gap: 24px; }
  .sector-essay .meta h2 {
    font-size: clamp(26px, 8vw, 52px);
    margin-bottom: 18px;
  }
  .sector-essay .meta .tags-row { gap: 6px; margin-bottom: 24px; }
  .sector-essay .meta .tags-row span { font-size: 9px; padding: 5px 8px; }
  .sector-essay .copy p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .sector-essay .copy p:first-child {
    font-size: 17.5px;
    line-height: 1.45;
    margin-bottom: 22px;
  }
  .verse-stats {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }
  .verse-stats .vs {
    padding: 18px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .verse-stats .vs:last-child { border-bottom: none; }
  .verse-stats .vs .n { font-size: clamp(34px, 11vw, 56px); }

  /* Covenant */
  .covenant { padding: 88px 0 80px; }
  .covenant h2 {
    font-size: clamp(34px, 10vw, 88px);
    max-width: 14ch;
  }
  .covenant .bg-text {
    font-size: clamp(140px, 36vw, 320px);
    opacity: 0.6;
  }
  .covenant .pledge-grid { margin-top: 40px; }
  .covenant .pledge {
    padding: 22px 0;
    border-right: none;
  }
  .covenant .pledge p { font-size: 16px; line-height: 1.5; }
  .covenant .pledge .k { margin-bottom: 12px; }
  .covenant .sig { margin-bottom: 22px; }

  /* Stats band on black */
  .stats-band.on-black { padding: 0 0 72px; }
  .stats-band.on-black .stats-grid { padding-top: 56px; }
  .stats-band.on-black .stat .num { font-size: clamp(34px, 11vw, 56px); }
  .stats-band.on-black .stat .label { font-size: 12px; }

  /* Lower thirds */
  .lower-thirds { padding-bottom: 24px; }
  .lower-thirds .wrap { gap: 14px; }
  .lower-thirds .quote {
    font-size: 17px;
    line-height: 1.25;
    max-width: none;
  }
  .lower-thirds .quote-attr { font-size: 9.5px; margin-top: 10px; }
  .lower-thirds .timestamp { font-size: 10px; }
  .lower-thirds .timestamp .big { font-size: 32px; margin-bottom: 4px; }

  /* Final CTA cinema */
  .final-cta.cinema .wrap { padding: 64px 0; }
  .final-cta.cinema .final-cta-form { padding: 24px 22px; }
}

@media (max-width: 560px) {
  .manifesto-lede { font-size: clamp(30px, 10vw, 56px); }
  .manifesto-statements p { font-size: 18px; padding: 18px 0; }
  .covenant h2 { font-size: clamp(32px, 11vw, 72px); }
}

/* =========================================================
   COSTURA EDITORIAL · cinema sections
   Extiende el patrón de hairline centrado a las secciones
   cinematográficas (products-cinema, scenes-index, covenant,
   sector-essay, manifesto-band, tco.cinema).
   ========================================================= */
@media (max-width: 880px) {
  /* Más respiración entre secciones cinema */
  .manifesto-band { padding: 96px 0 80px; }
  .products-cinema { padding: 0 0 96px; }
  .products-cinema .wrap { padding-top: 88px; }
  .tco.cinema { padding: 96px 0; }
  .scenes-index { padding: 96px 0; }
  .covenant { padding: 104px 0 96px; }
  .sector-essay { padding: 72px 0 88px; }
  .stats-band.on-black { padding: 0 0 88px; }
  .stats-band.on-black .stats-grid { padding-top: 64px; }

  .products-cinema,
  .tco.cinema,
  .scenes-index,
  .covenant,
  .sector-essay,
  .stats-band.on-black,
  .final-cta.cinema {
    position: relative;
  }

  .products-cinema::after,
  .tco.cinema::after,
  .scenes-index::after,
  .covenant::after,
  .sector-essay::after,
  .stats-band.on-black::after,
  .final-cta.cinema::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 148, 6, 0.6) 50%,
      transparent 100%
    );
    z-index: 4;
    pointer-events: none;
  }

  /* Manifesto-band ya tiene un hairline full-width sutil
     (gradiente blanco a 0.18 opacity); reforzamos con un
     trazo verde corto encima para mantener la jerarquía */
  .manifesto-band::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 148, 6, 0.6) 50%,
      transparent 100%
    );
    z-index: 4;
    pointer-events: none;
  }
}