:root {
  --bg: #070708;
  --bg-soft: #0b0b0d;
  --panel: #0e0e11;
  --panel-2: #121216;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f1f0ec;
  --muted: #908f93;
  --dim: #5b5a60;
  --accent: #b6202e;
  --accent-bright: #e33a49;
  --accent-soft: rgba(182, 32, 46, 0.12);
  --success: #84a894;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 84px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open, body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
.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; }
[hidden] { display: none !important; }

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  gap: 14px;
  background: #050506;
  text-align: center;
  pointer-events: none;
  transition: opacity .45s var(--ease), visibility .45s;
}
.boot-screen p, .boot-screen span { margin: 0; letter-spacing: .28em; font-size: 10px; font-weight: 700; }
.boot-screen span { color: var(--dim); }
.boot-screen__line { width: 180px; height: 1px; overflow: hidden; background: rgba(255,255,255,.08); }
.boot-screen__line::after { content: ""; display: block; width: 45%; height: 100%; background: var(--accent-bright); animation: bootLine .9s var(--ease) both; }
body.is-ready .boot-screen { opacity: 0; visibility: hidden; }
@keyframes bootLine { from { transform: translateX(-110%); } to { transform: translateX(230%); } }

.page-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 1000; pointer-events: none; }
.page-progress span { display: block; width: 0; height: 100%; background: var(--accent-bright); transform-origin: left; }
.signal-flash { position: fixed; inset: 0; z-index: 900; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent 0 48%, rgba(227,58,73,.08) 50%, transparent 52%); }
.signal-flash.is-active { animation: signalFlash .34s steps(2, end); }
@keyframes signalFlash { 0%,100% { opacity: 0; transform: translateX(-4%); } 20%,60% { opacity: 1; transform: translateX(3%); } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s, border-color .35s;
}
.site-header.is-scrolled { height: 70px; background: rgba(7,7,8,.88); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; font-size: 11px; font-weight: 750; letter-spacing: .18em; }
.brand-symbol { position: relative; width: 25px; height: 25px; border: 1px solid var(--line-strong); transform: rotate(45deg); transition: border-color .3s, transform .5s var(--ease); }
.brand-symbol::before, .brand-symbol::after, .brand-symbol i { content: ""; position: absolute; background: var(--accent-bright); }
.brand-symbol::before { width: 7px; height: 1px; top: 6px; left: 8px; }
.brand-symbol::after { width: 1px; height: 7px; top: 8px; left: 6px; }
.brand-symbol i { width: 5px; height: 5px; right: 4px; bottom: 4px; }
.brand:hover .brand-symbol { border-color: var(--accent-bright); transform: rotate(135deg); }
.main-nav { display: flex; gap: 34px; }
.main-nav a { position: relative; padding: 10px 0; color: #b5b4b6; font-size: 11px; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; transition: color .25s; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: var(--accent-bright); transition: right .35s var(--ease); }
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.immersion-toggle { display: flex; align-items: center; gap: 10px; padding: 8px 0; border: 0; background: none; cursor: pointer; }
.immersion-copy { display: grid; gap: 2px; text-align: left; }
.immersion-copy strong, .immersion-copy small { font-size: 9px; letter-spacing: .14em; line-height: 1; }
.immersion-copy small { color: var(--dim); transition: color .25s; }
.immersion-icon { display: flex; align-items: center; gap: 2px; height: 18px; }
.immersion-icon i { width: 2px; height: 5px; background: var(--dim); transition: height .25s, background .25s; }
.immersion-icon i:nth-child(2) { height: 10px; }
body.immersion-on .immersion-icon i { background: var(--accent-bright); animation: equalizer .8s ease-in-out infinite alternate; }
body.immersion-on .immersion-icon i:nth-child(2) { animation-delay: -.3s; }
body.immersion-on .immersion-icon i:nth-child(3) { animation-delay: -.55s; }
body.immersion-on .immersion-copy small { color: var(--accent-bright); }
@keyframes equalizer { to { height: 17px; } }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; }
.menu-toggle span { display: block; width: 15px; height: 1px; margin: 5px auto; background: var(--text); transition: transform .3s; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 140px);
  padding: calc(var(--header-h) + 50px) clamp(24px, 7vw, 120px) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 74% 42%, rgba(182,32,46,.08), transparent 28%), linear-gradient(115deg, #070708 0 57%, #09090b 57% 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; z-index: -2; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
.hero-spotlight { position: absolute; inset: 0; z-index: -1; opacity: .55; background: radial-gradient(420px circle at var(--pointer-x, 70%) var(--pointer-y, 40%), rgba(255,255,255,.035), transparent 70%); }
.hero-line { position: absolute; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.hero-line--top { top: 23%; }
.hero-line--bottom { bottom: 18%; }
.hero-line::after { content: ""; display: block; width: 15%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-bright), transparent); transform: translateX(-100%); }
body.immersion-on .hero-line::after { animation: lineTravel 7s linear infinite; }
.hero-line--bottom::after { animation-delay: -3.4s !important; }
@keyframes lineTravel { to { transform: translateX(770%); } }
.hero-copy-block { max-width: 850px; }
.transmission-status { display: flex; align-items: center; gap: 11px; margin-bottom: 35px; color: var(--muted); font-size: 9px; letter-spacing: .18em; font-weight: 700; }
.transmission-status i { width: 34px; height: 1px; background: var(--line-strong); }
.transmission-status strong { color: var(--accent-bright); min-width: 155px; }
.status-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 0 rgba(227,58,73,.35); animation: statusPulse 2.4s ease-out infinite; }
@keyframes statusPulse { 70%,100% { box-shadow: 0 0 0 9px rgba(227,58,73,0); } }
.eyebrow { margin: 0 0 20px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .22em; line-height: 1.5; }
.hero h1 { position: relative; margin: 0; max-width: 940px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 6.2vw, 104px); line-height: .94; letter-spacing: -.055em; font-weight: 400; }
.hero h1 em { color: #a9a7a4; font-style: normal; }
.hero-intro { max-width: 620px; margin: 34px 0 0; color: #aaa9ad; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.primary-button, .ghost-button { min-height: 56px; border: 1px solid transparent; cursor: pointer; text-transform: uppercase; font-size: 10px; font-weight: 750; letter-spacing: .17em; transition: transform .3s var(--ease), background .3s, border-color .3s, color .3s; }
.primary-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 230px; padding: 0 20px; background: var(--text); color: #0a0a0b; }
.primary-button b { font-size: 17px; font-weight: 400; }
.primary-button:hover { transform: translateY(-3px); background: #fff; }
.ghost-button { display: inline-flex; align-items: center; gap: 13px; padding: 0 22px; background: transparent; border-color: var(--line-strong); color: var(--text); }
.ghost-button:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.035); }
.mini-play { color: var(--accent-bright); font-size: 9px; }

.active-file { position: relative; align-self: center; width: min(100%, 470px); padding: 31px; border: 1px solid var(--line-strong); background: rgba(13,13,15,.82); box-shadow: 0 32px 80px rgba(0,0,0,.32); overflow: hidden; transition: transform .5s var(--ease), border-color .35s; }
.active-file:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.3); }
.active-file::before, .active-file::after { content: ""; position: absolute; width: 36px; height: 36px; pointer-events: none; }
.active-file::before { top: -1px; left: -1px; border-top: 2px solid var(--accent-bright); border-left: 2px solid var(--accent-bright); }
.active-file::after { right: -1px; bottom: -1px; border-right: 2px solid var(--accent-bright); border-bottom: 2px solid var(--accent-bright); }
.file-scan { position: absolute; inset: 0; pointer-events: none; opacity: 0; background: linear-gradient(180deg, transparent, rgba(227,58,73,.08), transparent); transform: translateY(-100%); }
.active-file:hover .file-scan, body.immersion-on .active-file .file-scan { animation: fileScan 3.8s var(--ease) infinite; }
@keyframes fileScan { 0%,25% { opacity: 0; transform: translateY(-100%); } 40% { opacity: 1; } 70%,100% { opacity: 0; transform: translateY(100%); } }
.active-file header { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 9px; letter-spacing: .18em; font-weight: 700; }
.file-status { display: inline-flex; align-items: center; gap: 8px; color: var(--success); }
.file-status i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.file-code { margin-top: 50px; color: #343338; font-size: clamp(62px, 8vw, 112px); line-height: .8; letter-spacing: -.07em; font-weight: 800; }
.file-title-row { display: flex; align-items: baseline; gap: 18px; margin-top: 34px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.file-title-row > span { color: var(--accent-bright); font: 700 10px/1 monospace; }
.file-title-row h2 { position: relative; margin: 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.035em; }
.active-file > p { margin: 22px 0 30px; color: #aaa9ad; line-height: 1.65; }
.active-file dl { display: grid; grid-template-columns: repeat(3,1fr); margin: 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.active-file dl div + div { padding-left: 15px; border-left: 1px solid var(--line); }
.active-file dt { color: var(--dim); font-size: 8px; letter-spacing: .14em; }
.active-file dd { margin: 7px 0 0; font-size: 11px; letter-spacing: .08em; }
.file-open { display: flex; justify-content: space-between; width: 100%; margin-top: 24px; padding: 8px 0; border: 0; background: transparent; cursor: pointer; color: var(--text); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.file-open b { color: var(--accent-bright); font-size: 18px; font-weight: 400; transition: transform .3s var(--ease); }
.file-open:hover b { transform: rotate(90deg); }
.scroll-cue { position: absolute; left: clamp(24px,7vw,120px); bottom: 28px; display: flex; align-items: center; gap: 13px; color: var(--dim); }
.scroll-cue span { position: relative; width: 40px; height: 1px; overflow: hidden; background: var(--line); }
.scroll-cue span::after { content: ""; position: absolute; width: 18px; height: 1px; background: var(--accent-bright); animation: scrollCue 2s var(--ease) infinite; }
.scroll-cue small { font-size: 8px; letter-spacing: .18em; }
@keyframes scrollCue { from { transform: translateX(-20px); } to { transform: translateX(42px); } }

.player-section { position: relative; z-index: 2; padding: 0 clamp(24px,7vw,120px); transform: translateY(-18px); }
.player-panel { display: grid; grid-template-columns: 82px minmax(180px,1fr) auto minmax(250px,1.4fr) auto; align-items: center; gap: 28px; max-width: 1500px; margin: auto; padding: 23px 28px; border: 1px solid var(--line-strong); background: #0d0d0f; box-shadow: 0 18px 60px rgba(0,0,0,.25); }
.player-signal { display: flex; align-items: center; justify-content: center; gap: 2px; height: 44px; border-right: 1px solid var(--line); padding-right: 22px; }
.player-signal span { width: 2px; height: 5px; background: #55545a; transform-origin: center; }
body.is-playing .player-signal span { background: var(--accent-bright); animation: playerBar .75s ease-in-out infinite alternate; }
.player-signal span:nth-child(2n) { animation-delay: -.2s !important; }
.player-signal span:nth-child(3n) { animation-delay: -.43s !important; }
.player-signal span:nth-child(5n) { animation-delay: -.62s !important; }
@keyframes playerBar { to { height: 36px; } }
.player-information { min-width: 0; }
.player-status, .player-reference { margin: 0; color: var(--accent-bright); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.player-title { margin: 7px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 16px; }
.player-reference { color: var(--dim); }
.player-controls { display: flex; align-items: center; gap: 9px; }
.skip-button, .play-button, .speed-button, .dossier-button { border: 1px solid var(--line); background: transparent; cursor: pointer; transition: border-color .25s, background .25s, transform .25s var(--ease); }
.skip-button { width: 38px; height: 38px; color: var(--muted); font-size: 9px; }
.play-button { width: 52px; height: 52px; border-color: var(--text); background: var(--text); color: #09090a; }
.pause-icon { display: none; }
body.is-playing .play-icon { display: none; }
body.is-playing .pause-icon { display: inline; }
.skip-button:hover, .speed-button:hover, .dossier-button:hover { border-color: var(--line-strong); background: rgba(255,255,255,.04); }
.play-button:hover { transform: scale(1.05); }
.timeline-zone { min-width: 170px; }
.timeline { position: relative; height: 16px; cursor: pointer; outline: none; }
.timeline::before { content: ""; position: absolute; inset: 7px 0 auto; height: 1px; background: #2d2d31; }
.timeline-buffer, .timeline-progress { position: absolute; top: 7px; left: 0; height: 1px; }
.timeline-buffer { width: 0; background: #4d4c51; }
.timeline-progress { width: 0; background: var(--accent-bright); }
.timeline-thumb { position: absolute; top: 3px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--text); transform: translateX(-50%); box-shadow: 0 0 0 4px rgba(255,255,255,0); transition: box-shadow .2s; }
.timeline:hover .timeline-thumb, .timeline:focus-visible .timeline-thumb { box-shadow: 0 0 0 4px rgba(255,255,255,.1); }
.time-row { display: flex; justify-content: space-between; margin-top: 2px; color: var(--dim); font: 9px/1 monospace; }
.player-tools { display: flex; align-items: center; gap: 8px; }
.volume-control { display: flex; align-items: center; gap: 8px; color: var(--dim); font-size: 8px; }
.volume-slider { width: 62px; accent-color: var(--accent-bright); }
.speed-button, .dossier-button { min-width: 45px; height: 34px; color: var(--muted); font-size: 8px; letter-spacing: .1em; }

.section-shell { width: min(1600px, calc(100% - clamp(48px,14vw,240px))); margin-inline: auto; }
.episodes-section { padding-top: 150px; padding-bottom: 150px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 58px; }
.section-heading h2, .manifesto h2, .subscription h2 { position: relative; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px,5vw,76px); line-height: .98; letter-spacing: -.045em; font-weight: 400; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.75; }
.archive-toolbar { display: grid; grid-template-columns: minmax(260px,1fr) auto auto; align-items: center; gap: 28px; margin-bottom: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.archive-search { position: relative; display: block; max-width: 470px; }
.archive-search input { width: 100%; height: 44px; padding: 0 42px 0 15px; border: 1px solid var(--line); outline: none; background: var(--panel); color: var(--text); font-size: 12px; transition: border-color .25s; }
.archive-search input:focus { border-color: var(--line-strong); }
.archive-search > span:last-child { position: absolute; right: 15px; top: 12px; color: var(--dim); }
.archive-filters { display: flex; gap: 4px; }
.filter-button { height: 36px; padding: 0 13px; border: 1px solid transparent; background: transparent; color: var(--dim); cursor: pointer; font-size: 8px; letter-spacing: .12em; }
.filter-button:hover { color: var(--text); }
.filter-button.is-active { border-color: var(--line); background: var(--panel); color: var(--text); }
.archive-count { margin: 0; color: var(--dim); font-size: 8px; letter-spacing: .13em; }
.episode-list { border-top: 1px solid var(--line); }
.episode-card { position: relative; display: grid; grid-template-columns: 150px minmax(0,1fr) auto; align-items: center; gap: 36px; min-height: 174px; padding: 27px 18px; border-bottom: 1px solid var(--line); overflow: hidden; transition: background .35s, padding .35s var(--ease), opacity .35s; content-visibility: auto; contain-intrinsic-size: 174px; }
.episode-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--accent-bright); transform: scaleY(0); transform-origin: bottom; transition: transform .35s var(--ease); }
.episode-card:hover { padding-left: 28px; background: rgba(255,255,255,.018); }
.episode-card:hover::before, .episode-card.is-current::before { transform: scaleY(1); }
.episode-sweep { position: absolute; inset: 0; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent, rgba(227,58,73,.055), transparent); transform: translateX(-100%); }
body.immersion-on .episode-card:hover .episode-sweep { animation: episodeSweep .65s var(--ease); }
@keyframes episodeSweep { 35% { opacity: 1; } 100% { opacity: 0; transform: translateX(100%); } }
.episode-index { display: grid; gap: 7px; }
.episode-index span { color: #36353a; font-size: 58px; line-height: .8; font-weight: 800; letter-spacing: -.08em; transition: color .3s; }
.episode-index small { color: var(--dim); font-size: 8px; letter-spacing: .12em; }
.episode-card:hover .episode-index span, .episode-card.is-current .episode-index span { color: var(--accent-bright); }
.episode-info { max-width: 750px; }
.episode-tags { display: flex; gap: 8px; margin-bottom: 14px; }
.episode-tags span { padding: 4px 7px; border: 1px solid var(--line); color: var(--dim); font-size: 7px; letter-spacing: .13em; }
.episode-tags span.is-completed { border-color:rgba(111,188,145,.35); color:#78c79a; }
.episode-info h3 { position: relative; width: max-content; max-width: 100%; margin: 0; font-size: clamp(25px,3vw,40px); letter-spacing: -.035em; }
.episode-info p { max-width: 670px; margin: 13px 0 0; color: var(--muted); line-height: 1.65; }
.episode-actions { display: flex; align-items: center; gap: 8px; }
.save-button, .details-button, .episode-play { height: 46px; border: 1px solid var(--line); background: transparent; cursor: pointer; color: var(--muted); transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease); }
.save-button { width: 46px; font-size: 18px; }
.details-button { padding: 0 15px; font-size: 8px; letter-spacing: .12em; }
.episode-play { width: 46px; border-color: var(--text); color: var(--text); }
.save-button:hover, .details-button:hover { color: var(--text); border-color: var(--line-strong); }
.episode-play:hover { transform: scale(1.06); background: var(--text); color: var(--bg); }
.save-button.is-saved { color: var(--accent-bright); border-color: rgba(227,58,73,.4); }
.episode-card.is-locked { opacity: .42; }
.episode-card.is-locked:hover { padding-left: 18px; background: none; }
.lock { padding: 8px 10px; border: 1px solid var(--line); color: var(--dim); font-size: 7px; letter-spacing: .12em; }
.empty-state { padding: 60px 0; color: var(--muted); text-align: center; }

.glitch-title::before, .glitch-title::after, [data-glitch].glitch-once::before, [data-glitch].glitch-once::after { content: attr(data-glitch); position: absolute; inset: 0; pointer-events: none; opacity: 0; }
.glitch-title.glitch-once::before, [data-glitch].glitch-once::before { color: #ff4857; opacity: .55; clip-path: inset(16% 0 66% 0); animation: glitchA .32s steps(2,end); }
.glitch-title.glitch-once::after, [data-glitch].glitch-once::after { color: #c7dde0; opacity: .4; clip-path: inset(68% 0 14% 0); animation: glitchB .32s steps(2,end); }
@keyframes glitchA { 0% { transform: translate(0); } 25% { transform: translate(-7px,1px); } 50% { transform: translate(5px,-1px); } 75% { transform: translate(-3px); } 100% { transform: translate(0); } }
@keyframes glitchB { 0% { transform: translate(0); } 25% { transform: translate(6px,-1px); } 50% { transform: translate(-5px,1px); } 75% { transform: translate(3px); } 100% { transform: translate(0); } }

.manifesto { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px,10vw,170px); align-items: center; min-height: 760px; padding-block: 120px; border-top: 1px solid var(--line); }
.manifesto-code { position: relative; min-height: 420px; display: grid; place-content: center; border: 1px solid var(--line); color: var(--dim); overflow: hidden; }
.manifesto-code::before { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid var(--line); border-radius: 50%; }
.manifesto-code::after { content: ""; position: absolute; width: 1px; height: 100%; background: var(--line); left: 50%; }
.manifesto-code span { z-index: 1; font-size: 8px; letter-spacing: .2em; }
.manifesto-code strong { z-index: 1; margin-top: 8px; color: #353439; font-size: clamp(54px,8vw,105px); line-height: .8; letter-spacing: -.08em; }
.manifesto-code i { position: absolute; z-index: 2; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 8px rgba(227,58,73,.08); }
body.immersion-on .manifesto-code i { animation: orbit 12s linear infinite; }
@keyframes orbit { from { transform: rotate(0) translateX(130px) rotate(0); } to { transform: rotate(360deg) translateX(130px) rotate(-360deg); } }
.manifesto-content { max-width: 790px; }
.manifesto-content > p:not(.eyebrow) { max-width: 690px; color: var(--muted); font-size: clamp(16px,1.35vw,21px); line-height: 1.8; }
.manifesto-content strong { color: var(--text); }
.manifesto blockquote { position: relative; margin: 46px 0 0; padding: 32px 0 0 55px; border-top: 1px solid var(--line); color: #c6c4c1; font-family: Georgia, serif; font-size: clamp(22px,2.5vw,38px); line-height: 1.35; }
.manifesto blockquote span { position: absolute; left: 0; top: 18px; color: var(--accent-bright); font-size: 60px; }

.protocol-section { padding-block: 130px 160px; border-top: 1px solid var(--line); }
.protocol-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.protocol-card { position: relative; min-height: 300px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background .35s; }
.protocol-card:hover { background: var(--panel); }
.protocol-card > span { color: var(--accent-bright); font-size: 9px; letter-spacing: .15em; }
.protocol-card i { position: absolute; right: 30px; top: 30px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; }
.protocol-card i::before, .protocol-card i::after { content: ""; position: absolute; background: var(--line-strong); }
.protocol-card i::before { width: 1px; height: 22px; left: 16px; top: 5px; }
.protocol-card i::after { width: 22px; height: 1px; left: 5px; top: 16px; }
.protocol-card h3 { margin: 120px 0 14px; font-size: 26px; }
.protocol-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.subscription { padding-bottom: 160px; }
.subscription-card { position: relative; min-height: 430px; display: grid; align-content: center; justify-items: center; padding: 70px 30px; border: 1px solid var(--line-strong); text-align: center; overflow: hidden; background: radial-gradient(circle at 50% 140%, rgba(182,32,46,.13), transparent 45%), var(--panel); }
.subscription-card::before, .subscription-card::after { content: ""; position: absolute; width: 58px; height: 58px; }
.subscription-card::before { left: -1px; top: -1px; border-left: 1px solid var(--accent-bright); border-top: 1px solid var(--accent-bright); }
.subscription-card::after { right: -1px; bottom: -1px; border-right: 1px solid var(--accent-bright); border-bottom: 1px solid var(--accent-bright); }
.subscription-beam { position: absolute; inset: 0; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent 42%, rgba(255,255,255,.035) 50%, transparent 58%); transform: translateX(-100%); }
body.immersion-on .subscription-beam { animation: subscriptionBeam 7s var(--ease) infinite; }
@keyframes subscriptionBeam { 15%,100% { opacity: 0; transform: translateX(-100%); } 35% { opacity: 1; } 65% { opacity: 0; transform: translateX(100%); } }
.subscription h2 { max-width: 850px; }
.subscription-card > p:not(.eyebrow,.form-message) { color: var(--muted); }
.subscribe-form { display: grid; grid-template-columns: minmax(220px,420px) auto; width: min(100%,650px); margin-top: 30px; }
.subscription-card > .ml-form-embedContainer { width: 100% !important; max-width: 650px !important; min-width: 0; }
.ml-form-embedContainer .row-form { width: 100%; min-width: 0; }
.ml-form-embedContainer .subscribe-form { width: 100%; min-width: 0; }
.subscribe-form input[type="email"] { min-width: 0; height: 58px; padding: 0 20px; border: 1px solid var(--line-strong); border-right: 0; outline: 0; background: var(--bg); color: var(--text); font-size: 11px; letter-spacing: .08em; }
.subscribe-form input[type="email"]:focus { border-color: rgba(255,255,255,.4); }
.subscribe-form button { height: 58px; padding: 0 23px; border: 0; background: var(--text); color: var(--bg); cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.subscribe-form button span { margin-left: 15px; font-size: 16px; }
.form-message { min-height: 18px; color: var(--success); font-size: 10px; letter-spacing: .08em; }
.ml-form-embedContainer .form-message { margin-top: 10px; }
.form-message--success { min-height: 0; margin: 28px 0 0; color: var(--success); }
.subscription-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; width: 100%; min-width: 0; margin-top: 16px; color: var(--muted); font-size: 9px; line-height: 1.55; text-align: left; cursor: pointer; }
.subscription-consent span { min-width: 0; overflow-wrap: anywhere; }
.subscription-consent a { color: var(--text); text-underline-offset: 3px; }
.subscription-consent input { flex: 0 0 auto; width: 15px; height: 15px; margin: 0; accent-color: var(--accent); }
.subscription-consent:focus-within { color: var(--text); }
.subscription-recaptcha { grid-column: 1 / -1; justify-self: center; width: 304px; min-height: 78px; margin-top: 18px; transform-origin: top center; }
.subscription-recaptcha iframe { filter: grayscale(1) invert(.92) hue-rotate(180deg); }
.subscribe-form button:disabled { cursor: wait; opacity: .65; }

@media (max-width: 400px) {
  .subscription-recaptcha { justify-self: start; margin-left: calc((100% - 304px) / 2); transform: scale(.9); margin-bottom: -8px; }
}

@media (max-width: 360px) {
  .subscription-recaptcha { transform: scale(.76); margin-bottom: -20px; }
}

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: center; padding-block: 40px; border-top: 1px solid var(--line); color: var(--dim); }
.site-footer > p { margin: 0; max-width: 480px; font-size: 11px; line-height: 1.6; }
.footer-copy p { margin: 0 0 9px; max-width: 480px; font-size: 11px; line-height: 1.6; }
.footer-copy a { color: var(--muted); font-size: 9px; letter-spacing: .06em; text-underline-offset: 4px; transition: color .2s; }
.footer-copy a:hover { color: var(--text); }
.footer-status { text-align: right; }
.footer-status > span { display: flex; align-items: center; justify-content: end; gap: 7px; font-size: 8px; letter-spacing: .13em; }
.footer-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--success); }
.footer-status small { display: block; margin-top: 8px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

.dossier-dialog { width: min(1040px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 0; border: 1px solid var(--line-strong); background: #0c0c0e; color: var(--text); box-shadow: 0 35px 120px rgba(0,0,0,.7); overflow: auto; }
.dossier-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(7px); }
.dialog-shell { position: relative; padding: clamp(25px,4vw,58px); overflow: hidden; }
.dialog-shell::before { content: ""; position: absolute; left: 0; top: 0; width: 2px; height: 100%; background: var(--accent-bright); }
.dialog-decode { position: absolute; inset: 0; z-index: 5; display: grid; place-content: center; gap: 18px; background: #09090b; transition: opacity .35s .5s, visibility .35s .5s; }
.dialog-decode span { font-size: 9px; letter-spacing: .22em; }
.dialog-decode i { width: 220px; height: 1px; background: var(--line); overflow: hidden; }
.dialog-decode i::after { content: ""; display: block; width: 45%; height: 100%; background: var(--accent-bright); animation: decodeLine .75s var(--ease); }
.dossier-dialog.is-decoded .dialog-decode { opacity: 0; visibility: hidden; }
@keyframes decodeLine { from { transform: translateX(-110%); } to { transform: translateX(230%); } }
.dialog-header { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.dialog-header h2 { margin: 0; font-family: Georgia,serif; font-size: clamp(42px,6vw,78px); font-weight: 400; letter-spacing: -.04em; }
.dialog-close { align-self: start; width: 43px; height: 43px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: 25px; transition: transform .3s, color .3s, border-color .3s; }
.dialog-close:hover { transform: rotate(90deg); color: var(--text); border-color: var(--line-strong); }
.dialog-grid { display: grid; grid-template-columns: 1.5fr .75fr; gap: 70px; padding: 42px 0; }
.dialog-summary { margin: 0 0 40px; color: #c5c3c0; font: clamp(21px,2.5vw,32px)/1.45 Georgia,serif; }
.dialog-copy h3 { margin: 32px 0 10px; color: var(--dim); font-size: 8px; letter-spacing: .16em; }
.dialog-note, .dialog-excerpt { color: var(--muted); line-height: 1.75; }
.dialog-excerpt { margin: 0; padding-left: 18px; border-left: 1px solid var(--accent-bright); }
.dialog-meta { margin: 0; border-top: 1px solid var(--line); }
.dialog-meta div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dialog-meta dt { color: var(--dim); font-size: 8px; letter-spacing: .14em; }
.dialog-meta dd { margin: 0; font-size: 11px; text-align: right; }
.dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line); }
.dialog-footer > span { color: var(--dim); font-size: 8px; letter-spacing: .14em; }
.toast { position: fixed; z-index: 1200; right: 26px; bottom: 26px; max-width: min(370px,calc(100% - 52px)); padding: 15px 18px; border: 1px solid var(--line-strong); border-left: 2px solid var(--accent-bright); background: #101013; color: #cfced0; font-size: 11px; line-height: 1.5; opacity: 0; transform: translateY(15px); pointer-events: none; transition: opacity .3s, transform .3s var(--ease); }
.toast.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { position: fixed; inset: 70px 0 0; display: grid; align-content: center; justify-items: center; gap: 18px; background: rgba(7,7,8,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .3s, visibility .3s, transform .3s; }
  .main-nav a { font-size: 20px; }
  body.menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .menu-toggle { display: block; }
  body.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 120px; }
  .active-file { justify-self: end; width: min(100%,600px); }
  .player-panel { grid-template-columns: 60px 1fr auto; }
  .timeline-zone { grid-column: 1 / -1; order: 5; }
  .player-tools { display: none; }
  .archive-toolbar { grid-template-columns: 1fr auto; }
  .archive-count { display: none; }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .site-header { padding-inline: 18px; }
  .brand { font-size: 9px; letter-spacing: .13em; }
  .brand-symbol { width: 22px; height: 22px; }
  .immersion-copy { display: none; }
  .hero { min-height: auto; padding: 125px 20px 100px; gap: 65px; }
  .hero::before { background: radial-gradient(circle at 70% 56%, rgba(182,32,46,.09),transparent 28%), var(--bg); }
  .transmission-status { margin-bottom: 25px; }
  .transmission-status i { width: 18px; }
  .transmission-status strong { min-width: 0; }
  .hero h1 { font-size: clamp(45px,14vw,68px); }
  .hero-intro { margin-top: 25px; font-size: 15px; }
  .hero-actions { display: grid; }
  .primary-button, .ghost-button { width: 100%; }
  .active-file { padding: 24px; }
  .file-code { margin-top: 40px; font-size: 76px; }
  .active-file dl { grid-template-columns: 1fr; }
  .active-file dl div { display: flex; align-items: center; justify-content: space-between; padding: 11px 0 !important; border-left: 0 !important; }
  .active-file dl div + div { border-top: 1px solid var(--line); }
  .active-file dd { margin: 0; }
  .scroll-cue { display: none; }
  .player-section { padding-inline: 14px; }
  .player-panel { grid-template-columns: 1fr auto; gap: 18px; padding: 20px; }
  .player-signal { display: none; }
  .player-information { min-width: 0; }
  .player-title { font-size: 14px; }
  .player-controls { justify-self: end; }
  .skip-button { display: none; }
  .play-button { width: 46px; height: 46px; }
  .timeline-zone { grid-column: 1 / -1; }
  .section-shell { width: calc(100% - 40px); }
  .episodes-section { padding-block: 105px; }
  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading > p { margin-top: 22px; }
  .archive-toolbar { grid-template-columns: 1fr; gap: 14px; }
  .archive-search { max-width: none; }
  .archive-filters { overflow-x: auto; }
  .episode-card { grid-template-columns: 72px 1fr; gap: 18px; min-height: 0; padding: 28px 4px; }
  .episode-card:hover { padding-left: 4px; }
  .episode-index span { font-size: 42px; }
  .episode-actions { grid-column: 2; justify-self: start; margin-top: 10px; }
  .episode-info h3 { font-size: 28px; }
  .manifesto { grid-template-columns: 1fr; min-height: auto; gap: 65px; padding-block: 100px; }
  .manifesto-code { min-height: 310px; }
  .protocol-section { padding-block: 100px; }
  .protocol-grid { grid-template-columns: 1fr; }
  .protocol-card { min-height: 230px; }
  .protocol-card h3 { margin-top: 80px; }
  .subscription { padding-bottom: 100px; }
  .subscription-card { min-height: 400px; padding: 55px 20px; }
  .subscribe-form { grid-template-columns: 1fr; }
  .subscribe-form input[type="email"] { border-right: 1px solid var(--line-strong); }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .footer-status { text-align: left; }
  .footer-status > span { justify-content: start; }
  .dialog-grid { grid-template-columns: 1fr; gap: 35px; }
  .dialog-footer { align-items: stretch; flex-direction: column; }
}




:root {
  --page-progress: 0;
  --scroll-velocity: 0;
  --scroll-drift: 0px;
}
html { scrollbar-gutter: stable; }
html.js-smooth-scroll { scroll-behavior: auto; }
body { overscroll-behavior-y: none; }
.page-progress span {
  width: 100%;
  transform: scaleX(var(--page-progress));
  will-change: transform;
  box-shadow: 0 0 14px rgba(227,58,73,.35);
}
.site-header,
.hero-spotlight,
.hero-line,
.active-file,
.player-panel { backface-visibility: hidden; }
.hero-spotlight {
  transform: translate3d(0, var(--scroll-drift), 0);
  transition: transform .22s var(--ease), opacity .35s;
  will-change: transform;
}
.hero-line {
  transform: translate3d(0, var(--scroll-drift), 0);
  transition: transform .2s var(--ease);
}
body.is-scrolling .hero-spotlight,
body.is-smooth-scrolling .hero-spotlight,
body.is-scrolling .hero-line,
body.is-smooth-scrolling .hero-line { transition-duration: .08s; }
body.immersion-on .hero::before { animation: ambientField 13s ease-in-out infinite alternate; }
@keyframes ambientField {
  0% { transform: scale(1); filter: brightness(1); }
  100% { transform: scale(1.025); filter: brightness(1.08); }
}

.sfx-target { position: relative; isolation: isolate; }
.sfx-target::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.08), transparent 80%);
  transform: translateX(-115%);
  opacity: 0;
}
.sfx-target:active::after { animation: controlPulse .32s var(--ease); }
@keyframes controlPulse {
  20% { opacity: .65; }
  100% { opacity: 0; transform: translateX(115%); }
}

[data-glitch] { position: relative; isolation: isolate; }
[data-glitch].glitch-once { animation: glitchBody .34s steps(2,end); }
[data-glitch].glitch-strong { animation-duration: .52s; }
[data-glitch].glitch-once::before {
  clip-path: inset(var(--glitch-slice-a, 16%) 0 58% 0);
  transform: translate3d(var(--glitch-x-neg, -6px), var(--glitch-y, 1px), 0);
}
[data-glitch].glitch-once::after {
  clip-path: inset(var(--glitch-slice-b, 68%) 0 10% 0);
  transform: translate3d(var(--glitch-x, 6px), var(--glitch-y-neg, -1px), 0);
}
.glitch-title.glitch-once::before,
.glitch-title.glitch-once::after { display: none; }
.glitch-title.glitch-once {
  text-shadow: var(--glitch-x-neg, -5px) 0 rgba(227,58,73,.48), var(--glitch-x, 5px) 0 rgba(181,218,222,.24);
}
@keyframes glitchBody {
  0%,100% { transform: translate3d(0,0,0); filter: none; }
  18% { transform: translate3d(var(--glitch-x-neg, -3px),0,0); filter: contrast(1.08); }
  42% { transform: translate3d(var(--glitch-y, 1px),var(--glitch-y,1px),0); }
  64% { transform: translate3d(var(--glitch-y-neg, -1px),0,0); filter: brightness(1.12); }
  82% { transform: translate3d(var(--glitch-y, 1px),0,0); }
}
.episode-card.signal-sweep .episode-sweep {
  animation: episodeSweep .72s var(--ease);
}

.reveal {
  transform: translate3d(0, 30px, 0) scale(.992);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { transform: translate3d(0,0,0) scale(1); }
.section-heading h2::after,
.manifesto-content h2::after,
.subscription-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.14em;
  width: min(130px, 30%);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: .75;
}
.section-heading.is-visible h2::after,
.manifesto-content.is-visible h2::after,
.subscription-card.is-visible h2::after { animation: titleTrace .9s .25s var(--ease) forwards; }
@keyframes titleTrace { to { transform: scaleX(1); } }
.active-file.is-visible .file-code { animation: fileCodeArrival .9s .2s var(--ease) both; }
@keyframes fileCodeArrival {
  from { opacity: 0; transform: translate3d(15px,0,0); letter-spacing: -.1em; }
  to { opacity: 1; transform: none; letter-spacing: -.07em; }
}
.protocol-card.is-visible i { animation: protocolLock .8s .25s var(--ease) both; }
@keyframes protocolLock {
  from { opacity: 0; transform: rotate(-90deg) scale(.72); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}
body.immersion-on.is-playing .player-panel { animation: playerAura 3.2s ease-in-out infinite; }
@keyframes playerAura {
  0%,100% { box-shadow: 0 0 0 rgba(227,58,73,0); }
  50% { box-shadow: 0 20px 70px rgba(182,32,46,.09); }
}
body.immersion-on .manifesto-code::before { animation: archiveBreath 5.8s ease-in-out infinite; }
@keyframes archiveBreath {
  0%,100% { opacity: .6; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .boot-screen { display: none; }
  .hero-spotlight, .hero-line { transform: none !important; }
  [data-glitch] { text-shadow: none !important; }
}



.anomaly-layer {
  position: fixed;
  inset: 0;
  z-index: 880;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint style;
}
.peripheral-presence {
  position: absolute;
  top: var(--presence-y, 28vh);
  right: -92px;
  width: 116px;
  height: min(48vh, 440px);
  opacity: 0;
  transform: translate3d(48px, 0, 0) scale(var(--presence-scale, 1));
  transform-origin: 50% 100%;
  transition: none;
  will-change: transform, opacity;
}
body.presence-left .peripheral-presence {
  right: auto;
  left: -92px;
  transform: translate3d(-48px, 0, 0) scale(var(--presence-scale, 1)) scaleX(-1);
}
.peripheral-presence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 46px;
  aspect-ratio: .78;
  border-radius: 48% 48% 43% 43%;
  background: radial-gradient(circle at 48% 35%, rgba(15,15,17,.96), rgba(0,0,0,.98) 68%);
  box-shadow: 0 0 38px rgba(0,0,0,.98);
  filter: blur(4px);
}
.peripheral-presence::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 8px;
  width: 104px;
  height: calc(100% - 42px);
  border-radius: 52% 48% 12% 10%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.98) 24% 76%, transparent);
  filter: blur(9px);
}
.peripheral-presence i,
.peripheral-presence span {
  position: absolute;
  top: 25px;
  z-index: 2;
  width: 3px;
  height: 1px;
  border-radius: 50%;
  background: rgba(219,44,61,.52);
  box-shadow: 0 0 7px rgba(227,58,73,.5);
  opacity: .38;
}
.peripheral-presence i { left: 48px; }
.peripheral-presence span { left: 63px; }
.peripheral-presence.is-visible { animation: peripheralVisit 2.4s cubic-bezier(.2,.75,.2,1) both; }
body.presence-left .peripheral-presence.is-visible { animation-name: peripheralVisitLeft; }
@keyframes peripheralVisit {
  0%,100% { opacity: 0; transform: translate3d(48px, 5px, 0) scale(var(--presence-scale, 1)); }
  17% { opacity: .08; }
  38%,62% { opacity: .38; transform: translate3d(-3px, 0, 0) scale(var(--presence-scale, 1)); }
  78% { opacity: .16; }
}
@keyframes peripheralVisitLeft {
  0%,100% { opacity: 0; transform: translate3d(-48px, 5px, 0) scale(var(--presence-scale, 1)) scaleX(-1); }
  17% { opacity: .08; }
  38%,62% { opacity: .38; transform: translate3d(3px, 0, 0) scale(var(--presence-scale, 1)) scaleX(-1); }
  78% { opacity: .16; }
}
.anomaly-message {
  position: absolute;
  left: var(--message-x, 18vw);
  top: var(--message-y, 30vh);
  max-width: min(430px, 76vw);
  margin: 0;
  color: rgba(224,224,226,.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(8px, .8vw, 11px);
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
  opacity: 0;
  mix-blend-mode: screen;
  text-shadow: -3px 0 rgba(227,58,73,.38), 3px 0 rgba(145,192,198,.18);
}
.anomaly-message.is-visible { animation: anomalousMessage .88s steps(2,end) both; }
@keyframes anomalousMessage {
  0%,8%,100% { opacity: 0; transform: translate3d(0,0,0); clip-path: inset(0 0 100%); }
  12% { opacity: .24; clip-path: inset(0 0 58%); transform: translate3d(-8px,0,0); }
  18%,31% { opacity: .72; clip-path: inset(0); transform: translate3d(3px,-1px,0); }
  35% { opacity: .08; clip-path: inset(42% 0 28%); }
  42%,62% { opacity: .58; clip-path: inset(0); transform: translate3d(0,0,0); }
  66% { opacity: .12; transform: translate3d(11px,0,0); }
  74%,88% { opacity: .42; clip-path: inset(58% 0 4%); }
}
.power-failure {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
}
body.anomaly-blackout .power-failure { animation: powerFailure 1.15s steps(1,end) both; }
@keyframes powerFailure {
  0% { opacity: 0; }
  8% { opacity: .92; }
  16% { opacity: .14; }
  23% { opacity: .98; }
  51% { opacity: .82; }
  56% { opacity: .16; }
  63% { opacity: .9; }
  72% { opacity: .22; }
  100% { opacity: 0; }
}
body.channel-slip main,
body.channel-slip .site-header { animation: channelSlip .68s steps(2,end); }
@keyframes channelSlip {
  0%,100% { transform: translate3d(0,0,0); filter: none; }
  16% { transform: translate3d(-5px,1px,0); filter: contrast(1.12); }
  28% { transform: translate3d(6px,-1px,0); }
  40% { transform: translate3d(-2px,0,0); clip-path: inset(0 0 48%); }
  41% { clip-path: inset(51% 0 0); transform: translate3d(4px,0,0); }
  58% { clip-path: none; transform: translate3d(0,1px,0); filter: brightness(.72); }
  78% { transform: translate3d(2px,0,0); filter: none; }
}
body.is-playing .anomaly-layer { display: none; }
body.is-playing .immersion-icon i { animation-play-state: paused; opacity: .42; }
body.is-playing .immersion-copy small { color: var(--dim); }

@media (max-width: 760px) {
  .peripheral-presence { width: 88px; right: -76px; }
  body.presence-left .peripheral-presence { left: -76px; }
  .peripheral-presence::before { left: 27px; width: 36px; }
  .peripheral-presence::after { width: 80px; }
  .peripheral-presence i { left: 38px; }
  .peripheral-presence span { left: 49px; }
}

@media (prefers-reduced-motion: reduce) {
  .anomaly-layer { display: none !important; }
}




[data-glitch].glitch-once,
.glitch-title.glitch-once {
  animation: glitchSourceCut .48s steps(1, end) !important;
  transform: none !important;
  text-shadow: none !important;
}
[data-glitch].glitch-strong,
.glitch-title.glitch-strong { animation-duration: .68s !important; }
[data-glitch].glitch-once::before,
[data-glitch].glitch-once::after,
.glitch-title.glitch-once::before,
.glitch-title.glitch-once::after { display: none !important; }

@keyframes glitchSourceCut {
  0%, 6%, 100% { opacity: 1; clip-path: inset(0); filter: none; }
  7% { opacity: .2; clip-path: inset(12% 0 66%); }
  10% { opacity: 1; clip-path: inset(0); }
  16% { opacity: .58; clip-path: inset(48% 0 18%); filter: contrast(1.35); }
  20% { opacity: .95; clip-path: inset(0); }
  34% { opacity: .12; clip-path: inset(71% 0 5%); }
  38%, 59% { opacity: 1; clip-path: inset(0); }
  60% { opacity: .38; clip-path: inset(24% 0 52%); filter: brightness(1.8); }
  65% { opacity: 1; clip-path: inset(0); }
  78% { opacity: .18; clip-path: inset(5% 0 82%); }
  82% { opacity: 1; clip-path: inset(0); }
}

.glitch-ghost {
  display: block !important;
  overflow: visible !important;
  opacity: 0;
  transform-origin: 0 50%;
  pointer-events: none !important;
  user-select: none !important;
  contain: paint;
  will-change: clip-path, transform, opacity, filter;
  mix-blend-mode: screen;
}
.glitch-ghost,
.glitch-ghost * {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.glitch-ghost::before,
.glitch-ghost::after,
.glitch-ghost *::before,
.glitch-ghost *::after { display: none !important; }
.glitch-ghost--red,
.glitch-ghost--red * { color: rgba(255, 38, 62, .92) !important; }
.glitch-ghost--cold,
.glitch-ghost--cold * { color: rgba(159, 220, 225, .68) !important; }
.glitch-ghost--data,
.glitch-ghost--data * {
  color: rgba(245, 245, 242, .76) !important;
  font-variant-ligatures: none !important;
}
.glitch-ghost--red { animation: fracturedRed .47s steps(1, end) both; }
.glitch-ghost--cold { animation: fracturedCold .47s steps(1, end) both; }
.glitch-ghost--data { animation: fracturedData .47s steps(1, end) both; }
.glitch-ghost--strong { animation-duration: .68s; }

@keyframes fracturedRed {
  0%, 5%, 100% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0,0,0); }
  7% { opacity: .86; clip-path: inset(8% 0 72%); transform: translate3d(var(--ghost-shift-neg), 0, 0); }
  13% { opacity: .18; clip-path: inset(62% 0 12%); transform: translate3d(var(--ghost-shift), 1px, 0); }
  19% { opacity: .74; clip-path: inset(43% 0 35%); transform: translate3d(calc(var(--ghost-shift-neg) * .55), 0, 0); }
  27%, 43% { opacity: 0; }
  46% { opacity: .78; clip-path: inset(74% 0 4%); transform: translate3d(var(--ghost-shift), -1px, 0); }
  55% { opacity: .42; clip-path: inset(18% 0 64%); transform: translate3d(var(--ghost-shift-neg), 1px, 0); }
  66% { opacity: 0; }
  76% { opacity: .72; clip-path: inset(52% 0 22%); transform: translate3d(calc(var(--ghost-shift) * .7), 0, 0); }
  85% { opacity: .16; clip-path: inset(2% 0 86%); transform: translate3d(var(--ghost-shift-neg), 0, 0); }
}
@keyframes fracturedCold {
  0%, 9%, 100% { opacity: 0; clip-path: inset(100% 0 0); transform: translate3d(0,0,0); }
  11% { opacity: .72; clip-path: inset(68% 0 9%); transform: translate3d(var(--ghost-shift), 0, 0); }
  18% { opacity: .28; clip-path: inset(16% 0 69%); transform: translate3d(var(--ghost-shift-neg), -1px, 0); }
  24% { opacity: 0; }
  31% { opacity: .66; clip-path: inset(38% 0 43%); transform: translate3d(calc(var(--ghost-shift) * .65), 1px, 0); }
  39% { opacity: .2; clip-path: inset(80% 0 2%); transform: translate3d(var(--ghost-shift-neg), 0, 0); }
  50%, 68% { opacity: 0; }
  70% { opacity: .62; clip-path: inset(6% 0 80%); transform: translate3d(var(--ghost-shift), 0, 0); }
  79% { opacity: .34; clip-path: inset(57% 0 23%); transform: translate3d(var(--ghost-shift-neg), -1px, 0); }
  88% { opacity: 0; }
}
@keyframes fracturedData {
  0%, 14%, 100% { opacity: 0; clip-path: inset(0); transform: translate3d(0,0,0); }
  16% { opacity: .82; clip-path: inset(31% 0 49%); transform: translate3d(calc(var(--ghost-shift) * .45), 0, 0); filter: contrast(1.8); }
  21% { opacity: 0; }
  36% { opacity: .55; clip-path: inset(4% 0 78%); transform: translate3d(var(--ghost-shift-neg), 0, 0); }
  42% { opacity: .2; clip-path: inset(69% 0 10%); }
  48%, 73% { opacity: 0; }
  75% { opacity: .72; clip-path: inset(42% 0 34%); transform: translate3d(var(--ghost-shift), 1px, 0); }
  81% { opacity: .3; clip-path: inset(12% 0 71%); transform: translate3d(var(--ghost-shift-neg), 0, 0); }
  90% { opacity: 0; }
}


.anomaly-layer::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -1;
  background: radial-gradient(circle at 50% 46%, transparent 12%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.82) 100%);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .5s ease, transform 1.8s cubic-bezier(.2,.8,.2,1);
}
body.corridor-dim .anomaly-layer::before {
  opacity: .78;
  transform: scale(.98);
}


.watcher-eyes {
  position: absolute;
  left: var(--watcher-x, 72vw);
  top: var(--watcher-y, 38vh);
  display: flex;
  gap: var(--watcher-gap, 14px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.7);
  filter: blur(.25px);
}
.watcher-eyes i {
  display: block;
  width: 5px;
  height: 2px;
  border-radius: 50%;
  background: rgba(226, 37, 55, .78);
  box-shadow: 0 0 5px rgba(226,37,55,.66), 0 0 17px rgba(226,37,55,.28);
}
.watcher-eyes.is-visible { animation: watcherVisit 1.8s steps(1,end) both; }
@keyframes watcherVisit {
  0%, 8%, 100% { opacity: 0; transform: translate3d(-50%,-50%,0) scale(.7); }
  11%, 28% { opacity: .72; transform: translate3d(-50%,-50%,0) scale(1); }
  29%, 37% { opacity: 0; }
  38%, 68% { opacity: .46; transform: translate3d(-50%,-50%,0) scale(.96); }
  69%, 75% { opacity: 0; }
  76%, 88% { opacity: .62; }
}


.frame-tear {
  position: absolute;
  left: 0;
  top: var(--tear-y, 42vh);
  width: 100%;
  height: var(--tear-height, 58px);
  opacity: 0;
  overflow: hidden;
  background: rgba(0,0,0,.9);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(227,58,73,.25);
  box-shadow: 0 0 0 100vmax rgba(0,0,0,.08);
}
.frame-tear::before,
.frame-tear::after {
  content: "";
  position: absolute;
  inset: 0;
}
.frame-tear::before {
  background: repeating-linear-gradient(90deg, transparent 0 17px, rgba(255,255,255,.04) 18px 19px, transparent 20px 42px);
  transform: translateX(-9%);
}
.frame-tear::after {
  top: 45%;
  height: 1px;
  background: rgba(255,255,255,.34);
  box-shadow: 0 -9px rgba(227,58,73,.14), 0 11px rgba(150,207,214,.1);
}
.frame-tear i,
.frame-tear span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(227,58,73,.13), transparent);
}
.frame-tear.is-visible { animation: frameTearVisit .9s steps(1,end) both; }
.frame-tear.is-visible i { animation: tearRush .32s linear 2; }
.frame-tear.is-visible span { animation: tearRushReverse .24s linear 3; opacity: .55; }
@keyframes frameTearVisit {
  0%, 5%, 100% { opacity: 0; transform: translateX(0) scaleY(.2); }
  7% { opacity: .94; transform: translateX(-12px) scaleY(1); }
  18% { opacity: .42; transform: translateX(18px) scaleY(.55); }
  25%, 42% { opacity: .88; transform: translateX(-4px) scaleY(1.12); }
  43%, 56% { opacity: 0; }
  57%, 72% { opacity: .72; transform: translateX(9px) scaleY(.68); }
  73%, 84% { opacity: .18; transform: translateX(-15px) scaleY(1.3); }
}
@keyframes tearRush { to { transform: translateX(110%); } }
@keyframes tearRushReverse { to { transform: translateX(-110%); } }
body.frame-tear-active main,
body.frame-tear-active .site-header { animation: pageDislocate .9s steps(1,end); }
@keyframes pageDislocate {
  0%, 100% { transform: none; filter: none; }
  8% { transform: translateX(-4px); filter: contrast(1.18); }
  16% { transform: translateX(7px); }
  27%, 42% { transform: none; }
  58% { transform: translateX(3px); filter: brightness(.7); }
  63% { transform: translateX(-2px); }
  74% { transform: none; filter: none; }
}


.redaction-ghost {
  position: absolute;
  left: var(--redaction-x, 18vw);
  top: var(--redaction-y, 52vh);
  width: min(590px, 88vw);
  height: 44px;
  opacity: 0;
  transform: translate3d(-12px,0,0);
}
.redaction-ghost b {
  position: absolute;
  inset: 0;
  background: #030304;
  border-left: 2px solid rgba(227,58,73,.55);
  box-shadow: 0 9px 35px rgba(0,0,0,.8);
}
.redaction-ghost span {
  position: absolute;
  z-index: 2;
  left: 17px;
  top: 50%;
  max-width: calc(100% - 34px);
  overflow: hidden;
  color: rgba(220,220,217,.72);
  font: 8px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .22em;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateY(-50%);
}
.redaction-ghost.is-visible { animation: redactionVisit 1.42s steps(1,end) both; }
.redaction-ghost.is-visible b { animation: redactionBar 1.42s cubic-bezier(.2,.75,.2,1) both; transform-origin: left; }
@keyframes redactionVisit {
  0%, 5%, 100% { opacity: 0; }
  8%, 28% { opacity: .92; transform: translate3d(0,0,0); }
  29%, 34% { opacity: 0; }
  35%, 78% { opacity: .72; transform: translate3d(7px,0,0); }
  82% { opacity: .15; }
}
@keyframes redactionBar {
  0% { transform: scaleX(0); }
  14%, 76% { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right; }
}


.episode-card.is-corrupted,
.protocol-card.is-corrupted {
  isolation: isolate;
  animation: corruptedPanel 1.62s steps(1,end);
}
.episode-card.is-corrupted::after,
.protocol-card.is-corrupted::after {
  content: attr(data-corrupt-message);
  position: absolute;
  z-index: 8;
  left: 4%;
  right: 4%;
  top: 46%;
  padding: 12px 14px;
  overflow: hidden;
  color: rgba(235,235,232,.76);
  background: #020203;
  border-left: 2px solid rgba(227,58,73,.7);
  font: 8px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 38px rgba(0,0,0,.82);
  animation: corruptedCaption 1.62s steps(1,end) both;
}
@keyframes corruptedPanel {
  0%,100% { filter: none; }
  9% { filter: brightness(.3) contrast(1.4); }
  13% { filter: none; }
  57% { filter: grayscale(1) contrast(1.25); }
  64% { filter: none; }
}
@keyframes corruptedCaption {
  0%, 8%, 100% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-12px); }
  10%, 31% { opacity: .94; clip-path: inset(0); transform: none; }
  32%, 43% { opacity: 0; }
  44%, 76% { opacity: .82; clip-path: inset(0 0 0 28%); transform: translateX(7px); }
  77%, 84% { opacity: .15; clip-path: inset(42% 0 20%); }
}


.peripheral-presence.is-visible::before { animation: presenceHeadTurn 2.7s ease-in-out both; }
.peripheral-presence.is-visible i,
.peripheral-presence.is-visible span { animation: eyeFailure 2.7s steps(1,end) both; }
@keyframes presenceHeadTurn {
  0%, 100% { transform: translateX(0) rotate(0); }
  36% { transform: translateX(-3px) rotate(-2deg); }
  62% { transform: translateX(2px) rotate(1.5deg); }
}
@keyframes eyeFailure {
  0%, 14%, 100% { opacity: 0; }
  18%, 39% { opacity: .34; }
  40%, 48% { opacity: 0; }
  49%, 72% { opacity: .48; }
  73%, 81% { opacity: .06; }
}


body.immersion-on:not(.is-playing) .hero-copy-block,
body.immersion-on:not(.is-playing) .active-file {
  animation: roomBreathing 9s ease-in-out infinite alternate;
}
body.immersion-on:not(.is-playing) .active-file { animation-delay: -4.5s; }
@keyframes roomBreathing {
  from { filter: brightness(.96); }
  to { filter: brightness(1.035); }
}

@media (max-width: 760px) {
  .redaction-ghost { width: 88vw; left: 6vw !important; }
  .redaction-ghost span { letter-spacing: .12em; }
  .episode-card.is-corrupted::after,
  .protocol-card.is-corrupted::after { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .glitch-ghost,
  .watcher-eyes,
  .frame-tear,
  .redaction-ghost,
  .episode-card.is-corrupted::after,
  .protocol-card.is-corrupted::after { display: none !important; }
  [data-glitch].glitch-once { animation: none !important; }
}


.peripheral-presence { right: -68px; width: 132px; }
body.presence-left .peripheral-presence { left: -68px; }
@keyframes peripheralVisit {
  0%,100% { opacity: 0; transform: translate3d(44px, 5px, 0) scale(var(--presence-scale, 1)); }
  17% { opacity: .1; }
  38%,62% { opacity: .5; transform: translate3d(-8px, 0, 0) scale(var(--presence-scale, 1)); }
  78% { opacity: .2; }
}
@keyframes peripheralVisitLeft {
  0%,100% { opacity: 0; transform: translate3d(-44px, 5px, 0) scale(var(--presence-scale, 1)) scaleX(-1); }
  17% { opacity: .1; }
  38%,62% { opacity: .5; transform: translate3d(8px, 0, 0) scale(var(--presence-scale, 1)) scaleX(-1); }
  78% { opacity: .2; }
}
@media (max-width: 760px) {
  .peripheral-presence { right: -58px; }
  body.presence-left .peripheral-presence { left: -58px; }
}



body.access-locked { overflow: hidden; }
body.access-locked > .site-header,
body.access-locked > main,
body.access-locked > .site-footer {
  opacity: .08;
  filter: blur(10px) brightness(.42);
  transform: scale(.985);
  pointer-events: none;
  transition: opacity .9s var(--ease), filter 1.1s var(--ease), transform 1.1s var(--ease);
}
body.access-opening > .site-header,
body.access-opening > main,
body.access-opening > .site-footer,
body.access-granted > .site-header,
body.access-granted > main,
body.access-granted > .site-footer {
  opacity: 1;
  filter: none;
  transform: none;
}
body.access-locked .page-progress,
body.access-locked .anomaly-layer { opacity: 0; }

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background: #050506;
  perspective: 1400px;
  isolation: isolate;
  transition: opacity .45s ease, visibility .45s;
}
.access-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 46%, rgba(182,32,46,.095), transparent 24%),
    linear-gradient(90deg, #050506 0 49.9%, #08080a 50.1% 100%);
}
.access-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  background: #fff;
}
body.access-opening .access-gate::after { animation: accessFlash .7s steps(1,end) .42s both; }
body.access-granted .access-gate { opacity: 0; visibility: hidden; pointer-events: none; }

.access-door {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 50.1%;
  background: linear-gradient(105deg, #08080a, #050506 74%);
  border-color: rgba(255,255,255,.08);
  border-style: solid;
  will-change: transform, filter;
  transition: transform 1.35s cubic-bezier(.72,0,.16,1), filter .8s ease;
}
.access-door::before,
.access-door::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.08), rgba(227,58,73,.18), rgba(255,255,255,.06), transparent);
}
.access-door i {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: rgba(227,58,73,.28);
  box-shadow: 0 0 18px rgba(227,58,73,.16);
}
.access-door--left { left: 0; border-width: 0 1px 0 0; transform-origin: left center; }
.access-door--left::before { right: 9%; }
.access-door--left::after { right: 18%; opacity: .42; }
.access-door--left i { right: 0; }
.access-door--right { right: 0; border-width: 0 0 0 1px; transform-origin: right center; background: linear-gradient(255deg, #08080a, #050506 74%); }
.access-door--right::before { left: 9%; }
.access-door--right::after { left: 18%; opacity: .42; }
.access-door--right i { left: 0; }
body.access-opening .access-door--left { transform: perspective(1200px) rotateY(-92deg) translateX(-7%); filter: brightness(.38); }
body.access-opening .access-door--right { transform: perspective(1200px) rotateY(92deg) translateX(7%); filter: brightness(.38); }

.access-scan {
  position: absolute;
  z-index: 5;
  top: -12%;
  left: 0;
  right: 0;
  height: 12%;
  opacity: .28;
  background: linear-gradient(transparent, rgba(227,58,73,.16), transparent);
  transform: translateY(-100%);
  pointer-events: none;
}
body.access-opening .access-scan { animation: accessScan 1.05s cubic-bezier(.22,1,.36,1) .08s both; }

.access-folder {
  position: relative;
  z-index: 3;
  width: min(520px, calc(100vw - 42px));
  min-height: 330px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: clamp(46px, 8vw, 72px) clamp(28px, 7vw, 64px) 42px;
  border: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(145deg, rgba(16,16,19,.96), rgba(8,8,10,.98));
  box-shadow: 0 34px 100px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.02);
  text-align: center;
  transition: transform .95s var(--ease), opacity .55s ease, filter .7s ease;
  animation: accessFolderBreath 4.8s ease-in-out infinite alternate;
}
.access-folder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.045);
  pointer-events: none;
}
.access-folder__tab {
  position: absolute;
  top: -31px;
  left: -1px;
  min-width: 150px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-bottom: 0;
  background: #0e0e11;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .28em;
}
.access-folder__mark {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,.22);
  transform: rotate(45deg);
}
.access-folder__mark::before,
.access-folder__mark::after,
.access-folder__mark i {
  content: "";
  position: absolute;
  background: var(--accent-bright);
}
.access-folder__mark::before { width: 13px; height: 1px; top: 13px; left: 18px; }
.access-folder__mark::after { width: 1px; height: 13px; left: 13px; top: 18px; }
.access-folder__mark i:first-child { width: 8px; height: 8px; right: 8px; bottom: 8px; }
.access-folder__mark i:last-child { width: 1px; height: 1px; left: 9px; bottom: 9px; box-shadow: 4px 0 var(--accent-bright), 8px 0 var(--accent-bright); }
.access-kicker { margin: 0 0 13px; color: var(--accent-bright); font-size: 9px; font-weight: 750; letter-spacing: .3em; }
.access-folder h1 { margin: 0; font-size: clamp(28px, 6vw, 52px); line-height: .95; letter-spacing: -.045em; }
.access-folder > p:not(.access-kicker):not(.access-status) { max-width: 370px; margin: 20px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.access-button {
  position: relative;
  min-width: min(280px, 100%);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 22px 0 26px;
  overflow: hidden;
  border: 1px solid rgba(227,58,73,.52);
  background: rgba(182,32,46,.1);
  cursor: pointer;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s, transform .35s var(--ease), box-shadow .35s;
}
.access-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.09) 48%, transparent 58%);
  transform: translateX(-120%);
  animation: accessButtonSweep 3.8s ease-in-out infinite;
}
.access-button span, .access-button b { position: relative; z-index: 1; }
.access-button b { color: var(--accent-bright); font-size: 20px; font-weight: 300; transition: transform .45s var(--ease); }
.access-button:hover { background: rgba(182,32,46,.18); border-color: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 16px 46px rgba(182,32,46,.12); }
.access-button:hover b { transform: rotate(90deg); }
.access-button:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; }
.access-button:disabled { cursor: wait; }
.access-status { margin: 22px 0 0; color: var(--dim); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; letter-spacing: .22em; }
.access-status span { display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 10px rgba(227,58,73,.6); animation: statusPulse 1.5s ease-in-out infinite; }
.access-warning { position: absolute; bottom: 24px; margin: 0; color: #45444a; font-size: 8px; letter-spacing: .24em; text-align: center; }
body.access-opening .access-folder { transform: translateY(-18px) scale(1.04); opacity: 0; filter: blur(5px) brightness(1.5); animation: none; }

.immersion-status { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
body:not(.access-granted) .immersion-status { opacity: .45; }

@keyframes accessFolderBreath { from { box-shadow: 0 34px 100px rgba(0,0,0,.62), 0 0 0 rgba(182,32,46,0); } to { box-shadow: 0 34px 100px rgba(0,0,0,.68), 0 0 68px rgba(182,32,46,.055); } }
@keyframes accessButtonSweep { 0%,55% { transform: translateX(-130%); } 76%,100% { transform: translateX(130%); } }
@keyframes accessScan { 0% { transform: translateY(-100%); opacity: 0; } 18% { opacity: .4; } 100% { transform: translateY(1050%); opacity: 0; } }
@keyframes accessFlash { 0%,18%,100% { opacity: 0; } 20% { opacity: .18; } 23% { opacity: 0; } 28% { opacity: .08; } }

@media (max-width: 760px) {
  .access-gate { padding: 24px 16px; }
  .access-folder { min-height: 310px; padding-inline: 24px; }
  .access-folder__tab { left: 10px; }
  .access-warning { bottom: 16px; width: calc(100% - 32px); line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  .access-folder, .access-button::before, .access-status span { animation: none !important; }
  body.access-opening .access-door--left { transform: translateX(-100%); }
  body.access-opening .access-door--right { transform: translateX(100%); }
}



.episodes-section,
.manifesto,
.protocol-section,
.subscription,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}



body.episode-view-open,
body.menu-open { overflow: hidden; }

button:disabled { cursor: not-allowed; }
.reveal.is-visible { will-change: auto; }
.deferred-section { content-visibility: auto; contain-intrinsic-size: 1px 820px; }


.arrival-authorized {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: radial-gradient(circle at center, rgba(182,32,46,.09), transparent 34%);
  text-align: center;
  transition: opacity .25s steps(2,end), visibility .25s;
}
.arrival-authorized::before,
.arrival-authorized::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,58,73,.65), transparent);
  transform: scaleX(0);
}
.arrival-authorized::before { top: 42%; }
.arrival-authorized::after { bottom: 42%; }
.arrival-authorized.is-visible { opacity: 1; visibility: visible; animation: authorizedFlicker 1.65s steps(1,end) both; }
.arrival-authorized.is-visible::before,
.arrival-authorized.is-visible::after { animation: authorizedLines 1.25s var(--ease) both; }
.arrival-authorized__line { width: 52px; height: 2px; margin-bottom: 10px; background: var(--accent-bright); box-shadow: 0 0 22px rgba(227,58,73,.65); }
.arrival-authorized p,
.arrival-authorized strong,
.arrival-authorized small { margin: 0; text-transform: uppercase; }
.arrival-authorized p { color: var(--accent-bright); font: 750 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .38em; }
.arrival-authorized strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 6vw, 76px); font-weight: 400; letter-spacing: -.035em; }
.arrival-authorized small { margin-top: 10px; color: var(--dim); font-size: 8px; letter-spacing: .25em; }
@keyframes authorizedFlicker {
  0%, 7%, 12%, 100% { filter: none; }
  8% { filter: brightness(1.8); }
  13% { filter: brightness(.55); }
}
@keyframes authorizedLines { 45% { transform: scaleX(1); } 100% { transform: scaleX(.18); opacity: 0; } }

.arrival-document {
  transition: opacity .68s var(--ease), transform .68s var(--ease), filter .68s var(--ease);
}
body:not(.access-granted) .arrival-document,
body.access-granted .arrival-document:not(.is-arrived) {
  opacity: 0;
  filter: blur(4px) brightness(.62);
  transform: translate3d(0, 17px, 0) scale(.992);
}
body.access-granted .site-header.arrival-document:not(.is-arrived) { transform: translate3d(0, -18px, 0); }
body.access-granted .arrival-document.is-arrived {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}
body.arrival-running .arrival-document.is-arrived::selection { background: transparent; }


.player-panel {
  grid-template-columns: 92px minmax(190px,1fr) auto minmax(230px,1.35fr) auto;
}
.audio-visualizer {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}
.audio-visualizer--compact {
  width: 92px;
  height: 52px;
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
body.is-playing .audio-visualizer { filter: drop-shadow(0 0 5px rgba(227,58,73,.2)); }


.episode-list {
  display: grid;
  gap: 48px;
  padding-top: 34px;
}
.episode-card.dossier-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr) minmax(150px, auto);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: 286px;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 52px);
  overflow: visible;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(115deg, rgba(255,255,255,.022), transparent 48%),
    #0b0b0d;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  contain-intrinsic-size: 286px;
  transition: border-color .35s, background .35s, transform .5s var(--ease), box-shadow .5s var(--ease), opacity .35s;
  transform-style: preserve-3d;
}
.episode-card.dossier-card::before {
  inset: -1px auto -1px -1px;
  width: 3px;
  transform: scaleY(1);
  opacity: .36;
}
.episode-card.dossier-card::after {
  content: "CONFIDENTIEL";
  position: absolute;
  right: 22px;
  bottom: 15px;
  color: rgba(255,255,255,.035);
  font-size: clamp(32px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -.07em;
  pointer-events: none;
}
.episode-card.dossier-card:hover {
  padding: clamp(28px, 4vw, 52px);
  border-color: rgba(255,255,255,.29);
  background: linear-gradient(115deg, rgba(182,32,46,.035), transparent 46%), #0d0d0f;
  transform: translateY(-5px);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}
.dossier-card__tab {
  position: absolute;
  top: -27px;
  left: -1px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 235px;
  height: 28px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  background: #0b0b0d;
  color: var(--muted);
  font: 700 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
}
.dossier-card__tab::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -1px;
  width: 36px;
  height: 28px;
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(135deg, #0b0b0d 0 49%, transparent 50%);
}
.dossier-card__tab small { color: var(--accent-bright); font-size: inherit; }

.episode-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.82)),
    radial-gradient(circle at 68% 34%, rgba(227,58,73,.2), transparent 18%),
    linear-gradient(135deg, #17171b, #070708 62%);
  box-shadow: inset 0 0 55px rgba(0,0,0,.42);
  isolation: isolate;
}
.episode-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .64;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,.08) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(255,255,255,.055) 50%, transparent 50.3%);
  background-size: 58px 58px;
  transform: perspective(500px) rotateX(58deg) scale(1.7) translateY(13%);
  transform-origin: bottom;
}
.episode-cover[data-cover="1"] {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.86)),
    radial-gradient(ellipse at 52% 27%, rgba(189,206,208,.14), transparent 21%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255,255,255,.018) 19px 20px),
    linear-gradient(135deg, #14171a, #060708 66%);
}
.episode-cover[data-cover="1"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  width: 58px;
  height: 92px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50% 50% 42% 42%;
  background: rgba(0,0,0,.4);
  filter: blur(2px);
  transform: translateX(-50%);
}
.episode-cover > span,
.episode-cover > strong,
.episode-cover > small { position: relative; z-index: 2; }
.episode-cover > span { color: var(--accent-bright); font: 700 8px/1 ui-monospace, monospace; letter-spacing: .24em; }
.episode-cover > strong { max-width: 90%; font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 3vw, 40px); font-weight: 400; line-height: .92; letter-spacing: -.035em; }
.episode-cover > small { color: #77767b; font-size: 7px; letter-spacing: .22em; }
.episode-cover__signal {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .24;
  background: linear-gradient(105deg, transparent 42%, rgba(227,58,73,.14) 49%, transparent 56%);
  transform: translateX(-120%);
}
.cover-decode,
.cover-lock {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: rgba(5,5,6,.91);
  backdrop-filter: blur(9px);
  transition: opacity .55s var(--ease), visibility .55s, clip-path .7s var(--ease);
}
.cover-decode i,
.cover-lock i {
  width: 48px;
  height: 1px;
  background: var(--accent-bright);
  box-shadow: 0 0 16px rgba(227,58,73,.4);
}
.cover-decode b,
.cover-lock b { color: #807f84; font: 700 7px/1 ui-monospace, monospace; letter-spacing: .25em; }
.episode-card.is-decrypting .cover-decode i { animation: coverDecodeLine .58s var(--ease) both; }
.episode-card.is-decrypted .cover-decode {
  opacity: 0;
  visibility: hidden;
  clip-path: inset(49% 0 49% 0);
}
.episode-card.is-decrypted .episode-cover__signal { animation: coverSignal 1s var(--ease) both; }
@keyframes coverDecodeLine { 0% { transform: scaleX(.05); } 55% { transform: scaleX(4.4); } 100% { transform: scaleX(.3); opacity: 0; } }
@keyframes coverSignal { 0% { transform: translateX(-120%); } 100% { transform: translateX(125%); } }

.episode-card .episode-info { max-width: 780px; }
.episode-card .episode-info h3 { margin-top: 16px; }
.episode-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 0;
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.episode-meta div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.episode-meta dt { color: var(--dim); font-size: 7px; letter-spacing: .17em; }
.episode-meta dd { margin: 6px 0 0; color: #b6b5b8; font: 650 9px/1.2 ui-monospace, monospace; letter-spacing: .09em; }
.episode-card .episode-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr 48px;
  gap: 8px;
  min-width: 228px;
}
.dossier-open-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.025);
  color: var(--text);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .14em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  transition: border-color .3s, background .3s, color .3s;
}
.dossier-open-button:hover { border-color: var(--accent-bright); background: var(--accent-soft); }
.episode-card.is-opening { animation: dossierOpenPerspective .56s var(--ease) both; pointer-events: none; }
@keyframes dossierOpenPerspective {
  0% { transform: perspective(1200px) rotateX(0) translateY(-5px); }
  48% { transform: perspective(1200px) rotateX(2.5deg) translateY(-12px) scale(1.012); filter: brightness(1.18); }
  100% { transform: perspective(1200px) rotateX(-4deg) translateY(22px) scale(.985); opacity: .35; filter: blur(2px); }
}
.episode-card.is-locked {
  opacity: 1;
  border-color: rgba(255,255,255,.075);
  background: #09090a;
}
.episode-card.is-locked:hover { padding: clamp(28px, 4vw, 52px); transform: none; background: #09090a; }
.episode-card.is-locked::before { background: #4b4a4f; }
.episode-cover--locked { filter: saturate(.25); }
.cover-lock { background: rgba(4,4,5,.8); }
.cover-lock i { width: 18px; height: 22px; border: 1px solid #56555a; border-radius: 2px; background: transparent; box-shadow: none; }
.cover-lock i::before { content: ""; position: absolute; width: 12px; height: 10px; margin: -9px 0 0 2px; border: 1px solid #56555a; border-bottom: 0; border-radius: 8px 8px 0 0; }
.dossier-open-button.is-denied { grid-column: 1 / -1; border-color: rgba(255,255,255,.1); color: #66656a; }
.episode-card.denied-shock { animation: deniedShock .6s steps(2,end); }
@keyframes deniedShock { 20% { transform: translateX(-5px); filter: brightness(1.4); } 40% { transform: translateX(4px); } 60% { transform: translateX(-2px); } }


.episode-view {
  position: fixed;
  inset: 0;
  z-index: 1200;
  overflow: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 78% 10%, rgba(182,32,46,.08), transparent 24%),
    #070708;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .36s ease, visibility .36s, transform .46s var(--ease);
}
.episode-view.is-open { opacity: 1; visibility: visible; transform: none; }
.episode-view__topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,8,.88);
  backdrop-filter: blur(18px);
}
.episode-view__topbar > p { margin: 0; color: var(--dim); font: 700 8px/1 ui-monospace, monospace; letter-spacing: .16em; }
.episode-view__topbar > p span { display: inline-block; width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: var(--accent-bright); }
.episode-view__topbar b { color: #aaa9ad; }
.episode-view__back,
.episode-view__close {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.episode-view__back { justify-self: start; padding: 14px 0; color: #aaa9ad; font-size: 8px; font-weight: 750; letter-spacing: .17em; }
.episode-view__back span { margin-right: 9px; color: var(--accent-bright); font-size: 14px; }
.episode-view__close { justify-self: end; width: 42px; height: 42px; color: var(--muted); font-size: 25px; font-weight: 200; }
.episode-view__decode {
  position: fixed;
  inset: 72px 0 0;
  z-index: 30;
  display: grid;
  place-content: center;
  gap: 16px;
  background: #08080a;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s steps(2,end), visibility .3s;
}
.episode-view__decode span { color: var(--muted); font: 700 8px/1 ui-monospace, monospace; letter-spacing: .28em; }
.episode-view__decode i { width: 220px; height: 1px; overflow: hidden; background: var(--line); }
.episode-view__decode i::after { content: ""; display: block; width: 35%; height: 1px; background: var(--accent-bright); animation: detailDecode 1s var(--ease) infinite; }
.episode-view.is-decoded .episode-view__decode { opacity: 0; visibility: hidden; }
@keyframes detailDecode { from { transform: translateX(-110%); } to { transform: translateX(320%); } }
.episode-view__shell { width: min(1440px, calc(100% - clamp(32px, 9vw, 150px))); margin: auto; padding: clamp(58px, 8vw, 110px) 0 70px; }
.episode-view__hero {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  min-height: 500px;
}
.episode-view__cover {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, transparent 18%, rgba(0,0,0,.88)),
    radial-gradient(circle at 63% 30%, rgba(227,58,73,.18), transparent 17%),
    linear-gradient(135deg, #17171b, #060607 68%);
  box-shadow: 0 45px 100px rgba(0,0,0,.4), inset 0 0 90px rgba(0,0,0,.35);
}
.episode-view__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.07) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255,255,255,.05) 50%, transparent 50.2%);
  background-size: 70px 70px;
  transform: perspective(500px) rotateX(58deg) scale(1.7) translateY(12%);
  transform-origin: bottom;
}
.episode-view__cover[data-detail-cover="1"] {
  background:
    linear-gradient(180deg, transparent 18%, rgba(0,0,0,.9)),
    radial-gradient(ellipse at 52% 28%, rgba(187,211,213,.14), transparent 17%),
    repeating-linear-gradient(115deg, transparent 0 26px, rgba(255,255,255,.015) 27px 28px),
    linear-gradient(135deg, #15181b, #050607 68%);
}
.episode-view__cover > span,
.episode-view__cover > strong,
.episode-view__cover > small { position: relative; z-index: 2; }
.detail-cover-code { color: var(--accent-bright); font: 700 9px/1 ui-monospace, monospace; letter-spacing: .25em; }
.detail-cover-title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 72px); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.detail-cover-status { color: #77767b; font-size: 8px; letter-spacing: .22em; }
.episode-view__cover > i { position: absolute; right: 9%; top: 8%; width: 32px; height: 32px; border: 1px solid rgba(227,58,73,.5); transform: rotate(45deg); }
.episode-view__intro h1 { margin: 0; max-width: 850px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 8vw, 128px); font-weight: 400; line-height: .88; letter-spacing: -.06em; }
.episode-view-summary { max-width: 760px; margin: 32px 0 0; color: #aaa9ad; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.75; }
.episode-view-meta { display: grid; grid-template-columns: repeat(4, minmax(100px,1fr)); margin: 48px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.episode-view-meta div { padding: 20px 14px 20px 0; }
.episode-view-meta div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.episode-view-meta dt { color: var(--dim); font-size: 7px; letter-spacing: .17em; }
.episode-view-meta dd { margin: 8px 0 0; font: 650 10px/1.2 ui-monospace, monospace; letter-spacing: .08em; }


.detail-video {
  position: relative;
  margin: clamp(70px, 10vw, 130px) 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  background: #08090b;
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
.detail-video[hidden] { display: none !important; }
.detail-video__frame { position: relative; margin-top: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); background: #020203; aspect-ratio: 16/9; }
.detail-video__frame video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }
.detail-video__scan { position: absolute; inset: 0; pointer-events: none; opacity: .12; background: linear-gradient(180deg, transparent 0 49%, rgba(255,255,255,.08) 50%, transparent 51%); background-size: 100% 7px; mix-blend-mode: screen; }
.detail-video-message { min-height: 1.4em; margin: 14px 0 0; color: var(--dim); font: 700 8px/1.6 ui-monospace, monospace; letter-spacing: .12em; }
body.is-video-playing .detail-video { border-color: rgba(227,58,73,.42); box-shadow: 0 30px 110px rgba(0,0,0,.48), 0 0 50px rgba(227,58,73,.05); }
body.is-video-playing .detail-video__scan { opacity: .04; }

.detail-player {
  position: relative;
  margin: clamp(70px, 10vw, 130px) 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  background: #0b0b0d;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.detail-player__header { display: flex; justify-content: space-between; gap: 28px; align-items: start; }
.detail-player__header p { margin: 0 0 8px; color: var(--accent-bright); font-size: 7px; font-weight: 750; letter-spacing: .23em; }
.detail-player__header strong { font-size: clamp(18px, 2vw, 28px); font-weight: 550; }
.detail-player-status { color: var(--dim); font: 700 8px/1 ui-monospace, monospace; letter-spacing: .17em; }
.audio-visualizer--detail { width: 100%; height: clamp(140px, 20vw, 260px); margin: 34px 0 10px; border-top: 1px solid rgba(255,255,255,.045); border-bottom: 1px solid rgba(255,255,255,.045); }
.detail-player__controls { display: flex; justify-content: center; align-items: center; gap: 14px; margin: 26px 0; }
.detail-play { width: 68px; height: 68px; border: 1px solid var(--accent-bright); border-radius: 50%; background: var(--accent); cursor: pointer; font-size: 16px; }
.detail-skip { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); cursor: pointer; font: 700 9px/1 ui-monospace, monospace; }
.detail-timeline-zone { width: min(100%, 1000px); margin: auto; }
.detail-timeline { position: relative; height: 18px; cursor: pointer; outline: 0; }
.detail-timeline::before { content: ""; position: absolute; inset: 8px 0 auto; height: 1px; background: #2d2d31; }
.detail-timeline-buffer,
.detail-timeline-progress { position: absolute; top: 8px; left: 0; height: 1px; }
.detail-timeline-buffer { width: 0; background: #4d4c51; }
.detail-timeline-progress { width: 0; background: var(--accent-bright); }
.detail-timeline-thumb { position: absolute; top: 4px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--text); transform: translateX(-50%); }
.detail-player__tools { display: flex; justify-content: flex-end; align-items: center; gap: 16px; margin-top: 20px; }
.detail-player__tools label { display: flex; align-items: center; gap: 12px; color: var(--dim); font-size: 7px; letter-spacing: .15em; }
.detail-player__tools input { accent-color: var(--accent-bright); width: 110px; }
.detail-speed { min-width: 42px; min-height: 32px; border: 1px solid var(--line); background: transparent; cursor: pointer; font: 700 9px/1 ui-monospace, monospace; }

.episode-view__content { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: clamp(50px, 8vw, 120px); }
.dossier-section { padding: 0 0 clamp(70px, 9vw, 120px); }
.dossier-section + .dossier-section { padding-top: clamp(60px, 8vw, 100px); border-top: 1px solid var(--line); }
.dossier-section__label { margin: 0 0 20px; color: var(--accent-bright); font: 700 8px/1 ui-monospace, monospace; letter-spacing: .22em; }
.dossier-section h2 { margin: 0 0 28px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 62px); font-weight: 400; letter-spacing: -.045em; }
.episode-view-note { margin: 0; color: #aaa9ad; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.95; }
.chapters-list { display: grid; border-top: 1px solid var(--line); }
.chapter-button {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 0 5px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .25s, padding .35s var(--ease);
}
.chapter-button:hover,
.chapter-button.is-active { padding-inline: 15px; background: rgba(255,255,255,.025); }
.chapter-button > span { color: var(--accent-bright); font: 700 9px/1 ui-monospace, monospace; }
.chapter-button strong { font-size: 15px; font-weight: 550; }
.chapter-button time { color: var(--dim); font: 700 9px/1 ui-monospace, monospace; }
.episode-view__sidebar { display: grid; align-content: start; gap: 18px; }
.dossier-side-card { padding: 28px; border: 1px solid var(--line); background: #0a0a0c; }
.dossier-side-card blockquote { margin: 0; color: #b8b7b9; font-family: Georgia, "Times New Roman", serif; font-size: clamp(19px, 2vw, 27px); line-height: 1.55; }
.dossier-side-card--warning { border-color: rgba(182,32,46,.25); background: rgba(182,32,46,.035); }
.dossier-side-card--warning > p:last-child { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.related-documents { display: grid; gap: 8px; }
.related-document { border-top: 1px solid var(--line); }
.related-document summary { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 16px 0; cursor: pointer; list-style: none; }
.related-document summary::-webkit-details-marker { display: none; }
.related-document summary span { color: var(--accent-bright); font: 700 7px/1 ui-monospace, monospace; }
.related-document summary strong { font-size: 11px; font-weight: 600; }
.related-document summary b { color: var(--dim); font-weight: 400; }
.related-document[open] summary b { transform: rotate(45deg); }
.related-document p { margin: 0 0 16px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.episode-navigation { display: grid; grid-template-columns: 1fr 1fr; margin-top: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.episode-nav-button { min-height: 120px; padding: 24px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.episode-nav-button + .episode-nav-button { border-left: 1px solid var(--line); text-align: right; }
.episode-nav-button small { display: block; margin-bottom: 10px; color: var(--dim); font-size: 7px; letter-spacing: .2em; }
.episode-nav-button strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 2vw, 30px); font-weight: 400; }
.episode-nav-button:not(:disabled):hover strong { color: var(--accent-bright); }
.episode-nav-button:disabled { opacity: .25; }


body.is-playing .hero-line::after,
body.is-playing .hero::before,
body.is-playing .hero-copy-block,
body.is-playing .active-file,
body.is-playing .manifesto-code::before,
body.is-playing .subscription-beam,
body.is-playing .immersion-icon i,
body.is-playing .status-pulse {
  animation-play-state: paused !important;
}
body.is-playing .anomaly-layer { display: none !important; }
body.is-playing .episode-view { --playback-focus: 1; }


body.episode-view-open .anomaly-layer { z-index: 1300; }

@media (max-width: 1120px) {
  .player-panel { grid-template-columns: 76px minmax(180px,1fr) auto; }
  .timeline-zone { grid-column: 1 / -1; }
  .player-tools { grid-column: 1 / -1; justify-self: end; }
  .audio-visualizer--compact { width: 76px; }
  .episode-card.dossier-card { grid-template-columns: minmax(190px, 250px) 1fr; }
  .episode-card .episode-actions { grid-column: 2; justify-self: start; }
  .episode-view__hero { grid-template-columns: minmax(230px, 350px) 1fr; gap: 55px; }
  .episode-view__content { grid-template-columns: 1fr; }
  .episode-view__sidebar { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dossier-side-card--warning { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .arrival-authorized strong { font-size: 38px; }
  .arrival-authorized small { max-width: 280px; line-height: 1.7; }
  .player-panel { grid-template-columns: 1fr auto; }
  .audio-visualizer--compact { grid-column: 1 / -1; width: 100%; height: 42px; padding: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .player-information { min-width: 0; }
  .player-controls { justify-self: end; }
  .timeline-zone { grid-column: 1 / -1; }
  .player-tools { display: flex; grid-column: 1 / -1; justify-self: stretch; justify-content: space-between; }
  .episode-list { gap: 52px; }
  .episode-card.dossier-card,
  .episode-card.dossier-card:hover,
  .episode-card.is-locked:hover {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .episode-card.dossier-card::after { font-size: 52px; }
  .episode-cover { min-height: 210px; }
  .episode-card .episode-actions { grid-column: 1; width: 100%; min-width: 0; grid-template-columns: 42px 1fr 48px; }
  .episode-meta { grid-template-columns: 1fr; }
  .episode-meta div + div { padding: 12px 0 0; margin-top: 12px; border-left: 0; border-top: 1px solid var(--line); }
  .episode-view__topbar { grid-template-columns: 1fr auto; min-height: 64px; padding-inline: 15px; }
  .episode-view__topbar > p { display: none; }
  .episode-view__decode { top: 64px; }
  .episode-view__shell { width: min(100% - 30px, 680px); padding-top: 44px; }
  .episode-view__hero { grid-template-columns: 1fr; gap: 38px; min-height: 0; }
  .episode-view__cover { width: min(100%, 390px); margin: auto; }
  .episode-view__intro h1 { font-size: clamp(52px, 18vw, 82px); }
  .episode-view-summary { font-size: 16px; }
  .episode-view-meta { grid-template-columns: repeat(2, 1fr); }
  .episode-view-meta div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .episode-view-meta div:nth-child(4) { border-top: 1px solid var(--line); }
  .detail-player, .detail-video { margin-block: 70px; padding: 22px 16px; }
  .detail-player__header { display: grid; }
  .detail-player-status { justify-self: start; }
  .audio-visualizer--detail { height: 130px; }
  .detail-player__tools { justify-content: space-between; }
  .episode-view__sidebar { grid-template-columns: 1fr; }
  .dossier-side-card--warning { grid-column: auto; }
  .chapter-button { grid-template-columns: 36px 1fr auto; gap: 10px; }
  .chapter-button strong { font-size: 13px; }
  .episode-navigation { grid-template-columns: 1fr; }
  .episode-nav-button + .episode-nav-button { border-left: 0; border-top: 1px solid var(--line); text-align: left; }
}

@media (max-width: 430px) {
  .dossier-card__tab { min-width: 205px; padding-inline: 12px; gap: 10px; }
  .episode-cover { min-height: 180px; }
  .episode-card .episode-actions { grid-template-columns: 40px 1fr 44px; }
  .dossier-open-button { padding-inline: 9px; letter-spacing: .09em; }
  .episode-view-meta { grid-template-columns: 1fr; }
  .episode-view-meta div + div,
  .episode-view-meta div:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .detail-player__tools label span { display: none; }
  .detail-player__tools input { width: 95px; }
}

@media (prefers-reduced-motion: reduce) {
  .arrival-document,
  body.access-granted .arrival-document,
  body.access-granted .arrival-document:not(.is-arrived) { opacity: 1; filter: none; transform: none; }
  .arrival-authorized { display: none; }
  .episode-card.is-opening { animation: none; opacity: 1; }
  .episode-view__decode { display: none; }
  .episode-view { transition: none; }
}



.audio-source-message {
  min-height: 16px;
  max-width: 1500px;
  margin: 8px auto 0;
  color: #77767d;
  font: 700 8px/1.5 ui-monospace, monospace;
  letter-spacing: .08em;
  text-align: right;
}
.episode-play.has-no-audio {
  border-color: rgba(255,255,255,.07);
  color: #4e4d52;
  cursor: not-allowed;
}
.episode-cover__image,
.detail-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: .72;
  filter: saturate(.6) contrast(1.12) brightness(.58);
  transform: scale(1.01);
}
.episode-cover.has-image::before,
.episode-view__cover.has-image::before { z-index: -1; }
.episode-cover.has-image {
  background: linear-gradient(180deg, rgba(5,5,6,.05), rgba(0,0,0,.9));
}
.episode-view__cover.has-image {
  isolation: isolate;
  background: linear-gradient(180deg, rgba(5,5,6,.05), rgba(0,0,0,.92));
}
.detail-cover-image { z-index: 0; opacity: .68; }
.episode-view__cover.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.88));
  pointer-events: none;
}
.episode-view__cover.has-image > span,
.episode-view__cover.has-image > strong,
.episode-view__cover.has-image > small,
.episode-view__cover.has-image > i { z-index: 2; }
.dossier-empty-copy {
  margin: 0;
  padding: 20px;
  border: 1px dashed rgba(255,255,255,.1);
  color: #6f6e74;
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .audio-source-message { text-align: left; }
}
.episode-share-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.episode-share-actions button { min-height: 40px; padding: 0 14px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.025); color: inherit; cursor: pointer; font: 700 9px/1 var(--font-mono, monospace); letter-spacing: .1em; }
.episode-share-actions button:hover { border-color: var(--red, #b51f32); background: rgba(181,31,50,.08); }
.analytics-optout { display:flex; align-items:center; gap:8px; margin-top:12px; color:var(--dim); font-size:10px; cursor:pointer; }
.analytics-optout input { width:14px; height:14px; accent-color:var(--accent); }
.legal-page { min-height: 100vh; background: var(--bg); color: var(--text); }
.legal-page a { color: inherit; }
.legal-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 82px; border-bottom: 1px solid var(--line); }
.legal-return { color: var(--dim); font: 700 8px/1 ui-monospace, monospace; letter-spacing: .14em; text-decoration: none; transition: color .2s; }
.legal-return:hover { color: var(--text); }
.legal-main { padding-block: clamp(70px, 9vw, 140px); }
.legal-hero { max-width: 900px; padding-bottom: clamp(55px, 7vw, 95px); border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 840px; margin: 18px 0 25px; font: 400 clamp(48px, 8vw, 105px)/.92 Georgia, "Times New Roman", serif; letter-spacing: -.055em; }
.legal-hero__intro { max-width: 720px; margin: 0; color: #aaa9ad; font-size: clamp(15px, 1.6vw, 19px); line-height: 1.8; }
.legal-updated { display: block; margin-top: 26px; color: var(--dim); font: 700 8px/1 ui-monospace, monospace; letter-spacing: .16em; }
.legal-layout { display: grid; grid-template-columns: minmax(190px, .38fr) minmax(0, 1fr); gap: clamp(45px, 8vw, 130px); padding-top: clamp(55px, 7vw, 95px); }
.legal-summary { position: sticky; top: 30px; align-self: start; display: grid; border-top: 1px solid var(--line); }
.legal-summary a { padding: 15px 4px; border-bottom: 1px solid var(--line); color: var(--dim); font: 700 8px/1.35 ui-monospace, monospace; letter-spacing: .12em; text-decoration: none; transition: color .2s, padding .2s; }
.legal-summary a:hover { padding-left: 10px; color: var(--text); }
.legal-content { min-width: 0; }
.legal-section { scroll-margin-top: 30px; padding-bottom: clamp(60px, 7vw, 95px); }
.legal-section + .legal-section { padding-top: clamp(60px, 7vw, 95px); border-top: 1px solid var(--line); }
.legal-section h2 { margin: 12px 0 35px; font: 400 clamp(32px, 4vw, 56px)/1 Georgia, "Times New Roman", serif; letter-spacing: -.04em; }
.legal-section h3 { margin: 35px 0 12px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.legal-section p, .legal-section li { color: #aaa9ad; font-size: 14px; line-height: 1.85; }
.legal-section p { margin: 0 0 16px; }
.legal-section ul { margin: 18px 0; padding-left: 20px; }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-section a { color: #d9d8da; text-underline-offset: 4px; overflow-wrap: anywhere; }
.legal-card { margin-top: 24px; padding: clamp(22px, 3vw, 34px); border: 1px solid var(--line); background: #0a0a0c; }
.legal-card dl { display: grid; margin: 0; }
.legal-card div { display: grid; grid-template-columns: minmax(125px, .35fr) 1fr; gap: 25px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal-card div:first-child { padding-top: 0; }
.legal-card div:last-child { padding-bottom: 0; border-bottom: 0; }
.legal-card dt { color: var(--dim); font: 700 8px/1.5 ui-monospace, monospace; letter-spacing: .12em; }
.legal-card dd { margin: 0; color: #c4c3c5; font-size: 13px; line-height: 1.7; }
.legal-notice { padding: 22px; border-left: 2px solid var(--accent-bright); background: rgba(182,32,46,.045); }
.legal-footer { display: flex; justify-content: space-between; gap: 30px; padding-block: 35px; border-top: 1px solid var(--line); color: var(--dim); font-size: 9px; letter-spacing: .08em; }
@media (max-width: 760px) {
  .legal-topbar { min-height: 70px; }
  .legal-topbar .brand span:last-child { display: none; }
  .legal-main { padding-top: 60px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-summary { position: static; grid-template-columns: 1fr 1fr; }
  .legal-card div { grid-template-columns: 1fr; gap: 6px; }
  .legal-footer { flex-direction: column; }
}
.next-episode-prompt { position:fixed; right:24px; bottom:24px; z-index:1500; width:min(420px,calc(100vw - 32px)); padding:25px; border:1px solid var(--line-strong); background:rgba(10,10,12,.97); box-shadow:0 24px 80px rgba(0,0,0,.65); }
.next-episode-prompt .eyebrow { margin:0 0 10px; }
.next-episode-prompt h2 { margin:0; font:400 32px/1 Georgia,serif; }
.next-episode-prompt > p:not(.eyebrow) { color:var(--muted); }
.next-episode-prompt > p strong { color:var(--accent-bright); }
.next-episode-prompt > div { display:flex; gap:8px; }
.next-episode-prompt button { min-height:42px; padding:0 14px; border:1px solid var(--line); background:transparent; color:var(--text); font:700 8px/1 ui-monospace,monospace; letter-spacing:.11em; cursor:pointer; }
.next-episode-prompt button.primary { border-color:var(--accent); background:var(--accent); }
.next-episode-prompt > label { display:flex; align-items:center; gap:8px; margin-top:18px; color:var(--muted); font-size:11px; }
.next-episode-prompt > label input { accent-color:var(--accent); }
