/* ============================================================
   GRAFSCALS — one-page site
   Mobile-first. Muted city backdrop, saturated crew accents.
   ============================================================ */

/* ---------- self-hosted fonts ---------- */

@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Permanent Marker";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/permanent-marker-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-latin-800-normal.woff2") format("woff2");
}

:root {
  --bg: #16171b;
  --bg-2: #1d1f24;
  --panel: #22242a;
  --ink: #f2f0eb;
  --ink-dim: #b8b5ad;
  --line: #33363e;
  --red: #d6362b;
  --purple: #8b5cf6;
  --orange: #f2831d;
  --green: #2f7d46;
  --blue: #2f6fd6;
  --tan: #c9a36a;
  --font-display: "Anton", Impact, sans-serif;
  --font-marker: "Permanent Marker", cursive;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  /* faint concrete texture */
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(139, 92, 246, .05), transparent 60%),
    radial-gradient(1000px 500px at 10% 30%, rgba(214, 54, 43, .04), transparent 60%);
}

img { display: block; max-width: 100%; height: auto; }

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

/* ---------- shared section bits ---------- */

.section-kicker {
  font-family: var(--font-marker);
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: .04em;
  margin-bottom: .35rem;
  transform: rotate(-1.5deg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .015em;
  margin-bottom: 1.1rem;
}

section { position: relative; }

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1rem;
  background: linear-gradient(rgba(15, 16, 19, .92), rgba(15, 16, 19, .75));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transform: translateY(-110%);
  transition: transform .35s ease;
}
.topbar.is-visible { transform: none; border-bottom-color: var(--line); }

.topbar__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .05em;
  color: var(--ink);
  text-decoration: none;
}
.topbar__logo span { color: var(--red); }

.topbar__nav { display: flex; align-items: center; gap: .25rem; }

.topbar__nav a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem .6rem;
  border-radius: 6px;
  transition: color .2s;
}
.topbar__nav a:hover { color: var(--ink); }

.topbar__nav a.topbar__cta {
  background: var(--red);
  color: #fff;
  margin-left: .35rem;
}
.topbar__nav a.topbar__cta:hover { background: #e8483d; }

/* ============================================================
   MOBILE MENU
   Hamburger + full nav swap in below 900px (matches the crew
   grid's mobile/desktop split). Panel is an off-canvas tag wall —
   big rotated Anton links, one accent color per line, spray-can
   divider, secondary pages, CTA, socials.
   ============================================================ */

.topbar__nav { flex-wrap: wrap; }

@media (max-width: 899px) {
  .topbar__nav a { display: none; }
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-left: .5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  flex: none;
}
.menu-btn:hover { border-color: var(--red); }

.menu-btn__box {
  position: relative;
  width: 1.3rem;
  height: 1rem;
}
.menu-btn__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .28s cubic-bezier(.2, .7, .3, 1), opacity .2s, top .28s ease;
}
.menu-btn__bar:nth-child(1) { top: 0; }
.menu-btn__bar:nth-child(2) { top: 50%; margin-top: -1px; }
.menu-btn__bar:nth-child(3) { top: 100%; margin-top: -2px; }

.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(1) { top: 50%; margin-top: -1px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-btn__bar:nth-child(3) { top: 50%; margin-top: -1px; transform: rotate(-45deg); }

@media (min-width: 900px) {
  .menu-btn { display: none; }
}

.mobile-menu { position: fixed; inset: 0; z-index: 100; }
.mobile-menu[hidden] { display: none; }

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, .82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: menu-fade .3s ease;
}

@keyframes menu-fade { from { opacity: 0; } }

.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  background-image: radial-gradient(700px 400px at 100% 0%, rgba(214, 54, 43, .07), transparent 60%);
  border-left: 4px solid var(--red);
  box-shadow: -20px 0 80px rgba(0, 0, 0, .7);
  overflow-y: auto;
  padding: 1.1rem 1.4rem 2rem;
  animation: menu-in .38s cubic-bezier(.2, .8, .25, 1);
}

@keyframes menu-in { from { transform: translateX(40px); opacity: 0; } }

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.mobile-menu__tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: var(--ink);
  transform: rotate(-1.5deg);
  display: inline-block;
}
.mobile-menu__tag em { font-style: normal; color: var(--red); }

.mobile-menu__close {
  width: 2.4rem; height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu__close:hover { background: var(--red); color: #fff; }

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mobile-menu__links li {
  opacity: 0;
  animation: menu-item-in .4s ease forwards;
  animation-delay: calc(var(--i, 0) * .05s + .05s);
}
@keyframes menu-item-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.mobile-menu__links a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 8vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
  padding: .3rem 0;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s, transform .2s;
}
.mobile-menu__links li:nth-child(6n+1) a { transform: rotate(-1.4deg); }
.mobile-menu__links li:nth-child(6n+2) a { transform: rotate(1deg); }
.mobile-menu__links li:nth-child(6n+3) a { transform: rotate(-.8deg); }
.mobile-menu__links li:nth-child(6n+4) a { transform: rotate(1.3deg); }
.mobile-menu__links li:nth-child(6n+5) a { transform: rotate(-1deg); }
.mobile-menu__links li:nth-child(6n+6) a { transform: rotate(.9deg); }

.mobile-menu__links li:nth-child(6n+1) a:hover,
.mobile-menu__links li:nth-child(6n+1) a:focus-visible { color: var(--red); border-color: var(--red); }
.mobile-menu__links li:nth-child(6n+2) a:hover,
.mobile-menu__links li:nth-child(6n+2) a:focus-visible { color: var(--purple); border-color: var(--purple); }
.mobile-menu__links li:nth-child(6n+3) a:hover,
.mobile-menu__links li:nth-child(6n+3) a:focus-visible { color: var(--orange); border-color: var(--orange); }
.mobile-menu__links li:nth-child(6n+4) a:hover,
.mobile-menu__links li:nth-child(6n+4) a:focus-visible { color: var(--green); border-color: var(--green); }
.mobile-menu__links li:nth-child(6n+5) a:hover,
.mobile-menu__links li:nth-child(6n+5) a:focus-visible { color: var(--blue); border-color: var(--blue); }
.mobile-menu__links li:nth-child(6n+6) a:hover,
.mobile-menu__links li:nth-child(6n+6) a:focus-visible { color: var(--tan); border-color: var(--tan); }

.mobile-menu__divider {
  height: 3px;
  margin: 1.5rem 0 1.1rem;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 16px);
  border-radius: 2px;
  transform: rotate(-.4deg);
}

.mobile-menu__more {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-bottom: 1.5rem;
}
.mobile-menu__more a {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-dim);
  text-decoration: none;
  padding: .5rem 0;
  transition: color .2s;
}
.mobile-menu__more a:hover,
.mobile-menu__more a:focus-visible { color: var(--ink); }

.mobile-menu__cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  text-decoration: none;
  background: var(--red);
  border-radius: 10px;
  padding: .95rem 1rem;
  margin-bottom: 1.5rem;
  transition: background .2s, transform .2s;
}
.mobile-menu__cta:hover { background: #e8483d; transform: translateY(-2px); }

.mobile-menu__social {
  display: flex;
  gap: .7rem;
  margin-top: auto;
}
.mobile-menu__social a {
  width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: transform .2s, filter .2s;
}
.mobile-menu__social a:hover { transform: translateY(-2px) scale(1.05); filter: brightness(1.12); }
.mobile-menu__social svg { width: 18px; height: 18px; fill: currentColor; }
.mobile-menu__social .social--yt { background: linear-gradient(100deg, #b31217, #e52d27); }
.mobile-menu__social .social--ig { background: linear-gradient(100deg, #7b2ff7, #d6249f 55%, #fd8d32); }
.mobile-menu__social .social--fb { background: linear-gradient(100deg, #14477e, #1877f2); }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__backdrop,
  .mobile-menu__panel,
  .mobile-menu__links li {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   HERO — scroll-scrubbed video
   ============================================================ */

.hero { height: 340vh; }

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #0d0e11;
}

.hero__sticky video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Hero film is a full-bleed 1:1 square — cover fills the screen on every
     breakpoint with no letterboxing needed. */
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(13, 14, 17, .3), rgba(13, 14, 17, 0) 26%,
                    rgba(13, 14, 17, 0) 64%, rgba(13, 14, 17, .75));
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0 1.25rem calc(4.5rem + env(safe-area-inset-bottom));
  text-align: center;
  transition: opacity .3s linear;
}

.hero__kicker {
  font-family: var(--font-marker);
  color: var(--ink);
  opacity: .85;
  font-size: 1rem;
  transform: rotate(-2deg);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 15vw, 7.5rem);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: linear-gradient(100deg, #fff 20%, #cfd4dd 50%, #fff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.55)) drop-shadow(0 10px 24px rgba(0,0,0,.6));
}

.hero__tag {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  margin-top: .4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .9);
}

.hero__cue {
  position: absolute;
  left: 50%;
  bottom: calc(.9rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  text-align: center;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
  transition: opacity .3s;
  pointer-events: none;
}

.hero__cue-arrow {
  width: 10px; height: 10px;
  margin: .35rem auto 0;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  animation: cue-bounce 1.6s infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .9; }
  50%      { transform: rotate(45deg) translate(5px, 5px); opacity: .4; }
}

/* ============================================================
   STORY
   ============================================================ */

.story { padding: 4.5rem 0 3.5rem; overflow: hidden; }

.story__bg {
  position: absolute;
  inset: 0;
  background: url("../img/ayard-wide.webp?v=20260803g") center 30% / cover no-repeat;
  opacity: .16;
  filter: saturate(.7);
  pointer-events: none;
}
.story::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(var(--bg), transparent 25%, transparent 70%, var(--bg));
  pointer-events: none;
}

.story__inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
}

.story__text p { color: var(--ink-dim); margin-bottom: 1rem; max-width: 58ch; }
.story__text strong, .story__text em { color: var(--ink); }

.story__motto {
  font-family: var(--font-marker);
  color: var(--orange) !important;
  font-size: 1.25rem;
  transform: rotate(-1.5deg);
  margin-top: 1.4rem;
}

.story__poster { max-width: 420px; margin: 0 auto; width: 100%; }
.story__poster img {
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .55);
  transform: rotate(1.2deg);
}

@media (min-width: 820px) {
  .story__inner { grid-template-columns: 1.2fr .8fr; align-items: center; gap: 3.5rem; }
  .story { padding: 7rem 0 6rem; }
}

/* ============================================================
   EPISODES
   ============================================================ */

.eps { padding: 4rem 0 4.5rem; }

.eps__head { max-width: 1060px; margin: 0 auto 1.8rem; padding: 0 1.25rem; }

.eps__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2rem;
}

.eps__loading { color: var(--ink-dim); font-size: .9rem; }

/* ---- coming soon state ---- */
.eps__soon {
  border: 2px dashed var(--line);
  border-radius: 16px;
  padding: 3rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(500px 220px at 50% 0%, rgba(242, 131, 29, .08), transparent 70%),
    var(--bg-2);
}
.eps__soon-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .1em;
  color: #fff;
  background: var(--red);
  padding: .3rem .8rem;
  border-radius: 6px;
  transform: rotate(-2deg);
}
.eps__soon-title {
  font-family: var(--font-marker);
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--orange);
  margin-top: .7rem;
  transform: rotate(-1.5deg);
}
.eps__soon-sub { color: var(--ink-dim); max-width: 40ch; margin: .6rem auto 0; }

/* ---- featured player ---- */
.eps__featured { display: grid; gap: .9rem; justify-items: center; }

.eps__player {
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #0d0e11;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .55);
  position: relative;
}
.eps__frame { width: 100%; height: 100%; border: 0; display: block; }

.eps__poster {
  display: block;
  width: 100%; height: 100%;
  padding: 0; border: 0;
  cursor: pointer;
  background: #0d0e11;
  position: relative;
}
.eps__poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), opacity .3s;
}
.eps__poster:hover img { transform: scale(1.04); opacity: .85; }

.eps__playbtn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(214, 54, 43, .92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .6);
  transition: transform .25s;
}
.eps__playbtn::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.eps__poster:hover .eps__playbtn { transform: translate(-50%, -50%) scale(1.1); }

.eps__meta { text-align: center; }
.eps__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: .25rem .7rem;
  border-radius: 6px;
}
.eps__title { font-weight: 600; margin-top: .5rem; max-width: 40ch; }

/* ---- episode rail ---- */
.eps__list-label {
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-dim);
  margin-bottom: .7rem;
}

.eps__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 132px;
  gap: .8rem;
  overflow-x: auto;
  padding: .25rem .25rem 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.eps__list::-webkit-scrollbar { height: 6px; }
.eps__list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.eps__item {
  scroll-snap-align: start;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-body);
}
.eps__item-thumb {
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #0d0e11;
  transition: border-color .25s, transform .25s;
}
.eps__item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eps__item:hover .eps__item-thumb { transform: translateY(-4px); border-color: var(--ink-dim); }
.eps__item.is-active .eps__item-thumb { border-color: var(--red); }

.eps__item-num {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--red);
  margin-top: .45rem;
}
.eps__item-title {
  display: block;
  font-size: .78rem;
  color: var(--ink-dim);
  margin-top: .15rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (min-width: 860px) {
  .eps { padding: 6rem 0; }
  .eps__inner { grid-template-columns: auto 1fr; align-items: start; gap: 3rem; }
  .eps__featured { justify-items: start; }
  .eps__player { width: 340px; }
  .eps__meta { text-align: left; }
  .eps__list {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    grid-auto-columns: unset;
    overflow-x: visible;
    max-height: 640px;
    overflow-y: auto;
    padding-right: .5rem;
  }
}

/* ============================================================
   CREW
   ============================================================ */

.crew { padding: 4rem 0 4.5rem; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.crew__head { max-width: 1180px; margin: 0 auto 1.8rem; padding: 0 1.25rem; }
.crew__hint { color: var(--ink-dim); font-size: .85rem; }

.section-note { color: var(--ink-dim); font-size: .88rem; }
.section-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--red) 45%, transparent);
}
.section-note a:hover { border-bottom-color: var(--red); }

/* mobile: vertical stack — every card sits in normal scroll flow so
   nobody swipes past the crew without seeing them all (used to be a
   horizontal snap carousel; people were scrolling down and missing
   everyone past the first card or two). */
.crew__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  padding: .5rem 1.25rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
}

/* larger phones / small tablets: two up, still all in normal scroll */
@media (min-width: 560px) and (max-width: 899px) {
  .crew__track { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 0 1px var(--accent);
}

.card__art {
  background:
    radial-gradient(120% 90% at 50% 100%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%),
    linear-gradient(#2a2c33, #1f2126);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 300px;
  padding-top: 1.2rem;
}
.card__art img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.5));
}
.card__art--dog { align-items: center; }
.card__art--dog img { max-height: 82%; }

.card__body { padding: 1.1rem 1.15rem 1.35rem; }

.card__name {
  font-family: var(--font-marker);
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1.1;
  transform: rotate(-1.2deg);
}

.card__real { color: var(--ink-dim); font-size: .8rem; margin-bottom: .45rem; }

.card__role {
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
  margin-bottom: .55rem;
}

.card__power {
  font-size: .85rem;
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border-left: 3px solid var(--accent);
  padding: .35rem .6rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: .7rem;
}
.card__power span { font-weight: 800; text-transform: uppercase; font-size: .7rem; letter-spacing: .08em; color: var(--accent); margin-right: .3rem; }

.card__bio { color: var(--ink-dim); font-size: .88rem; }

/* desktop: wider grid */
@media (min-width: 900px) {
  .crew__track {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
    gap: 1.4rem;
    padding: .5rem 1.25rem;
  }
}
@media (min-width: 1200px) {
  .crew__track { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   CHARACTER DOSSIER MODAL
   ============================================================ */

.card { cursor: pointer; }
.card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.card__more {
  display: inline-block;
  margin-top: .75rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--accent);
}
.card__more::after { content: " →"; transition: transform .2s; display: inline-block; }
.card:hover .card__more::after { transform: translateX(4px); }

.dossier {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dossier[hidden] { display: none; }

.dossier__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: dossier-fade .3s ease;
}

@keyframes dossier-fade { from { opacity: 0; } }

.dossier__panel {
  position: relative;
  width: 100%;
  max-height: 92svh;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -20px 80px rgba(0, 0, 0, .7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: dossier-up .42s cubic-bezier(.2, .8, .25, 1);
  border-top: 4px solid var(--accent, var(--red));
}

@keyframes dossier-up {
  from { transform: translateY(60px); opacity: 0; }
}

.dossier__close {
  position: absolute;
  top: .6rem; right: .6rem;
  z-index: 5;
  width: 2.4rem; height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.dossier__close:hover { background: var(--accent, var(--red)); }

/* media zone */
.dossier__media {
  flex: none;
  aspect-ratio: 16 / 9;
  background: #0d0e11;
  position: relative;
  overflow: hidden;
}
.dossier__media video,
.dossier__media > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.dossier__mute {
  position: absolute;
  bottom: .6rem; right: .6rem;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.55);
  color: #fff;
  font: 600 .75rem var(--font-body);
  padding: .4rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dossier__mute:hover { background: var(--accent, var(--red)); border-color: transparent; }

/* art stage for characters without a clip */
.dossier__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(120% 100% at 50% 100%, color-mix(in srgb, var(--accent, #888) 32%, transparent), transparent 72%),
    linear-gradient(#26282f, #17181c);
}
.dossier__stage-name {
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  font-family: var(--font-marker);
  font-size: clamp(3rem, 14vw, 6rem);
  color: color-mix(in srgb, var(--accent, #888) 26%, transparent);
  white-space: nowrap;
  pointer-events: none;
}
.dossier__stage img {
  height: 94%;
  width: auto;
  position: relative;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.55));
  animation: stage-bob 4.5s ease-in-out infinite;
}
@keyframes stage-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* scrolling body */
.dossier__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.3rem 1.3rem 1.6rem;
}

.dossier__name {
  font-family: var(--font-marker);
  font-size: 2.2rem;
  line-height: 1.05;
  color: var(--accent, var(--red));
  transform: rotate(-1.2deg);
}
.dossier__real { color: var(--ink-dim); font-size: .85rem; margin-top: .1rem; }
.dossier__role {
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .55rem;
}

.dossier__power {
  margin-top: 1rem;
  font-size: .92rem;
  background: color-mix(in srgb, var(--accent, #888) 15%, transparent);
  border-left: 3px solid var(--accent, var(--red));
  padding: .6rem .8rem;
  border-radius: 0 10px 10px 0;
}
.dossier__power span {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--accent, var(--red));
  margin-bottom: .15rem;
}

.dossier__story { margin-top: 1.1rem; }
.dossier__story p { color: var(--ink-dim); margin-bottom: .85rem; font-size: .95rem; }
.dossier__story p:last-child { margin-bottom: 0; }

.dossier__facts {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .6rem;
}
.dossier__chip {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem .7rem;
  background: var(--bg);
}
.dossier__chip b {
  display: block;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent, var(--red));
  margin-bottom: .15rem;
}
.dossier__chip span { font-size: .82rem; color: var(--ink); }

/* staggered entrance for body children */
.dossier__body > * {
  animation: dossier-rise .5s cubic-bezier(.2, .7, .3, 1) both;
}
.dossier__body > *:nth-child(2) { animation-delay: .06s; }
.dossier__body > *:nth-child(3) { animation-delay: .12s; }
.dossier__body > *:nth-child(4) { animation-delay: .18s; }
.dossier__body > *:nth-child(5) { animation-delay: .24s; }
.dossier__body > *:nth-child(6) { animation-delay: .3s; }

@keyframes dossier-rise {
  from { opacity: 0; transform: translateY(14px); }
}

/* nav bar */
.dossier__nav {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  border-top: 1px solid var(--line);
  padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
  background: var(--bg);
}
.dossier__navbtn {
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink);
  font: 700 .82rem var(--font-body);
  padding: .55rem .95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.dossier__navbtn:hover { border-color: var(--accent, var(--red)); }
.dossier__count {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--ink-dim);
}

@media (min-width: 760px) {
  .dossier { align-items: center; padding: 2rem; }
  .dossier__panel {
    max-width: 720px;
    max-height: 88vh;
    border-radius: 18px;
    border-bottom: 1px solid var(--line);
    animation: dossier-pop .38s cubic-bezier(.2, .8, .25, 1);
  }
  @keyframes dossier-pop {
    from { transform: translateY(26px) scale(.97); opacity: 0; }
  }
  .dossier__body { padding: 1.6rem 2rem 1.8rem; }
  .dossier__name { font-size: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .dossier__backdrop, .dossier__panel, .dossier__body > *, .dossier__stage img {
    animation: none;
  }
}

/* ============================================================
   WATCH
   ============================================================ */

.watch { padding: 4.5rem 0; }

.watch__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
}

.watch__art { max-width: 380px; margin: 0 auto; width: 100%; order: 2; }
.watch__art img {
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0,0,0,.55);
  transform: rotate(-1.2deg);
}

.watch__text p { color: var(--ink-dim); max-width: 52ch; }

.watch__links { display: grid; gap: .8rem; margin-top: 1.6rem; max-width: 420px; }

.social {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), filter .25s;
}
.social:hover { transform: translateY(-3px) scale(1.01); filter: brightness(1.12); }
.social svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

.social--yt { background: linear-gradient(100deg, #b31217, #e52d27); }
.social--ig { background: linear-gradient(100deg, #7b2ff7, #d6249f 55%, #fd8d32); }
.social--fb { background: linear-gradient(100deg, #14477e, #1877f2); }

@media (min-width: 820px) {
  .watch__inner { grid-template-columns: .8fr 1.2fr; align-items: center; gap: 3.5rem; }
  .watch__art { order: 0; }
  .watch { padding: 6.5rem 0; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 4.5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.faq__inner { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }
.faq__head { margin-bottom: 1.8rem; }

.faq__list { display: grid; gap: .7rem; }

.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent, var(--red));
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq__item[open] { border-color: var(--accent, var(--red)); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.1rem;
  font-weight: 700;
  font-size: .95rem;
  position: relative;
  user-select: none;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent, var(--red)); }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent, var(--red));
  transition: transform .3s cubic-bezier(.2, .7, .3, 1);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq__a { padding: 0 1.1rem 1.15rem; }
.faq__a p { color: var(--ink-dim); font-size: .92rem; margin-bottom: .7rem; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a strong { color: var(--ink); }
.faq__a a { color: var(--accent, var(--red)); font-weight: 600; text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent, var(--red)) 45%, transparent); }
.faq__a a:hover { border-bottom-color: var(--accent, var(--red)); }

.faq__item[open] .faq__a { animation: faq-open .35s cubic-bezier(.2, .7, .3, 1); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
}

@media (min-width: 820px) {
  .faq { padding: 6rem 0; }
  .faq__item summary { font-size: 1rem; padding: 1.15rem 3.2rem 1.15rem 1.3rem; }
  .faq__a { padding: 0 1.3rem 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .faq__item[open] .faq__a { animation: none; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.news {
  padding: 4.5rem 1.25rem;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(214, 54, 43, .14), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  text-align: center;
}

.news__inner { max-width: 560px; margin: 0 auto; }
.news__inner > p { color: var(--ink-dim); }

.news__form {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.6rem;
}

.news__form input[type="email"] {
  width: 100%;
  padding: .95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem var(--font-body);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.news__form input[type="email"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 54, 43, .25);
}
.news__form input::placeholder { color: #6d6f76; }

.news__form button {
  padding: .95rem 1.4rem;
  border: none;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font: 800 1rem var(--font-body);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.news__form button:hover { background: #e8483d; transform: translateY(-2px); }
.news__form button:disabled { opacity: .6; cursor: wait; transform: none; }

/* honeypot */
.hp { position: absolute; left: -5000px; opacity: 0; height: 0; width: 0; }

.news__msg { margin-top: .9rem; font-weight: 600; min-height: 1.5em; }
.news__msg.ok { color: #6fd68a; }
.news__msg.err { color: #ff8a80; }

.news__fine { color: #6d6f76; font-size: .78rem; margin-top: .5rem; }
.news__fine a { color: var(--ink-dim); text-decoration: none; border-bottom: 1px solid var(--line); }
.news__fine a:hover { color: var(--ink); border-color: var(--red); }

@media (min-width: 560px) {
  .news__form { flex-direction: row; }
  .news__form input[type="email"] { flex: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 3rem 1.25rem calc(2.5rem + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .05em;
}
.footer__logo span { color: var(--red); }

.footer__motto {
  font-family: var(--font-marker);
  color: var(--ink-dim);
  font-size: .95rem;
  margin: .4rem 0 1rem;
  transform: rotate(-1deg);
}

.footer__copy { color: #6d6f76; font-size: .78rem; }

.footer__credit { color: #6d6f76; font-size: .78rem; margin-top: .35rem; }
.footer__credit a {
  color: var(--ink-dim);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .2s, border-color .2s;
}
.footer__credit a:hover { color: var(--ink); border-color: var(--red); }


/* ============================================================
   THE WORLD — location cards
   ============================================================ */

.world { padding: 4.5rem 0; border-top: 1px solid var(--line); }
.world__head { max-width: 1180px; margin: 0 auto 1.8rem; padding: 0 1.25rem; }

.world__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.loc {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
  aspect-ratio: 16 / 9;
  text-align: left;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-body);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
}
.loc:hover, .loc:focus-visible {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  outline: none;
}
.loc img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.loc:hover img { transform: scale(1.06); }

.loc__veil {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(13,14,17,.1) 35%, rgba(13,14,17,.92));
  pointer-events: none;
}
.loc__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.1rem; }
.loc__kicker {
  display: block;
  font-size: .62rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.loc__name {
  display: block;
  font-family: var(--font-marker);
  font-size: 1.5rem; line-height: 1.1; margin-top: .1rem;
  transform: rotate(-1deg);
  text-shadow: 0 2px 10px rgba(0,0,0,.85);
}
.loc__hint { display: block; font-size: .78rem; color: var(--ink-dim); margin-top: .2rem; }

@media (min-width: 640px) { .world__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .world { padding: 6rem 0; }
  .world__grid { grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
}

/* ============================================================
   TAG WALL
   ============================================================ */

.wall {
  padding: 4.5rem 0;
  background:
    linear-gradient(rgba(13,14,17,.86), rgba(13,14,17,.9)),
    url("../img/loc-city.webp?v=20260803g") center/cover no-repeat;
  border-top: 1px solid var(--line);
}
.wall__head { max-width: 1180px; margin: 0 auto 1.6rem; padding: 0 1.25rem; }
.wall__head .crew__hint, .wall__sub { color: var(--ink-dim); font-size: .88rem; }

.wall__grid {
  max-width: 1180px; margin: 0 auto; padding: 0 1.25rem;
  columns: 2; column-gap: .9rem;
}

.tagbtn {
  position: relative;
  display: block; width: 100%; margin: 0 0 .9rem;
  break-inside: avoid; -webkit-column-break-inside: avoid;
  border: 0; padding: 0; cursor: pointer;
  background: #2a2c33;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.5);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s;
}
.tagbtn:hover, .tagbtn:focus-visible {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 18px 38px rgba(0,0,0,.6), 0 0 0 2px var(--accent);
  outline: none;
}
.tagbtn img { width: 100%; height: auto; display: block; }

/* marker-style tag for crew without painted tag art */
.tagbtn--marker {
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.38)),
    url("../img/tag-brick.webp?v=20260803g") center/cover no-repeat;
}
.tagbtn--marker span {
  font-family: var(--font-marker);
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  color: #f4f1ea;
  transform: rotate(-6deg);
  text-shadow:
    2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000,
    0 8px 18px rgba(0,0,0,.8);
  letter-spacing: .02em;
}

.tagbtn__who {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .55rem .7rem .5rem;
  background: linear-gradient(transparent, rgba(10,11,13,.9));
  font-size: .66rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; text-align: left;
  opacity: 0; transition: opacity .25s;
}
.tagbtn:hover .tagbtn__who, .tagbtn:focus-visible .tagbtn__who { opacity: 1; }

@media (min-width: 720px) { .wall__grid { columns: 3; } }
@media (min-width: 1100px) {
  .wall { padding: 6rem 0; }
  .wall__grid { columns: 4; column-gap: 1.1rem; }
}

/* ============================================================
   FAN ZONE
   ============================================================ */

.fan { padding: 4.5rem 0; border-top: 1px solid var(--line); background: var(--bg-2); }
.fan__inner { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.fan__head { margin-bottom: 1.6rem; }

.fan__grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }

.wp {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: #0d0e11;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s;
}
.wp:hover { transform: translateY(-5px); border-color: var(--red); }
.wp img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; }
.wp__tag {
  position: absolute; inset: auto 0 0 0;
  padding: .8rem .8rem .7rem;
  background: linear-gradient(transparent, rgba(10,11,13,.92));
  color: var(--ink);
  font-size: .78rem; font-weight: 700;
}
.wp__tag b { display: block; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .1rem; }

.fan__cta {
  margin-top: 1.6rem;
  border: 2px dashed var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.3rem;
  text-align: center;
  background: radial-gradient(500px 200px at 50% 0%, rgba(139,92,246,.1), transparent 70%);
}
.fan__cta h3 { font-family: var(--font-marker); color: var(--purple); font-size: 1.5rem; transform: rotate(-1deg); }
.fan__cta p { color: var(--ink-dim); font-size: .9rem; margin: .5rem auto 1rem; max-width: 46ch; }
.btn-line {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-weight: 800; font-size: .85rem;
  padding: .7rem 1.3rem; border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-line:hover { border-color: var(--red); background: var(--panel); transform: translateY(-2px); }

@media (min-width: 760px) { .fan__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .fan { padding: 6rem 0; } }

/* ============================================================
   SHARED SUBPAGE SHELL (art / guide / blocktalk)
   ============================================================ */

.page { max-width: 1180px; margin: 0 auto; padding: 6.5rem 1.25rem 3rem; }
.page--narrow { max-width: 800px; }
.page__kicker { font-family: var(--font-marker); color: var(--orange); font-size: 1.05rem; transform: rotate(-1.5deg); }
.page__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8vw, 3.6rem);
  text-transform: uppercase; line-height: 1.03; margin: .2rem 0 .8rem;
}
.page__lede { color: var(--ink-dim); max-width: 60ch; margin-bottom: 2.2rem; }
.page__back { display: inline-block; margin-top: 2.5rem; font-weight: 700; color: var(--red); text-decoration: none; }
.page__back:hover { text-decoration: underline; }

.footer__links { margin: .9rem 0 .3rem; font-size: .8rem; }
.footer__links a { color: var(--ink-dim); text-decoration: none; margin: 0 .45rem; }
.footer__links a:hover { color: var(--ink); }

/* ---- art gallery ---- */
.gal__group { margin-bottom: 2.6rem; }
.gal__name {
  font-family: var(--font-marker);
  font-size: 1.6rem; color: var(--accent, var(--red));
  transform: rotate(-1deg); margin-bottom: .2rem;
}
.gal__note { color: var(--ink-dim); font-size: .85rem; margin-bottom: .9rem; }
.gal__row { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); align-items: start; }
.gal__item {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent, var(--red));
  border-radius: 12px; overflow: hidden;
  background: #fff; cursor: zoom-in; padding: 0;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s;
}
.gal__item:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.5); }
.gal__item img { width: 100%; display: block; }
@media (min-width: 720px) { .gal__row { grid-template-columns: repeat(3, 1fr); } }

.lightbox { position: fixed; inset: 0; z-index: 140; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.lightbox[hidden] { display: none; }
.lightbox__bd { position: absolute; inset: 0; background: rgba(8,9,11,.92); backdrop-filter: blur(4px); }
.lightbox img { position: relative; max-width: 96vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.8); }
.lightbox__x {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  width: 2.6rem; height: 2.6rem; border: 0; border-radius: 50%;
  background: rgba(0,0,0,.65); color: #fff; font-size: 1.6rem; cursor: pointer;
}
.lightbox__x:hover { background: var(--red); }

/* ---- episode guide ---- */
.ep {
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  background: var(--panel);
  padding: 1.4rem 1.25rem 1.5rem;
  margin-bottom: 1.4rem;
}
.ep__top { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .5rem; }
.ep__num {
  font-family: var(--font-display); font-size: .8rem; letter-spacing: .12em;
  background: var(--red); color: #fff; padding: .22rem .6rem; border-radius: 6px;
}
.ep__status {
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); border: 1px solid color-mix(in srgb, var(--orange) 45%, transparent);
  padding: .22rem .55rem; border-radius: 999px;
}
.ep__title { font-family: var(--font-marker); font-size: 1.7rem; color: var(--ink); transform: rotate(-.8deg); }
.ep__log { color: var(--ink); font-weight: 600; margin: .5rem 0 .8rem; }
.ep p { color: var(--ink-dim); margin-bottom: .8rem; }
.ep__stills { display: grid; gap: .6rem; grid-template-columns: repeat(2, 1fr); margin-top: 1rem; }
.ep__stills img { border-radius: 8px; border: 1px solid var(--line); width: 100%; aspect-ratio: 9/16; object-fit: cover; }
@media (min-width: 720px) { .ep__stills { grid-template-columns: repeat(4, 1fr); } .ep { padding: 1.8rem; } }

.soon-card {
  border: 2px dashed var(--line); border-radius: 14px;
  padding: 2rem 1.3rem; text-align: center; color: var(--ink-dim);
}
.soon-card b { display: block; font-family: var(--font-marker); color: var(--orange); font-size: 1.5rem; margin-bottom: .3rem; transform: rotate(-1deg); }

/* ---- glossary ---- */
.gloss { display: grid; gap: .8rem; }
.gloss__item {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent, var(--red));
  border-radius: 12px; background: var(--panel);
  padding: .95rem 1.1rem;
}
.gloss__term { font-family: var(--font-marker); font-size: 1.25rem; color: var(--accent, var(--red)); transform: rotate(-.6deg); }
.gloss__def { color: var(--ink-dim); font-size: .92rem; margin-top: .2rem; }
.gloss__def b { color: var(--ink); }
.gloss__sec {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: .04em;
  margin: 2.2rem 0 .9rem; padding-bottom: .4rem; border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) { .gloss { grid-template-columns: repeat(2, 1fr); } .gloss__sec { grid-column: 1 / -1; } }

/* hero with no video (Save-Data / 2G): just the poster, no long scroll */
.hero--static { height: 100svh; }

/* dossier share button */
.dossier__copy {
  margin-top: 1.3rem;
  font: 700 .8rem var(--font-body);
  color: var(--ink-dim);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .6rem 1.1rem;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.dossier__copy:hover { color: var(--ink); border-color: var(--accent, var(--red)); }
.dossier__copy.is-done { color: #6fd68a; border-color: #6fd68a; }

/* ============================================================
   QUIZ — card + modal
   ============================================================ */

.card--quiz {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(242,131,29,.16), transparent 65%),
    var(--panel);
}
.card--quiz .card__name { line-height: 1.05; }

.card__art--quiz {
  position: relative;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(#26282f, #1a1c21);
}
.quizcard__row {
  display: flex; align-items: flex-end; justify-content: center;
  width: 100%; height: 100%; gap: 1.5%; padding: 0 5%;
}
.quizcard__row img {
  width: 12%; height: auto; max-height: 78%;
  object-fit: contain; object-position: bottom;
  filter: brightness(0) invert(1);
  opacity: .17;
}
.quizcard__row img:nth-child(4) { opacity: .24; }
.quizcard__q {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%) rotate(-6deg);
  font-family: var(--font-marker);
  font-size: 7rem;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 6px 26px rgba(0,0,0,.7);
  pointer-events: none;
}
.card--quiz:hover .quizcard__q { animation: q-wobble .6s ease; }
@keyframes q-wobble {
  0%,100% { transform: translate(-50%,-52%) rotate(-6deg); }
  40% { transform: translate(-50%,-56%) rotate(4deg) scale(1.06); }
}

/* ---- modal shell ---- */
.quiz {
  position: fixed; inset: 0; z-index: 130;
  display: flex; align-items: flex-end; justify-content: center;
}
.quiz[hidden] { display: none; }
.quiz__backdrop {
  position: absolute; inset: 0;
  background: rgba(8,9,11,.9);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  animation: dossier-fade .3s ease;
}
.quiz__panel {
  position: relative;
  width: 100%;
  max-height: 94svh;
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--orange));
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -20px 80px rgba(0,0,0,.75);
  overflow: hidden;
  animation: dossier-up .42s cubic-bezier(.2,.8,.25,1);
  --accent: var(--orange);
}
.quiz__close {
  position: absolute; top: .7rem; right: .7rem; z-index: 6;
  width: 2.4rem; height: 2.4rem; border: none; border-radius: 50%;
  background: rgba(0,0,0,.5); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background .2s;
}
.quiz__close:hover { background: var(--accent); }

.quiz__progress { height: 4px; background: rgba(255,255,255,.07); flex: none; }
.quiz__progressbar {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: width .45s cubic-bezier(.2,.8,.25,1);
}

.quiz__stage { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 1.5rem 1.25rem 1.8rem; }

/* ---- question view ---- */
.qv { animation: q-in .38s cubic-bezier(.2,.7,.3,1) both; }
.qv.is-out { animation: q-out .22s ease forwards; }
@keyframes q-in  { from { opacity: 0; transform: translateX(22px); } }
@keyframes q-out { to   { opacity: 0; transform: translateX(-22px); } }

.qv__step {
  font-family: var(--font-display);
  font-size: .78rem; letter-spacing: .18em;
  color: var(--orange);
}
.qv__q {
  /* Body font here on purpose — the display face is very condensed and
     turns a full sentence into a wall. Questions need to be read, not
     just glanced at. */
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.25rem, 4.8vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: .005em;
  margin: .4rem 0 1.3rem;
  max-width: 26ch;
}
.qv__opts { display: grid; gap: .6rem; }
.qv__opt {
  text-align: left;
  font: 600 .92rem var(--font-body);
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: 12px;
  padding: .95rem 1rem;
  cursor: pointer;
  display: flex; align-items: flex-start; gap: .7rem;
  transition: border-color .2s, background .2s, transform .2s;
}
.qv__opt:hover, .qv__opt:focus-visible {
  border-color: var(--line);
  border-left-color: var(--orange);
  background: #282a31;
  transform: translateX(3px);
  outline: none;
}
.qv__opt.is-picked {
  border-left-color: var(--orange);
  background: color-mix(in srgb, var(--orange) 18%, var(--panel));
}
.qv__letter {
  flex: none;
  font-family: var(--font-display);
  font-size: .8rem; letter-spacing: .06em;
  color: var(--orange);
  border: 1px solid color-mix(in srgb, var(--orange) 45%, transparent);
  border-radius: 6px;
  padding: .1rem .42rem;
  margin-top: .1rem;
}
.qv__back {
  margin-top: 1.1rem;
  background: none; border: none;
  color: var(--ink-dim); font: 700 .82rem var(--font-body);
  cursor: pointer; padding: .3rem 0;
}
.qv__back:hover { color: var(--ink); }

/* ---- reveal (slot machine) ---- */
.qr { text-align: center; padding: 1.2rem 0 .6rem; }
.qr__label {
  font-family: var(--font-display);
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim);
}
.qr__stage {
  height: min(46svh, 340px);
  display: flex; align-items: flex-end; justify-content: center;
  margin: .8rem 0 .4rem;
}
.qr__stage img { height: 100%; width: auto; filter: drop-shadow(0 12px 26px rgba(0,0,0,.6)); }
.qr__name {
  font-family: var(--font-marker);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  color: var(--accent, var(--orange));
  transform: rotate(-1.5deg);
  min-height: 1.2em;
}

/* ---- result ---- */
.qres { animation: q-in .45s cubic-bezier(.2,.7,.3,1) both; text-align: center; }
.qres__hero {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  height: min(42svh, 320px);
  background:
    radial-gradient(125% 100% at 50% 104%,
      color-mix(in srgb, var(--accent) 36%, transparent) 0%,
      color-mix(in srgb, var(--accent) 13%, transparent) 42%,
      transparent 76%);
  border-radius: 16px;
  margin-bottom: .9rem;
  overflow: hidden;
}
.qres__hero img {
  height: 96%; width: auto;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.6));
  animation: qres-pop .55s cubic-bezier(.2,.9,.3,1.3) both;
}
@keyframes qres-pop { from { transform: translateY(24px) scale(.9); opacity: 0; } }

.qres__kicker { font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); }
.qres__name {
  font-family: var(--font-marker);
  font-size: clamp(2.7rem, 12vw, 3.9rem);
  color: var(--accent);
  line-height: 1.05;
  transform: rotate(-1.5deg);
  margin: .1rem 0 .1rem;
}
.qres__real { color: var(--ink-dim); font-size: .85rem; }
.qres__role {
  font-weight: 800; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; margin-top: .5rem;
}
.qres__why {
  color: var(--ink-dim);
  font-size: .95rem;
  max-width: 42ch;
  margin: .9rem auto 0;
}
.qres__power {
  margin: 1rem auto 0;
  max-width: 42ch;
  font-size: .9rem;
  text-align: left;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: .6rem .8rem;
}
.qres__power span {
  display: block; font-weight: 800; font-size: .64rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
.qres__actions {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-top: 1.5rem;
}
.qbtn {
  font: 800 .85rem var(--font-body);
  padding: .8rem 1.3rem; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg); color: var(--ink);
  cursor: pointer; text-decoration: none;
  transition: transform .2s, border-color .2s, background .2s;
}
.qbtn:hover { transform: translateY(-2px); border-color: var(--accent); }
.qbtn--primary { background: var(--accent); border-color: transparent; color: #121316; }
.qbtn--primary:hover { filter: brightness(1.1); }
.qbtn[disabled] { opacity: .6; cursor: wait; transform: none; }
.qres__hint { color: #6d6f76; font-size: .74rem; margin-top: .9rem; }

@media (min-width: 760px) {
  .quiz { align-items: center; padding: 2rem; }
  .quiz__panel {
    max-width: 680px; max-height: 90vh;
    border-radius: 18px; border-bottom: 1px solid var(--line);
    animation: dossier-pop .38s cubic-bezier(.2,.8,.25,1);
  }
  .quiz__stage { padding: 2rem 2.2rem 2.2rem; }
  .qv__opt { font-size: .96rem; padding: 1.05rem 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  .qv, .qres, .qres__hero img, .quiz__panel, .quiz__backdrop { animation: none; }
  .quiz__progressbar { transition: none; }
}

/* ============================================================
   PRESS KIT
   ============================================================ */

.pk-contact {
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  background: var(--panel);
  padding: 1.1rem 1.2rem;
  margin-bottom: 2.4rem;
}
.pk-contact b {
  display: block; font-size: .66rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  margin-bottom: .25rem;
}
.pk-contact a { color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--line); }
.pk-contact a:hover { border-color: var(--red); }
.pk-contact p { color: var(--ink-dim); font-size: .85rem; margin-top: .4rem; }

.pk-block {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 1.1rem 1.2rem 3.1rem;
  margin-bottom: 1rem;
}
.pk-block p { color: var(--ink-dim); margin-bottom: .8rem; }
.pk-block p:last-of-type { margin-bottom: 0; }
.pk-block .pk-lede { color: var(--ink); font-weight: 600; font-size: 1.05rem; }

.pk-copy {
  position: absolute; right: .9rem; bottom: .9rem;
  font: 700 .72rem var(--font-body);
  color: var(--ink-dim);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .38rem .85rem;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.pk-copy:hover { color: var(--ink); border-color: var(--red); }
.pk-copy.is-done { color: #6fd68a; border-color: #6fd68a; }

.pk-facts {
  display: grid; gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.pk-fact {
  display: grid;
  grid-template-columns: 1fr;
  gap: .1rem;
  padding: .75rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.pk-fact:last-child { border-bottom: none; }
.pk-fact dt {
  font-size: .64rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
}
.pk-fact dd { color: var(--ink); font-size: .92rem; }
.pk-fact dd a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.pk-fact dd a:hover { border-color: var(--red); }
@media (min-width: 600px) {
  .pk-fact { grid-template-columns: 190px 1fr; gap: 1rem; align-items: baseline; }
}

.pk-crew { display: grid; gap: .7rem; }
.pk-member {
  display: flex; align-items: center; gap: .9rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, var(--red));
  border-radius: 12px;
  background: var(--panel);
  padding: .7rem .9rem;
}
.pk-member img { width: 46px; height: 62px; object-fit: contain; object-position: bottom; flex: none; }
.pk-member b {
  font-family: var(--font-marker);
  font-size: 1.1rem; color: var(--accent, var(--red));
  display: block; line-height: 1.2;
}
.pk-member span { color: var(--ink-dim); font-size: .86rem; }
@media (min-width: 720px) { .pk-crew { grid-template-columns: 1fr 1fr; } }

.pk-assets { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); }
.pk-asset {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  text-decoration: none;
  display: block;
  transition: transform .25s, border-color .25s;
}
.pk-asset:hover { transform: translateY(-4px); border-color: var(--red); }
.pk-asset__thumb {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-conic-gradient(#23252b 0% 25%, #1c1e23 0% 50%) 50% / 18px 18px;
  padding: .6rem;
}
.pk-asset__thumb img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.pk-asset__meta { padding: .7rem .85rem .8rem; }
.pk-asset__meta b { display: block; font-size: .88rem; color: var(--ink); }
.pk-asset__meta span { font-size: .72rem; color: #6d6f76; }
@media (min-width: 720px) { .pk-assets { grid-template-columns: repeat(4, 1fr); } }

.pk-note { color: #6d6f76; font-size: .8rem; margin-top: 1rem; }

/* ============================================================
   PRELOADER — covers the hero while its video downloads
   ============================================================ */

.preload {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity .5s ease, visibility .5s ease;
}
.preload[hidden] { display: none; }
.preload.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }

.preload__inner { text-align: center; padding: 0 1.5rem; width: min(420px, 86vw); }

.preload__logo {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 11vw, 3.4rem);
  letter-spacing: .05em;
  line-height: 1;
  color: var(--ink);
  animation: preload-breathe 2.2s ease-in-out infinite;
}
.preload__logo span { color: var(--red); }

@keyframes preload-breathe {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.015); }
}

/* paint stroke that fills as the video downloads */
.preload__track {
  position: relative;
  height: 8px;
  margin: 1.4rem 0 .8rem;
  border-radius: 999px;
  background: #26282f;
  overflow: hidden;
}
.preload__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: width .25s ease-out;
  position: relative;
}
.preload__fill::after {            /* wet edge on the leading tip */
  content: "";
  position: absolute;
  right: -2px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(2px);
  opacity: .9;
}
.preload__fill.is-idle {           /* no Content-Length: sweep instead */
  width: 40%;
  animation: preload-sweep 1.3s ease-in-out infinite;
}
@keyframes preload-sweep {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

.preload__pct {
  font-family: var(--font-marker);
  color: var(--ink-dim);
  font-size: .92rem;
  transform: rotate(-1deg);
}

@media (prefers-reduced-motion: reduce) {
  .preload__logo { animation: none; }
  .preload__fill.is-idle { animation: none; width: 100%; opacity: .4; }
  .preload, .preload__fill { transition: none; }
}


