/* ============================================================
   SPIDER-MAN: BRAND NEW DAY — landing experience
   Mobile-first. Dawn-over-the-city palette, comic editorial voice.
   ============================================================ */

:root {
  --ink: #07090f;
  --ink-2: #0d1119;
  --ink-3: #131826;
  --paper: #f3eee1;
  --paper-dim: #e8e1cf;
  --red: #e23636;
  --red-deep: #a8121f;
  --blue: #2f6fed;
  --blue-deep: #15295e;
  --dawn-1: #ff9a3d;
  --dawn-2: #ffd66b;
  --text: #eef0f6;
  --text-dim: #aab2c5;
  --font-display: "Anton", "Arial Black", sans-serif;
  --font-label: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --ease-swing: cubic-bezier(0.34, 1.4, 0.44, 1);
  --ease-pendulum: cubic-bezier(0.6, -0.28, 0.3, 1.4);
  --nav-h: 60px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }
main { overflow-x: clip; }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 300;
  background: var(--red); color: #fff; padding: 10px 16px;
  font-family: var(--font-label); letter-spacing: 0.08em; font-size: 18px;
  border-radius: 4px; transition: top 0.2s ease; text-decoration: none;
}
.skip-link:focus-visible { top: 12px; }

:focus-visible { outline: 2px solid var(--dawn-2); outline-offset: 3px; border-radius: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 90; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(3) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-30px, 20px); }
  66% { transform: translate(25px, -35px); }
  100% { transform: translate(0, 0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 140;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 clamp(16px, 4vw, 40px);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-height: 44px; }
.nav-marvel { display: block; height: 22px; width: auto;  }
.nav-title {
  font-family: var(--font-label); font-size: 17px; letter-spacing: 0.12em; white-space: nowrap;
  text-transform: uppercase; color: var(--text); border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 12px;
}
@media (max-width: 420px) {
  .nav-title { font-size: 15px; letter-spacing: 0.09em; }
}

.nav-links { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn.nav-cta { display: none; }

.nav-burger {
  width: 44px; height: 44px; display: grid; place-items: center; gap: 0;
  position: relative; z-index: 140;
}
.nav-burger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: transform 0.3s var(--ease-swing), opacity 0.2s;
  margin: 2.5px 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 130;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(226, 54, 54, 0.22), transparent 60%),
    linear-gradient(180deg, #0a0d16 0%, #101527 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px clamp(24px, 8vw, 60px) 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transition: opacity 0.35s ease; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(38px, 10vw, 56px);
  text-transform: uppercase; text-decoration: none; line-height: 1.15;
  color: var(--text); display: flex; align-items: baseline; gap: 16px;
  transform: translateY(24px); opacity: 0; transition: transform 0.5s var(--ease-swing), opacity 0.4s, color 0.2s;
}
.mobile-menu.is-open nav a { transform: translateY(0); opacity: 1; }
.mobile-menu nav a:active, .mobile-menu nav a:hover { color: var(--dawn-2); }
.mobile-menu nav a em {
  font-family: var(--font-label); font-style: normal; font-size: 18px;
  color: var(--red); letter-spacing: 0.1em;
}
.mobile-menu nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu nav a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu nav a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-cta { margin-top: 34px; align-self: flex-start; }
.mobile-menu-date {
  margin-top: 18px; font-family: var(--font-label); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-dim); font-size: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 19px; line-height: 1; padding: 15px 26px 13px; min-height: 48px;
  text-decoration: none; border-radius: 3px; position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease-swing), box-shadow 0.25s ease, background 0.25s, color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.96); }

.btn-primary, .btn-tickets {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(226, 54, 54, 0.35);
}
.btn-primary::after, .btn-tickets::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.5s ease;
}
.btn-primary:hover::after, .btn-tickets:hover::after { left: 130%; }
.btn-primary:hover, .btn-tickets:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(226, 54, 54, 0.5); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.55); color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-2px); }

.btn-big { font-size: 22px; padding: 18px 34px 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  isolation: isolate;
}
.hero-sky {
  position: absolute; inset: 0; z-index: -4;
  background:
    radial-gradient(130% 80% at 50% 108%, rgba(255, 122, 47, 0.5) 0%, rgba(255, 122, 47, 0) 55%),
    radial-gradient(100% 60% at 50% 115%, rgba(255, 214, 107, 0.45) 0%, transparent 50%),
    linear-gradient(180deg, #05070d 0%, #0a1024 38%, #1c1f3d 62%, #4a2440 82%, #8a3630 100%);
}
.hero-backdrop { position: absolute; inset: 0; z-index: -3; }
.hero-bd-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  opacity: 0.5; transform: scale(1.08);
  filter: saturate(1.05) brightness(0.9);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.35) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.35) 100%);
}
.hero-weblines {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  color: rgba(255, 255, 255, 0.16);
}
.webring { color: rgba(255, 214, 107, 0.14); }
.wl { stroke-dasharray: 1600; stroke-dashoffset: 0; }

.skyline { position: absolute; left: 0; right: 0; bottom: 0; z-index: -1; pointer-events: none; }
.skyline svg { display: block; width: 100%; }
.skyline-far svg { height: clamp(140px, 24vh, 260px); fill: #0a0e1c; opacity: 0.85; }
.skyline-near svg { height: clamp(100px, 18vh, 210px); fill: #04060c; }

.hero-inner {
  position: relative; z-index: 2; text-align: center;
  padding: calc(var(--nav-h) + 24px) 20px 90px;
  display: flex; flex-direction: column; align-items: center;
  max-width: 980px;
}
.hero-swing { position: relative; transform-origin: 50% -60px; will-change: transform; }
.hero-strand {
  position: absolute; left: 50%; bottom: 100%; width: 2px; height: 90px;
  transform: translateX(-50%);
}
.hero-strand span {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.75));
}
.hero-logo {
  width: min(78vw, 620px); height: auto; display: block;
  filter: drop-shadow(0 12px 44px rgba(0, 0, 0, 0.6));
}
.hero-tagline {
  margin: clamp(18px, 3vh, 30px) 0 0;
  font-size: clamp(16px, 2.4vw, 20px); color: var(--text-dim); font-weight: 500;
  letter-spacing: 0.01em; max-width: 30ch;
}
.hero-tagline span { color: var(--dawn-2); font-weight: 600; }
.hero-meta { margin-top: clamp(16px, 2.6vh, 24px); }
.hero-date-chip {
  display: inline-block; font-family: var(--font-label); font-size: clamp(17px, 2.6vw, 23px);
  letter-spacing: clamp(0.1em, 1.2vw, 0.22em); text-transform: uppercase; color: var(--text);
  border: 1px solid rgba(255, 214, 107, 0.4); border-radius: 999px;
  padding: 10px 18px 8px; background: rgba(7, 9, 15, 0.45); white-space: nowrap;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-date-chip em { font-style: normal; color: var(--dawn-2); }
.hero-ctas {
  margin-top: clamp(20px, 3.4vh, 34px);
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

.hero-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 10px; -webkit-tap-highlight-color: transparent;
}
.hero-cue-line {
  width: 1.5px; height: 44px;
  background: linear-gradient(180deg, transparent, var(--dawn-2));
  animation: cue-drop 2.2s var(--ease-swing) infinite;
  transform-origin: top;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}
.hero-cue-text {
  font-family: var(--font-label); font-size: 15px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-dim);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 40%, transparent 55%, rgba(4, 6, 12, 0.75) 100%);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  position: relative; z-index: 5; overflow: hidden;
  background: var(--red); color: #fff;
  transform: rotate(-1.2deg) scale(1.02); margin: -18px 0 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.ticker-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  padding: 12px 0;
  font-family: var(--font-label); font-size: 21px; letter-spacing: 0.18em;
  text-transform: uppercase; white-space: nowrap;
  animation: ticker-run 30s linear infinite;
}
.ticker-track i { font-style: normal; opacity: 0.7; }
@keyframes ticker-run { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADS (shared)
   ============================================================ */
.section-head { padding: 0 clamp(20px, 6vw, 72px); max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-family: var(--font-label); font-size: 18px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--red); margin: 0 0 14px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow span {
  background: var(--red); color: #fff; padding: 3px 9px 1px; border-radius: 2px;
  letter-spacing: 0.08em; font-size: 16px;
}
.eyebrow-light { color: var(--dawn-2); }
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 8.5vw, 96px); line-height: 0.98;
  text-transform: uppercase; margin: 0; letter-spacing: 0.005em;
}
.section-title-sm { font-size: clamp(34px, 6vw, 64px); }
.section-sub { color: var(--text-dim); max-width: 52ch; margin: 18px 0 0; font-size: 16.5px; }

/* ============================================================
   STORY
   ============================================================ */
.story { position: relative; padding: clamp(90px, 14vh, 160px) 0 0; }
.story-head { margin-bottom: clamp(36px, 6vh, 64px); }

.story-beats { position: relative; }
.beat {
  display: grid; grid-template-columns: 1fr; gap: 22px;
  padding: 0 clamp(20px, 6vw, 72px); max-width: 1200px; margin: 0 auto clamp(64px, 10vh, 110px);
  align-items: center;
}
.beat-media {
  margin: 0; border-radius: 8px; overflow: hidden; position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.beat-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(7, 9, 15, 0.5));
  pointer-events: none;
}
.beat-media img { display: block; width: 100%; transform: scale(1.08); will-change: transform; }
.beat-copy h3 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(30px, 5.5vw, 52px); line-height: 1; margin: 0 0 14px; color: var(--dawn-2);
}
.beat-copy p { margin: 0; color: var(--text-dim); font-size: 16.5px; max-width: 46ch; }
.beat-copy p em { color: var(--text); }

.story-progress { display: none; }

.synopsis {
  padding: clamp(70px, 11vh, 130px) clamp(20px, 6vw, 72px);
  max-width: 1000px; margin: 0 auto; text-align: center;
}
.synopsis-kicker {
  font-family: var(--font-label); letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--red); font-size: 18px; margin: 0 0 22px;
}
.synopsis-text {
  font-size: clamp(19px, 3vw, 27px); line-height: 1.5; font-weight: 500;
  color: var(--text); margin: 0; text-wrap: balance;
}
.synopsis-text strong { color: var(--dawn-2); font-weight: 700; }
.synopsis-text em { color: var(--text-dim); }

/* ============================================================
   CHARACTERS
   ============================================================ */
.characters { padding: clamp(90px, 14vh, 160px) 0 clamp(60px, 9vh, 110px); position: relative; }
.char-viewport { margin-top: clamp(34px, 6vh, 60px); overflow: hidden; }
.char-track {
  display: flex; gap: clamp(16px, 2.5vw, 28px);
  padding: 10px clamp(20px, 6vw, 72px) 26px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.char-track::-webkit-scrollbar { display: none; }

.char-card {
  position: relative; flex: 0 0 min(78vw, 340px);
  scroll-snap-align: center; border-radius: 10px; overflow: hidden;
  background: var(--ink-3); border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  transform-style: preserve-3d; will-change: transform;
  transition: border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.char-card:hover, .char-card:focus-visible { border-color: rgba(255, 214, 107, 0.5); }
.char-media { position: absolute; inset: 0; margin: 0; }
.char-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06); transition: transform 0.6s var(--ease-swing), filter 0.4s ease;
}
.char-media-mj img { object-position: 28% 20%; }
.char-card:hover .char-media img, .char-card.is-active .char-media img { transform: scale(1.12); }
.char-info {
  position: relative; z-index: 2; padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.88) 38%);
  padding-top: 90px;
}
.char-num {
  font-family: var(--font-label); font-size: 15px; letter-spacing: 0.3em;
  color: var(--dawn-2); margin: 0 0 6px;
}
.char-name {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: 34px; line-height: 1; margin: 0;
}
.char-role {
  font-family: var(--font-label); font-size: 18px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red); margin: 6px 0 0;
}
.char-actor { color: var(--text); font-weight: 600; font-size: 15px; margin: 10px 0 0; }
.char-bio {
  color: var(--text-dim); font-size: 15px; line-height: 1.55; margin: 8px 0 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-swing), opacity 0.35s ease, margin 0.3s;
}
.char-card:hover .char-bio, .char-card:focus-visible .char-bio, .char-card.is-active .char-bio {
  max-height: 200px; opacity: 1;
}
.char-hint {
  display: flex; align-items: center; gap: 14px;
  padding: 6px clamp(20px, 6vw, 72px) 0;
  font-family: var(--font-label); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-dim); font-size: 15px;
}
.char-hint-line { flex: 0 0 60px; height: 1px; background: currentColor; opacity: 0.5; }

/* ============================================================
   MEDIA / TRAILER
   ============================================================ */
.media { position: relative; }
.trailer {
  position: relative; min-height: min(88svh, 760px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
}
.trailer-bg { position: absolute; inset: 0; z-index: -1; }
.trailer-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  transform: scale(1.1);
}
.trailer::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(90% 90% at 50% 50%, rgba(5, 7, 13, 0.25) 0%, rgba(5, 7, 13, 0.88) 100%),
    linear-gradient(180deg, var(--ink) 0%, transparent 18%, transparent 82%, var(--ink) 100%);
}
.trailer-inner {
  position: relative; z-index: 2; text-align: center; padding: 90px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.trailer-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(42px, 8vw, 92px); line-height: 0.98; margin: 0 0 34px;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
}
.trailer-play {
  position: relative; width: 96px; height: 96px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 44px rgba(226, 54, 54, 0.55);
  transition: transform 0.3s var(--ease-swing), background 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.trailer-play:hover { transform: scale(1.08); background: #f04a4a; }
.trailer-play:active { transform: scale(0.95); }
.trailer-play-ring {
  position: absolute; inset: -2px; border-radius: 50%;
  border: 1.5px solid rgba(226, 54, 54, 0.8);
  animation: ring-pulse 2.4s ease-out infinite;
}
.trailer-play-ring-2 { animation-delay: 1.2s; }
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}
.trailer-caption {
  margin-top: 26px; font-family: var(--font-label); letter-spacing: 0.24em;
  text-transform: uppercase; font-size: 16px; color: var(--text-dim);
}

.gallery { padding: clamp(80px, 12vh, 140px) 0 clamp(70px, 10vh, 120px); }
.gallery-head { margin-bottom: clamp(28px, 5vh, 48px); }
.gallery-strip {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px clamp(20px, 6vw, 72px) 22px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.g-item {
  flex: 0 0 min(72vw, 460px); scroll-snap-align: center;
  border-radius: 8px; overflow: hidden; padding: 0; position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease-swing), border-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.g-item img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.g-item::after {
  content: "+"; position: absolute; right: 12px; bottom: 10px;
  font-family: var(--font-label); font-size: 26px; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8); opacity: 0; transition: opacity 0.25s;
}
.g-item:hover, .g-item:focus-visible { transform: translateY(-6px); border-color: rgba(255, 214, 107, 0.55); }
.g-item:hover::after, .g-item:focus-visible::after { opacity: 1; }

/* ============================================================
   POSTERS
   ============================================================ */
.posters { padding: clamp(70px, 10vh, 130px) 0 clamp(90px, 13vh, 150px); position: relative; overflow: hidden; }
.poster-fan {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(14px, 3vw, 30px); padding: clamp(36px, 6vh, 64px) 20px 10px;
  perspective: 1200px;
}
.poster-card {
  padding: 0; border-radius: 6px; overflow: hidden; position: relative;
  width: min(64vw, 300px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  transition: transform 0.45s var(--ease-swing), box-shadow 0.45s ease, z-index 0s;
  -webkit-tap-highlight-color: transparent;
}
.poster-card img { display: block; width: 100%; }
.poster-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-120%); transition: transform 0.7s ease;
}
.poster-card:hover::after { transform: translateX(120%); }
.poster-card:hover { transform: translateY(-14px) rotate(0deg) scale(1.04) !important; z-index: 5; box-shadow: 0 44px 100px rgba(0,0,0,0.75); }

/* ============================================================
   CAST — DAILY BUGLE
   ============================================================ */
.cast {
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(255, 154, 61, 0.16), transparent 55%),
    var(--ink-2);
  padding: clamp(90px, 13vh, 150px) clamp(16px, 4vw, 48px);
}
.bugle {
  max-width: 1060px; margin: 0 auto;
  background: var(--paper); color: #191407;
  border-radius: 4px; padding: clamp(26px, 5vw, 64px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.6);
  position: relative; overflow: hidden;
}
.bugle::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  background-image: radial-gradient(rgba(25, 20, 7, 0.08) 1px, transparent 1px);
  background-size: 4px 4px;
}
.bugle-masthead { text-align: center; border-bottom: 3px double #191407; padding-bottom: 18px; }
.bugle-tag {
  font-family: var(--font-label); letter-spacing: 0.3em; text-transform: uppercase;
  font-size: 15px; margin: 0 0 6px; color: #5c5236;
}
.bugle-name {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(44px, 9vw, 92px); line-height: 1; margin: 0; letter-spacing: 0.01em;
}
.bugle-edition {
  font-family: var(--font-label); letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 15px; color: #5c5236; margin: 8px 0 0;
}
.bugle-headline {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(34px, 6.5vw, 66px); line-height: 0.98; text-align: center;
  margin: clamp(24px, 4vw, 40px) 0 12px;
}
.bugle-dek {
  text-align: center; font-size: clamp(15.5px, 2vw, 18px); color: #42381d;
  max-width: 56ch; margin: 0 auto clamp(26px, 4vw, 44px); font-weight: 500;
}
.bugle-cols { display: grid; grid-template-columns: 1fr; gap: 34px; }
.bugle-h {
  font-family: var(--font-label); letter-spacing: 0.26em; text-transform: uppercase;
  font-size: 19px; margin: 0 0 16px; border-bottom: 2px solid #191407; padding-bottom: 8px;
}
.cast-list { list-style: none; margin: 0; padding: 0; }
.cast-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid rgba(25, 20, 7, 0.18);
}
.cast-actor { font-weight: 700; font-size: 15.5px; }
.cast-role {
  font-family: var(--font-label); letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 15px; color: #6b5f3d; text-align: right;
}
.credit-list { margin: 0; }
.credit-list > div { padding: 8px 0; border-bottom: 1px solid rgba(25, 20, 7, 0.18); }
.credit-list dt {
  font-family: var(--font-label); letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 15px; color: #6b5f3d;
}
.credit-list dd { margin: 2px 0 0; font-weight: 600; font-size: 15.5px; }
.bugle-rating { margin-top: 22px; max-width: 180px; }

/* ============================================================
   RELEASE
   ============================================================ */
.release {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(100px, 16vh, 190px) 20px;
  text-align: center;
}
.release-sky {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(140% 90% at 50% 118%, rgba(255, 154, 61, 0.55) 0%, rgba(255, 154, 61, 0) 55%),
    radial-gradient(90% 55% at 50% 122%, rgba(255, 214, 107, 0.5) 0%, transparent 55%),
    linear-gradient(180deg, #05070d 0%, #0b1126 45%, #23224a 72%, #6e2f3a 100%);
}
.release-inner { position: relative; max-width: 900px; margin: 0 auto; }
.release-card {
  width: min(86vw, 560px); height: auto; margin: 0 auto; display: block;
  filter: drop-shadow(0 10px 50px rgba(255, 154, 61, 0.18));
}
.countdown {
  display: flex; justify-content: center; align-items: center; gap: clamp(8px, 2.5vw, 20px);
  margin-top: clamp(30px, 5vh, 48px);
}
.cd-cell {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: clamp(64px, 16vw, 110px);
}
.cd-num {
  font-family: var(--font-display); font-size: clamp(40px, 9vw, 84px); line-height: 1;
  color: var(--dawn-2); text-shadow: 0 6px 40px rgba(255, 154, 61, 0.35);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-family: var(--font-label); letter-spacing: 0.3em; text-transform: uppercase;
  font-size: 15px; color: var(--text-dim);
}
.cd-sep {
  font-family: var(--font-display); font-size: clamp(30px, 6vw, 60px);
  color: rgba(255, 214, 107, 0.5); padding-bottom: 24px;
}
.release-now {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(30px, 6vw, 58px); color: var(--dawn-2); margin: 26px 0 0;
  text-shadow: 0 6px 40px rgba(255, 154, 61, 0.4);
}
.release-ctas {
  margin-top: clamp(30px, 5vh, 50px);
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px clamp(20px, 6vw, 72px) 56px;
  position: relative;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column;
  align-items: center; gap: 20px; text-align: center;
}
.footer-marvel { height: 26px; width: auto; opacity: 0.92; }
.footer-nav { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-family: var(--font-label); letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 16px; color: var(--text-dim); text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; min-height: 44px; padding: 4px 8px;
}
.footer-nav a:hover { color: var(--dawn-2); }
.footer-spider {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: var(--red); border: 1px solid rgba(226, 54, 54, 0.4);
  transition: transform 0.3s var(--ease-swing), background 0.25s, color 0.25s;
}
.footer-spider:hover { background: var(--red); color: #fff; transform: translateY(-3px) rotate(-8deg); }
.footer-legal { color: #9aa3b5; font-size: 15px; max-width: 70ch; margin: 0; line-height: 1.7; }

.sense-burst {
  position: fixed; inset: 0; pointer-events: none; z-index: 200;
  display: grid; place-items: center; opacity: 0;
}
.sense-burst.is-on { opacity: 1; }
.sense-burst span {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--red); animation: sense-ring 0.9s ease-out forwards;
}
.sense-burst em {
  font-family: var(--font-display); font-size: clamp(40px, 9vw, 90px); color: var(--dawn-2);
  text-transform: uppercase; transform: rotate(-4deg);
  text-shadow: 4px 4px 0 var(--red-deep); animation: sense-pop 1.1s var(--ease-swing) forwards;
}
@keyframes sense-ring { from { transform: scale(0.3); opacity: 1; } to { transform: scale(3.2); opacity: 0; } }
@keyframes sense-pop {
  0% { transform: scale(0.2) rotate(-14deg); opacity: 0; }
  40% { transform: scale(1.15) rotate(-4deg); opacity: 1; }
  80% { transform: scale(1) rotate(-4deg); opacity: 1; }
  100% { transform: scale(1) rotate(-4deg); opacity: 0; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 250; display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute; inset: 0; background: rgba(3, 4, 8, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.lightbox-stage {
  position: relative; z-index: 2; margin: 0; width: min(92vw, 1100px);
  display: grid; place-items: center;
}
.lightbox-img {
  max-width: 100%; max-height: 78vh; border-radius: 6px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8); display: block;
}
.lightbox-video-wrap {
  width: 100%; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8); background: #000;
}
.lightbox-video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox-caption {
  margin-top: 14px; font-family: var(--font-label); letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 17px; color: var(--text-dim); text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 22px;
  display: grid; place-items: center; transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }
.lightbox-close { top: -8px; right: -4px; transform: translateY(-100%); }
.lightbox-prev { left: -6px; top: 50%; transform: translate(-100%, -50%); }
.lightbox-next { right: -6px; top: 50%; transform: translate(100%, -50%); }
.lightbox-fallback {
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; z-index: 3;
  color: var(--text-dim); font-size: 14.5px;
}
.lightbox-fallback a { color: var(--dawn-2); }

@media (max-width: 640px) {
  .lightbox-prev { left: 6px; transform: translate(0, -50%); }
  .lightbox-next { right: 6px; transform: translate(0, -50%); }
  .lightbox-close { top: auto; bottom: -56px; right: 50%; transform: translateX(50%); }
}

/* ============================================================
   THWIP (web shot on CTA click)
   ============================================================ */
.thwip {
  position: fixed; z-index: 240; pointer-events: none; height: 2px; width: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.1));
  transform-origin: left center; opacity: 0;
}

/* ============================================================
   DESKTOP ENHANCEMENTS
   ============================================================ */
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 26px; }
  .nav-links a {
    font-family: var(--font-label); letter-spacing: 0.2em; text-transform: uppercase;
    font-size: 17px; color: var(--text-dim); text-decoration: none; position: relative;
    padding: 12px 4px; display: inline-flex; align-items: center; min-height: 44px;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s var(--ease-swing);
  }
  .nav-links a:hover, .nav-links a.is-active { color: var(--text); }
  .nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }

  .beat { grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 5vw, 70px); }
  .beat:nth-child(even) .beat-media { order: 2; }

  .bugle-cols { grid-template-columns: 1.2fr 1fr; gap: 54px; }

  .char-card { flex-basis: 360px; }
}

@media (min-width: 1100px) {
  .poster-card-l { transform: rotate(-7deg) translateY(16px); }
  .poster-card-r { transform: rotate(7deg) translateY(16px); }
  .poster-card-c { transform: translateY(-10px) scale(1.05); z-index: 2; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .ticker-track, .hero-cue-line, .trailer-play-ring { animation: none; }
  .grain { opacity: 0.03; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .beat-media img, .char-media img, .trailer-bg img { transform: none !important; }
}
