/* =====================================================================
   MTV landing v3 — "THE SCREENING ROOM", proof-first recut (2026-07-09).
   Promoted from the /v3/ design prototype (static/v3/FLOWS.md), then
   recut off subscriptions entirely: the composer leads to a free
   watermarked proof, and money buys clean unlocks + one-time "kits"
   (SC.03 — The Offer) sized for the job. No season passes, no per-video
   cost ladder — see PROOF_FIRST_PLAN.md for the model.

   Loads AFTER variables.css/base.css/mtv.css and overrides them under
   the body.cinema scope. The mtv.css light theme still styles the
   injected overlays (auth modal) — those stay light on purpose, like a
   checkout sheet over a dark theater.
   ===================================================================== */

:root {
  /* Palette + atmosphere live in screening-room-core.css (shared with the
     mid-funnel cinema.css theme) — this file only layers landing components
     and page-scale tokens on top. */

  /* ---- Typography ---- */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-ui:      'Schibsted Grotesk', -apple-system, sans-serif;
  --font-mono:    'Spline Sans Mono', 'SF Mono', Menlo, monospace;

  --t-hero:    clamp(2.5rem, 5.4vw, 4.4rem);
  --t-section: clamp(1.7rem, 3.6vw, 2.6rem);
  --t-lede:    clamp(1.02rem, 1.6vw, 1.18rem);

  /* ---- Geometry — flat, filmic ---- */
  --r-1: 3px;
  --r-2: 6px;

  /* ---- Motion ---- */
  --ease-reel: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.6, 0, 0.2, 1);
  --d-fast: 160ms;
  --d-base: 320ms;
  --d-slow: 640ms;

  /* ---- Rhythm ---- */
  --gutter: clamp(20px, 4vw, 56px);
  --section-gap: clamp(80px, 11vw, 150px);
  --max-w: 1280px;

  --glow-tungsten: 0 0 0 1px rgba(233,161,59,.35), 0 0 44px rgba(233,161,59,.18);

  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------------------------------------------------------------------
   Page base
   --------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body.cinema {
  /* Remap the light-theme text vars: topbar.js/auth-modal inject inline
     `color: var(--text-muted)` styles, which must resolve to projector
     ivory here, not the light theme's violet-gray. */
  --text-primary: var(--paper);
  --text-muted: var(--paper-dim);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.cinema img, body.cinema video { display: block; max-width: 100%; }
body.cinema h1, body.cinema h2, body.cinema h3 { font-weight: 400; }
/* ::selection, [hidden] guard, grain + vignette: screening-room-core.css */

@media (prefers-reduced-motion: reduce) {
  body.cinema * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.l3-page { position: relative; z-index: 1; }

/* Skip link for keyboard users */
.l3-skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--tungsten); color: var(--on-tungsten);
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em;
  padding: 10px 16px; text-decoration: none;
}
.l3-skip:focus { left: 12px; top: 12px; }

/* Layout primitives */
.l3-container { max-width: var(--max-w); margin: 0 auto; padding-inline: var(--gutter); }
.l3-section { padding-block: calc(var(--section-gap) / 2); }

/* Scene slate — SC.01 ─────────── THE PROOF */
.l3-slate {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.l3-slate .num { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .18em; color: var(--tungsten); white-space: nowrap; }
.l3-slate .rule { flex: 1; height: 1px; background: var(--line-soft); align-self: center; }
.l3-slate .label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--paper-faint); white-space: nowrap; }

.l3-section-title { font-family: var(--font-display); font-size: var(--t-section); line-height: 1.08; letter-spacing: -0.01em; color: var(--paper); }
.l3-section-title em { font-style: italic; color: var(--tungsten); }
.l3-section-sub { color: var(--paper-dim); font-size: var(--t-lede); max-width: 56ch; margin-top: 14px; }

/* ---------------------------------------------------------------------
   Topbar — dark restyle over the .mtv-topbar structural rules that
   mtv.css provides (anon-only hiding, mobile CTA hiding, badge layout).
   --------------------------------------------------------------------- */
.cinema .mtv-topbar {
  position: sticky; top: 0; z-index: 100;
  border-radius: 0;
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: none;
}
.cinema .mtv-topbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 13px var(--gutter);
  display: flex; align-items: center; gap: 24px;
}
.l3-brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.l3-brand .mark { font-family: var(--font-display); font-size: 1.45rem; line-height: 1; letter-spacing: -.01em; color: var(--paper); }
.l3-brand .mark em { font-style: italic; color: var(--tungsten); }
.l3-brand .est { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .2em; color: var(--paper-faint); text-transform: uppercase; }
.l3-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.cinema .mtv-topbar .l3-nav a:not(.l3-btn),
.cinema .mtv-topbar .mtv-nav-link {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--paper-dim); text-decoration: none; transition: color var(--d-fast) var(--ease-snap);
}
.cinema .mtv-topbar .l3-nav a:not(.l3-btn):hover,
.cinema .mtv-topbar .mtv-nav-link:hover { color: var(--paper); }

/* Signed-in credit pill (injected by topbar.js with mtv- classes) */
.cinema .mtv-credit-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-1); padding: 6px 12px;
  font-family: var(--font-mono); font-size: .72rem; color: var(--paper);
  cursor: pointer; transition: border-color var(--d-fast);
}
.cinema .mtv-credit-pill:hover { border-color: var(--tungsten); }
.cinema .mtv-credit-pill-icon { color: var(--tungsten); font-size: .6rem; }
.cinema .mtv-credit-pill-sub { color: var(--paper-faint); text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; }
.cinema #userBadge { display: inline-flex; align-items: center; gap: 12px; }

@media (max-width: 640px) {
  .l3-brand .est { display: none; }
  .l3-brand .mark { font-size: 1.2rem; }
  .l3-nav { gap: 12px; }
  .cinema .mtv-topbar-inner { gap: 12px; }
}

/* ---------------------------------------------------------------------
   Buttons — marquee-bulb amber primary, hairline ghost secondary.
   --------------------------------------------------------------------- */
.l3-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  padding: 15px 26px; border-radius: var(--r-1); border: 0; cursor: pointer;
  transition: transform var(--d-fast) var(--ease-snap), box-shadow var(--d-base) var(--ease-reel),
              background var(--d-fast) var(--ease-snap), color var(--d-fast) var(--ease-snap),
              border-color var(--d-fast) var(--ease-snap);
}
.l3-btn:active { transform: translateY(1px); }
.l3-btn:focus-visible { outline: 2px solid var(--tungsten-hi); outline-offset: 2px; }
.l3-btn-primary { background: var(--tungsten); color: var(--on-tungsten); }
.l3-btn-primary:hover { background: var(--tungsten-hi); box-shadow: var(--glow-tungsten); }
.l3-btn-ghost { border: 1px solid var(--line); color: var(--paper-dim); background: none; }
.l3-btn-ghost:hover { border-color: var(--line-hard); color: var(--paper); }
.l3-btn-block { width: 100%; }
.cinema .mtv-topbar .l3-btn { padding: 10px 18px; font-size: .68rem; }

/* ---------------------------------------------------------------------
   HERO — split: the slate (composer) + the screen (proof).
   --------------------------------------------------------------------- */
.l3-hero {
  display: grid; grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) var(--gutter) clamp(36px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) {
  .l3-hero { grid-template-columns: 1fr; padding-top: 28px; }
}

.l3-eyebrow {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--tungsten);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.l3-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--tungsten); }

.l3-title {
  font-family: var(--font-display);
  font-size: var(--t-hero); line-height: 1.02; letter-spacing: -0.015em;
  color: var(--paper);
  text-wrap: balance;
}
.l3-title em { font-style: italic; color: var(--tungsten-hi); }

.cinema .l2-sub {
  margin-top: 18px; max-width: 46ch;
  font-size: var(--t-lede); color: var(--paper-dim);
}
.cinema .l2-sub strong { color: var(--paper); font-weight: 600; }

/* staggered entrance */
.l3-hero-copy > * { opacity: 0; transform: translateY(20px); animation: l3-rise .8s var(--ease-reel) forwards; }
.l3-hero-copy > *:nth-child(2) { animation-delay: .1s; }
.l3-hero-copy > *:nth-child(3) { animation-delay: .2s; }
.l3-hero-copy > *:nth-child(4) { animation-delay: .3s; }
.l3-hero-copy > *:nth-child(5) { animation-delay: .4s; }
@keyframes l3-rise { to { opacity: 1; transform: none; } }

/* Intent chips — swap the composer placeholder + highlight the matching
   offer card below (SC.03). Purely presentational state, no routing. */
.l3-intent { margin-top: 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.l3-intent-label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--paper-faint); }
.l3-intent-chips { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.l3-intent-chip {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--paper-dim); background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; cursor: pointer;
  transition: color var(--d-fast), border-color var(--d-fast), background var(--d-fast);
}
.l3-intent-chip:hover { border-color: var(--line-hard); color: var(--paper); }
.l3-intent-chip.active { background: var(--tungsten); border-color: var(--tungsten); color: var(--on-tungsten); }
.l3-intent-chip:focus-visible { outline: 2px solid var(--tungsten-hi); outline-offset: 2px; }

/* The slate — prompt composer */
.l3-slate-card {
  margin-top: 26px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-2); padding: 16px;
}
.l3-slate-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 10px;
}
.l3-slate-label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--paper-faint); }

/* mode toggle — two mono tabs */
.l3-modes { display: inline-flex; border: 1px solid var(--line); border-radius: var(--r-1); overflow: hidden; }
.l3-mode-btn {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper-faint); background: none; border: 0; cursor: pointer;
  padding: 7px 12px;
  transition: color var(--d-fast), background var(--d-fast);
}
.l3-mode-btn:hover { color: var(--paper-dim); }
.l3-mode-btn.active { background: var(--tungsten); color: var(--on-tungsten); }
.l3-mode-btn:focus-visible { outline: 2px solid var(--tungsten-hi); outline-offset: -2px; }

.l3-prompt-input {
  width: 100%; min-height: 96px; resize: vertical;
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--r-1);
  padding: 13px 15px;
  font-family: var(--font-mono); font-size: .86rem; line-height: 1.7; color: var(--paper);
  caret-color: var(--tungsten);
  transition: border-color var(--d-fast), box-shadow var(--d-base);
}
.l3-prompt-input::placeholder { color: var(--paper-ghost); }
.l3-prompt-input:focus { outline: none; border-color: var(--tungsten); box-shadow: 0 0 0 1px var(--tungsten), 0 0 30px rgba(233,161,59,.1); }

/* photo-mode pitch */
.l3-photo-pitch { display: flex; gap: 14px; align-items: center; min-height: 96px; padding: 6px 2px; }
.cinema .l2-prompt-photo-thumb {
  width: 74px; height: 74px; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--r-1);
  filter: saturate(.95);
}
.l3-photo-pitch-text { display: grid; gap: 4px; }
.cinema .l2-prompt-photo-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--paper); }
.cinema .l2-prompt-photo-sub { font-size: .82rem; color: var(--paper-faint); max-width: 34ch; }

.cinema .l2-ctas { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.l3-cta-note {
  flex-basis: 100%; margin-top: 2px;
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--paper-faint);
}
.l3-cta-note a { color: var(--tungsten); text-decoration: none; }
.l3-cta-note a:hover { color: var(--tungsten-hi); }
@media (max-width: 560px) {
  .cinema .l2-ctas .l3-btn { flex: 1 1 100%; }
}

/* The screen — letterboxed proof player */
.l3-screenbox { border: 1px solid var(--line-soft); border-radius: var(--r-2); overflow: hidden; background: #000; }
.l3-screen-bar {
  display: flex; align-items: center; gap: 18px;
  padding: 10px 16px;
  background: #000;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--paper-faint);
}
.l3-screen-bar .spacer { flex: 1; }
.l3-screen-bar .rec { display: inline-flex; align-items: center; gap: 8px; color: var(--paper-dim); }
.l3-screen-bar .rec::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--tally); animation: l3-blink 1.2s steps(2) infinite;
}
@keyframes l3-blink { 50% { opacity: .15; } }
.l3-screen-bar .tc { color: var(--tungsten); font-variant-numeric: tabular-nums; }

.l3-screen { position: relative; aspect-ratio: 16 / 9; background: var(--ink-2); }
.l3-screen video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  opacity: 1; transition: opacity 420ms var(--ease-reel);
}
.l3-screen video.is-switching { opacity: 0; }

/* the receipt: prompt + honest cost of the shot on screen */
.l3-receipt {
  border-top: 1px solid var(--line-soft);
  background: #000;
  padding: 12px 16px;
  display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .06em; line-height: 1.6;
  min-height: 62px;
}
.l3-receipt .k { color: var(--tungsten); letter-spacing: .18em; }
.l3-receipt .prompt { color: var(--paper-dim); flex: 1 1 320px; min-width: 0; }
.l3-receipt .cost { color: var(--paper); white-space: nowrap; }
.l3-receipt-source {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--line); border-radius: var(--r-1);
  padding: 3px 8px 3px 3px; cursor: pointer;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper-faint);
  transition: border-color var(--d-fast), color var(--d-fast);
}
.l3-receipt-source:hover { border-color: var(--tungsten); color: var(--tungsten); }
.l3-receipt-source img { width: 26px; height: 26px; object-fit: cover; border-radius: 2px; }

/* ---------------------------------------------------------------------
   Marquee ticker
   --------------------------------------------------------------------- */
.l3-marquee {
  border-block: 1px solid var(--line-soft);
  overflow: hidden; white-space: nowrap;
  padding-block: 13px;
  background: var(--ink-2);
}
.l3-marquee-track { display: inline-flex; animation: l3-marquee 36s linear infinite; }
.l3-marquee:hover .l3-marquee-track { animation-play-state: paused; }
.l3-marquee-item {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper-dim); padding-inline: 28px; display: inline-flex; align-items: center; gap: 28px;
}
.l3-marquee-item::after { content: "✦"; color: var(--tungsten); font-size: .6rem; }
@keyframes l3-marquee { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------------
   SC.01 — THE PROOF: reel grid, hover-play, prompt receipts
   --------------------------------------------------------------------- */
.l3-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); margin-top: 40px; }
@media (max-width: 920px) { .l3-proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .l3-proof-grid { grid-template-columns: 1fr; } }

.l3-clip { position: relative; text-align: left; display: block; width: 100%; background: none; border: 0; padding: 0; cursor: pointer; }
.l3-clip:focus-visible { outline: 2px solid var(--tungsten-hi); outline-offset: 3px; }
.l3-clip-frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--ink-3); border: 1px solid var(--line-soft);
  border-radius: var(--r-1);
}
.l3-clip-frame img, .l3-clip-frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.l3-clip-frame video { opacity: 0; transition: opacity var(--d-base) var(--ease-reel); }
.l3-clip.is-playing .l3-clip-frame video { opacity: 1; }
.l3-clip-frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(242,236,223,.05), inset 0 -42px 42px -22px rgba(0,0,0,.55);
  pointer-events: none;
}
.l3-clip-tc {
  position: absolute; top: 10px; left: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em;
  color: rgba(242,236,223,.85); text-shadow: 0 1px 6px rgba(0,0,0,.8);
  display: flex; align-items: center; gap: 7px;
}
.l3-clip-tc .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tally); opacity: 0; }
.l3-clip.is-playing .l3-clip-tc .dot { opacity: 1; animation: l3-blink 1.1s steps(2) infinite; }
.l3-clip-prompt {
  margin-top: 10px;
  font-family: var(--font-mono); font-size: .72rem; line-height: 1.6;
  color: var(--paper-faint);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--d-base) var(--ease-reel);
}
.l3-clip-prompt::before { content: "PROMPT → "; color: var(--tungsten); letter-spacing: .1em; }
.l3-clip:hover .l3-clip-prompt { color: var(--paper-dim); }

.l3-proof-note {
  margin-top: 34px; text-align: center;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--paper-faint);
}
.l3-proof-note a { color: var(--tungsten); text-decoration: none; }
.l3-proof-note a:hover { color: var(--tungsten-hi); }

/* ---------------------------------------------------------------------
   Sprocket divider
   --------------------------------------------------------------------- */
.l3-sprocket {
  height: 26px; margin-block: calc(var(--section-gap) / 4);
  background-image: repeating-linear-gradient(90deg,
    transparent 0 18px, var(--paper-ghost) 18px 30px, transparent 30px 48px);
  -webkit-mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
          mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  background-size: 48px 12px; background-repeat: repeat-x; background-position: center;
}

/* ---------------------------------------------------------------------
   SC.02 — THE METHOD: 3-step call sheet
   --------------------------------------------------------------------- */
.l3-method { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 40px; }
@media (max-width: 860px) { .l3-method { grid-template-columns: 1fr; } }
.l3-step { background: var(--ink); padding: clamp(26px, 3.6vw, 44px); transition: background var(--d-base) var(--ease-reel); }
.l3-step:hover { background: var(--ink-2); }
.l3-step .n {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem); line-height: 1; color: var(--paper-ghost);
  transition: color var(--d-base) var(--ease-reel);
}
.l3-step:hover .n { color: var(--tungsten); }
.l3-step h3 { font-family: var(--font-display); font-size: 1.55rem; margin-top: 18px; color: var(--paper); }
.l3-step p { margin-top: 10px; color: var(--paper-dim); font-size: .95rem; max-width: 34ch; }
.l3-step .meta { margin-top: 22px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--paper-faint); }
.l3-step .meta b { color: var(--tungsten); font-weight: 500; }

/* ---------------------------------------------------------------------
   SC.03 — THE OFFER: single unlock (hero) + three job-sized kits.
   Highlight state (.is-selected) is driven by the intent chips above the
   fold, defaulting to the single-unlock card — see setIntent() in the
   page script. data-offer/data-price are the CI constants contract
   (validate-constants.mjs diffs these against the Stripe SKU table).
   --------------------------------------------------------------------- */
.l3-offers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 980px) { .l3-offers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .l3-offers { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.l3-offer {
  position: relative; background: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--r-2);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  transition: transform var(--d-base) var(--ease-reel), border-color var(--d-base), box-shadow var(--d-base);
}
.l3-offer:hover { transform: translateY(-4px); border-color: var(--line-hard); }
.l3-offer.is-selected { border-color: var(--tungsten); box-shadow: var(--glow-tungsten); }
.l3-offer .badge {
  position: absolute; top: -11px; left: 22px;
  background: var(--tungsten); color: var(--on-tungsten);
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--r-1); white-space: nowrap;
}
.l3-offer .admit { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--tungsten); }
.l3-offer .name { font-family: var(--font-display); font-size: 1.5rem; margin-top: 8px; color: var(--paper); }
.l3-offer .amount { font-family: var(--font-display); font-size: 2.1rem; line-height: 1.1; margin-top: 2px; color: var(--paper); }
.l3-offer .amount .per { font-size: .8rem; font-family: var(--font-mono); letter-spacing: .1em; color: var(--paper-faint); text-transform: uppercase; }
.l3-offer .perf { border-top: 1px dashed var(--line); margin: 16px 0 14px; }
.l3-offer .pitch { font-size: .85rem; color: var(--paper-dim); margin: 0 0 14px; }
.l3-offer ul { list-style: none; display: grid; gap: 8px; margin: 0 0 20px; padding: 0; }
.l3-offer li { font-size: .82rem; color: var(--paper-dim); padding-left: 18px; position: relative; }
.l3-offer li::before { content: "✦"; position: absolute; left: 0; color: var(--tungsten); font-size: .6rem; top: .3em; }
.l3-offer .l3-btn { margin-top: auto; }

.l3-offers-note {
  margin-top: 22px; text-align: center;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper-faint);
}
.l3-offers-note a { color: var(--tungsten); text-decoration: none; }
.l3-offers-note a:hover { color: var(--tungsten-hi); }

/* ---------------------------------------------------------------------
   SC.04 — THE REGULARS: who ships weekly (kit ICP → pSEO hubs)
   --------------------------------------------------------------------- */
.l3-regulars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 40px; }
@media (max-width: 760px) { .l3-regulars { grid-template-columns: 1fr; } }
.l3-regular { background: var(--ink); padding: clamp(24px, 3.4vw, 40px); text-decoration: none; display: block; transition: background var(--d-base) var(--ease-reel); }
.l3-regular:hover { background: var(--ink-2); }
.l3-regular h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--paper); }
.l3-regular p { margin-top: 8px; color: var(--paper-dim); font-size: .92rem; max-width: 44ch; }
.l3-regular .meta { margin-top: 16px; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--paper-faint); }
.l3-regular .meta b { color: var(--tungsten); font-weight: 500; }
.l3-regular:hover h3 { color: var(--tungsten-hi); }

/* ---------------------------------------------------------------------
   SC.05 — Q&A: hairline accordion, serif questions
   --------------------------------------------------------------------- */
.l3-faq { border-top: 1px solid var(--line-soft); max-width: 820px; margin-top: 36px; }
.l3-faq-item { border-bottom: 1px solid var(--line-soft); }
.l3-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--paper);
  background: none; border: 0; cursor: pointer;
  transition: color var(--d-fast) var(--ease-snap);
}
.l3-faq-q:hover { color: var(--tungsten-hi); }
.l3-faq-q:focus-visible { outline: 2px solid var(--tungsten-hi); outline-offset: -2px; }
.l3-faq-q .ind { font-family: var(--font-mono); font-size: .9rem; color: var(--tungsten); transition: transform var(--d-base) var(--ease-reel); }
.l3-faq-item.open .l3-faq-q .ind { transform: rotate(45deg); }
.l3-faq-a { max-height: 0; overflow: hidden; transition: max-height var(--d-base) var(--ease-reel); }
.l3-faq-a p { padding: 0 4px 24px; color: var(--paper-dim); max-width: 62ch; margin: 0; }

/* ---------------------------------------------------------------------
   SC.06 — ALSO PLAYING: pSEO index chips
   --------------------------------------------------------------------- */
.l3-index { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.l3-index a {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper-dim); text-decoration: none;
  border: 1px solid var(--line-soft); border-radius: var(--r-1);
  padding: 9px 14px;
  transition: border-color var(--d-fast), color var(--d-fast), background var(--d-fast);
}
.l3-index a:hover { color: var(--tungsten); border-color: var(--tungsten); background: var(--tungsten-dim); }

/* ---------------------------------------------------------------------
   FOOTER — end credits + the cast list (pSEO link farm, restyled)
   --------------------------------------------------------------------- */
.l3-footer {
  border-top: 1px solid var(--line-soft);
  margin-top: var(--section-gap);
  padding: clamp(56px, 8vw, 96px) 0 calc(40px + var(--safe-bottom));
  text-align: center;
}
.l3-footer .fin { font-family: var(--font-display); font-style: italic; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--paper); }
.l3-footer .fin-sub { margin-top: 10px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--paper-faint); }
.l3-footer-cta { margin-top: 28px; }

.l3-footer-cast {
  max-width: var(--max-w); margin: clamp(48px, 6vw, 72px) auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 20px;
  text-align: left;
}
@media (max-width: 1020px) { .l3-footer-cast { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .l3-footer-cast { grid-template-columns: repeat(2, 1fr); } }
.l3-cast-col h3 {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--tungsten); margin-bottom: 14px;
}
.l3-cast-col a {
  display: block; text-decoration: none;
  font-size: .8rem; color: var(--paper-faint); padding-block: 4px;
  transition: color var(--d-fast);
}
.l3-cast-col a:hover { color: var(--paper); }

.l3-footer .legal {
  margin-top: 48px; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em;
  color: var(--paper-ghost); text-transform: uppercase;
}

/* ---------------------------------------------------------------------
   Lightboxes — dark restyle of the shared overlay shells
   --------------------------------------------------------------------- */
.l3-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 5, 3, 0.94);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 24px;
}
.l3-lightbox-close {
  position: absolute; top: 18px; right: 18px;
  color: var(--paper-dim); background: none; border: 0; cursor: pointer; padding: 8px;
  transition: color var(--d-fast);
}
.l3-lightbox-close:hover { color: var(--paper); }
.l3-lightbox-stage { max-width: min(1100px, 92vw); width: 100%; }
.l3-lightbox-stage video, .l3-lightbox-stage img {
  width: 100%; max-height: 72vh; object-fit: contain;
  border: 1px solid var(--line); border-radius: var(--r-1); background: #000;
}
.l3-lightbox-caption {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  color: var(--paper-dim); max-width: 80ch; text-align: center; line-height: 1.7;
}
.l3-lightbox-caption::before { content: "PROMPT → "; color: var(--tungsten); letter-spacing: .12em; }
.l3-lightbox-caption:empty::before,
.l3-lightbox-caption[data-plain]::before { content: none; }

/* ETP handoff (etp-personalize.js) swaps the hero videos for the visitor's
   own photo, injected as <img class="l2-stage-vis"> into #heroStage. */
.l3-screen .l2-stage-vis { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------------------- */
.l3-reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--d-slow) var(--ease-reel), transform var(--d-slow) var(--ease-reel); }
.l3-reveal.in { opacity: 1; transform: none; }
.l3-reveal[data-delay="1"] { transition-delay: 90ms; }
.l3-reveal[data-delay="2"] { transition-delay: 180ms; }
