@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --black: #050506;
    --black-2: #0b0b0d;
    --panel: rgba(15, 15, 18, 0.78);
    --panel-solid: #121216;
    --white: #f8f5ec;
    --muted: #b9b2a4;
    --gold: #bcbb82;
    --gold-2: #e8e7a4;
    --red: #b81420;
    --line: rgba(255, 255, 255, 0.13);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    --radius: 28px;
    --container: min(1160px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background: var(--black);
}
body {
    margin: 0;
    color: var(--white);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background:
        radial-gradient(
            circle at 15% 5%,
            rgba(184, 20, 32, 0.18),
            transparent 34rem
        ),
        radial-gradient(
            circle at 90% 18%,
            rgba(188, 187, 130, 0.14),
            transparent 30rem
        ),
        var(--black);
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}
img,
video {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
}
button,
input {
    font: inherit;
}
:focus-visible {
    outline: 3px solid rgba(232, 231, 164, 0.7);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 999;
    background: var(--gold);
    color: #090909;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
}

.container {
    width: var(--container);
    margin: 0 auto;
}
.narrow {
    max-width: 900px;
}
.section-dark {
    background: linear-gradient(
        180deg,
        rgba(5, 5, 6, 0.92),
        rgba(10, 10, 12, 0.98)
    );
}
.section-gold {
    background: linear-gradient(135deg, #bcbb82, #e8e7a4 48%, #8f8e61);
    color: #111;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 16px clamp(20px, 5vw, 58px);
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0)
    );
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        padding 0.2s ease;
}
.site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(5, 5, 6, 0.86);
    border-bottom-color: var(--line);
}
.brand {
    position: relative;
    z-index: 102;
}
.brand img {
    width: clamp(150px, 14vw, 220px);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.7));
}
.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.08em;
    color: rgba(248, 245, 236, 0.92);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.72);
}
.brand-wordmark strong {
    color: transparent;
    background: linear-gradient(
        180deg,
        #fff8c6 0%,
        var(--gold-2) 48%,
        #87865f 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.24em;
    letter-spacing: 0.015em;
}
.brand-wordmark span {
    color: rgba(248, 245, 236, 0.82);
}
.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
}
.site-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.site-nav a:hover {
    color: var(--gold-2);
    transform: translateY(-1px);
}
.nav-cta {
    color: #111 !important;
    background: var(--gold-2);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(232, 231, 164, 0.16);
}
.nav-toggle {
    display: none;
    position: relative;
    z-index: 102;
    border: 0;
    background: transparent;
    padding: 0.4rem;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 122px 0 96px;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 76% 42%,
            rgba(232, 198, 114, 0.24),
            transparent 24rem
        ),
        radial-gradient(
            circle at 92% 62%,
            rgba(184, 20, 32, 0.22),
            transparent 28rem
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.28),
            transparent 48%,
            rgba(0, 0, 0, 0.24)
        );
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(0deg, var(--black), rgba(5, 5, 6, 0));
    z-index: -1;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.42) 68%,
            rgba(0, 0, 0, 0.88) 100%
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.56) 34%,
            rgba(0, 0, 0, 0.18) 62%,
            rgba(0, 0, 0, 0.62) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 5, 6, 1),
            rgba(5, 5, 6, 0.05) 46%,
            rgba(5, 5, 6, 0.76)
        ),
        url("/assets/img/hero-bg.webp") center / cover no-repeat;
    filter: saturate(1.12) contrast(1.16);
    transform: scale(1.045);
}
.noise {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-grid {
    position: relative;
    display: grid;
    width: min(1320px, calc(100% - 40px));
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 640px);
    gap: clamp(34px, 4vw, 58px);
    align-items: center;
}
.hero-copy {
    max-width: 620px;
}
.hero-title-mark {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: end;
    gap: 0 0.24em;
    margin-bottom: 0.9rem;
    color: var(--white);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.65rem);
    line-height: 0.78;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-shadow:
        0 14px 35px rgba(0, 0, 0, 0.82),
        0 0 22px rgba(232, 231, 164, 0.1);
}
.hero-title-mark .mark-the {
    grid-column: 1;
    align-self: start;
    color: rgba(248, 245, 236, 0.88);
    font-size: 0.48em;
    letter-spacing: 0.28em;
    transform: translateY(0.16em);
}
.hero-title-mark .mark-enemy {
    grid-column: 1 / -1;
    font-size: 1.72em;
    letter-spacing: 0.02em;
    background: linear-gradient(
        180deg,
        #fff8c6 6%,
        var(--gold-2) 38%,
        #8c211b 96%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.42));
}
.hero-title-mark .mark-within {
    grid-column: 2;
    color: rgba(248, 245, 236, 0.92);
    font-size: 0.72em;
    letter-spacing: 0.16em;
    justify-self: end;
}
.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.78rem;
    font-weight: 900;
}
h1,
h2,
h3 {
    line-height: 0.95;
    margin: 0;
}
h1,
h2 {
    font-family: "Bebas Neue", Impact, sans-serif;
    letter-spacing: 0.025em;
}
h1 {
    max-width: 620px;
    font-size: clamp(4.15rem, 7.8vw, 8.35rem);
    line-height: 0.88;
    text-wrap: balance;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.78);
}
h2 {
    font-size: clamp(3.1rem, 7vw, 6.8rem);
    text-wrap: balance;
}
h3 {
    font-size: 1.2rem;
    line-height: 1.2;
}
.hero-lede {
    max-width: 560px;
    margin: 1.05rem 0 0;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    color: rgba(255, 255, 255, 0.78);
}
.hero-actions,
.form-row,
.inline-actions,
.press-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
}
.hero-actions {
    margin-top: 1.65rem;
    gap: 0.7rem 0.95rem;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 50px;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}
.button:hover {
    transform: translateY(-2px);
}
.button:disabled {
    opacity: 0.62;
    cursor: wait;
    transform: none;
}
.button.primary {
    color: #090909;
    background: linear-gradient(135deg, var(--gold-2), #bcbb82);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(188, 187, 130, 0.22);
}
.hero-actions .button.primary {
    min-height: 58px;
    padding-inline: 1.7rem;
    box-shadow:
        0 20px 46px rgba(188, 187, 130, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.hero-actions .button.ghost {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(248, 245, 236, 0.78);
}
.button.ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}
.button.dark {
    background: #090909;
    color: var(--gold-2);
    border-color: #090909;
}
.button.small {
    min-height: 42px;
    padding: 0.72rem 1rem;
    margin-top: 0.8rem;
}

dt {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
dd {
    margin: 0.2rem 0 0;
    font-weight: 900;
}
.hero-trailer-card {
    position: relative;
    justify-self: end;
    width: min(100%, 640px);
    padding: 12px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.025)
        ),
        rgba(4, 4, 5, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow:
        0 48px 120px rgba(0, 0, 0, 0.76),
        -38px 30px 100px rgba(188, 187, 130, 0.14),
        30px -20px 86px rgba(184, 20, 32, 0.2);
    transform: translateY(6px) rotate(0.6deg);
}
.hero-trailer-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(232, 231, 164, 0.74),
        transparent 42%,
        rgba(184, 20, 32, 0.55)
    );
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}
.hero-trailer-card::after {
    content: "";
    position: absolute;
    inset: 12% -10% -14% 12%;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at 34% 22%,
            rgba(232, 231, 164, 0.24),
            transparent 46%
        ),
        radial-gradient(
            circle at 78% 68%,
            rgba(184, 20, 32, 0.32),
            transparent 54%
        );
    filter: blur(20px);
    opacity: 0.95;
}
.hero-trailer-shell {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.52);
}
.hero-trailer-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    color: var(--white);
    background: #000;
    cursor: pointer;
    text-align: left;
}
.hero-trailer-trigger[hidden] {
    display: none;
}
.hero-trailer-trigger img,
.hero-trailer-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 0;
    background: #000;
}
.hero-trailer-video[hidden] {
    display: none;
}
.hero-trailer-trigger img {
    opacity: 0.92;
    filter: saturate(0.92) contrast(1.08) brightness(0.82);
    transition:
        transform 0.24s ease,
        opacity 0.24s ease,
        filter 0.24s ease;
}
.hero-trailer-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 48%,
            transparent 0 18%,
            rgba(0, 0, 0, 0.24) 34%
        ),
        linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 48%);
    pointer-events: none;
}
.hero-trailer-trigger:hover img,
.hero-trailer-trigger:focus-visible img {
    opacity: 1;
    filter: saturate(1.02) contrast(1.14) brightness(0.94);
    transform: scale(1.025);
}
.hero-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: grid;
    width: clamp(82px, 8vw, 112px);
    height: clamp(82px, 8vw, 112px);
    place-items: center;
    padding-left: 0.16em;
    border-radius: 999px;
    color: #090909;
    background: linear-gradient(135deg, var(--gold-2), #bcbb82);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.58),
        0 0 0 10px rgba(232, 231, 164, 0.1);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    transform: translate(-50%, -50%);
}
.hero-trailer-meta {
    position: absolute;
    left: clamp(1rem, 2vw, 1.35rem);
    right: clamp(1rem, 2vw, 1.35rem);
    bottom: clamp(1rem, 2vw, 1.35rem);
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
}
.hero-trailer-meta span {
    color: var(--gold-2);
    font-size: clamp(0.74rem, 0.9vw, 0.86rem);
}
.hero-trailer-meta strong {
    color: var(--white);
    font-size: clamp(0.82rem, 1vw, 0.96rem);
}

.watch-gate {
    padding: clamp(64px, 8vw, 88px) 0;
}
.gate-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(28px, 5vw, 48px);
    align-items: center;
}
.gate-copy .eyebrow,
.contact .eyebrow {
    color: #5a190f;
}
.gate-copy p,
.contact .section-heading p {
    color: rgba(0, 0, 0, 0.72);
    font-weight: 600;
}
.access-list {
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 1.4rem 0 0;
    list-style: none;
}
.access-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 900;
}
.access-list li::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: #70160d;
    box-shadow: 0 0 0 5px rgba(112, 22, 13, 0.13);
}
.gate-form {
    background: rgba(5, 5, 6, 0.9);
    color: var(--white);
    padding: clamp(22px, 4vw, 38px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.form-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}
.form-heading span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 900;
}
.form-heading strong {
    color: var(--gold-2);
}
.gate-form label:not(.consent) {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 900;
}
input[type="email"] {
    flex: 1 1 280px;
    width: 100%;
    min-height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 0 1rem;
    outline: 0;
}
input[type="email"]:focus {
    border-color: var(--gold-2);
    box-shadow: 0 0 0 3px rgba(232, 231, 164, 0.18);
}
.consent {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}
.consent input {
    margin-top: 0.33rem;
    accent-color: var(--gold);
}
.form-note {
    color: var(--muted);
    margin-bottom: 0;
}
.form-note[data-tone="error"] {
    color: #ff8f8f;
}
.form-note[data-tone="success"] {
    color: #a7f0b8;
}
.form-note[data-tone="warning"] {
    color: #ffe08f;
}
.unlock-panel {
    display: grid;
    gap: 0.25rem;
    margin-top: 1.2rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(188, 187, 130, 0.4);
    background: rgba(188, 187, 130, 0.1);
}
.unlock-panel[hidden] {
    display: none;
}

section:not(.hero) {
    padding: clamp(72px, 10vw, 132px) 0;
}
.split {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}
.section-heading p {
    color: rgba(255, 255, 255, 0.68);
    max-width: 700px;
}
.centered {
    text-align: center;
    margin: 0 auto 2.5rem;
}
.centered p {
    margin-left: auto;
    margin-right: auto;
}
.inline-actions,
.press-actions {
    margin-top: 1.4rem;
}
.inline-actions a {
    color: var(--gold-2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    text-decoration: none;
}
.inline-actions a::after,
.interview-list a::after,
.channel-link::after {
    content: " →";
}
.trailer-feature {
    display: grid;
    gap: clamp(20px, 4vw, 34px);
}
.trailer-copy {
    max-width: 980px;
}
.trailer-copy p {
    margin-inline: auto;
}
.trailer-actions {
    justify-content: center;
    margin-top: 0;
}
.video-frame {
    padding: 12px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.13),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.trailer .video-frame {
    width: min(100%, 1180px);
    margin: 0 auto;
}
.video-frame video {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.episode-grid {
    display: grid;
    gap: 1rem;
}
.episode-card {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: clamp(18px, 4vw, 36px);
    min-height: 148px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}
.episode-card:hover,
.episode-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(232, 231, 164, 0.5);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}
.episode-card img {
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.episode-card span,
.cast-card span {
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 900;
}
.episode-card h3 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-family: "Bebas Neue", Impact, sans-serif;
    letter-spacing: 0.035em;
}
.episode-card p {
    color: rgba(255, 255, 255, 0.68);
}
.episode-link-text {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}
.episode-link-text::after {
    content: " →";
}
.episode-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(232, 231, 164, 0.28);
    border-radius: 22px;
    background: rgba(232, 231, 164, 0.06);
}
.episode-cta p {
    margin: 0;
    font-weight: 900;
}

.cast {
    background: #0f0f12;
}
.cast .section-heading p,
.cast .section-heading h2 {
    color: var(--white);
}
.cast-grid,
.quote-grid,
.cards-4 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}
.cast-card,
.info-card,
blockquote,
.bio-stack article,
.contact-panel {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    padding: 1.25rem;
}
.cast-card,
.info-card,
blockquote {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}
.cast-card:hover,
.info-card:hover,
blockquote:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 231, 164, 0.3);
}
.cast-card img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #050506;
}
.cast-card h3 {
    margin-top: 0.35rem;
}
.cast-card p,
.info-card p,
blockquote p,
.bio-stack p {
    color: rgba(255, 255, 255, 0.68);
}
.share {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(184, 20, 32, 0.22),
            transparent 30rem
        ),
        linear-gradient(180deg, #070708, #0c0c0e 58%, #070708);
}
.share::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(188, 187, 130, 0.08), transparent 28%),
        radial-gradient(
            circle at 88% 20%,
            rgba(188, 187, 130, 0.16),
            transparent 22rem
        );
}
.share-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(232, 231, 164, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.028)
        ),
        rgba(7, 7, 8, 0.88);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.share-panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    border-radius: calc(var(--radius) - 1px);
    background: linear-gradient(
        135deg,
        rgba(232, 231, 164, 0.1),
        transparent 34%
    );
}
.share-copy,
.share-grid {
    position: relative;
    z-index: 1;
}
.share-copy {
    margin: 0;
}
.share-copy h2 {
    max-width: 580px;
    font-size: clamp(2.8rem, 5.2vw, 5.35rem);
}
.share-copy p {
    max-width: 560px;
}
.share-url {
    display: inline-flex;
    margin-top: 1.1rem;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(232, 231, 164, 0.26);
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(188, 187, 130, 0.08);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}
.share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.share-button {
    --share-accent: rgba(232, 231, 164, 0.78);
    position: relative;
    display: grid;
    gap: 0.22rem;
    min-height: 116px;
    padding: 1.05rem 3rem 1.05rem 1.05rem;
    border-radius: 18px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        ),
        rgba(255, 255, 255, 0.035);
    box-shadow: inset 3px 0 0 var(--share-accent);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}
.share-button::after {
    content: "↗";
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--share-accent);
    font-size: 1rem;
    line-height: 1;
}
.share-button span {
    color: var(--share-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    font-weight: 900;
}
.share-button strong {
    font-size: 1.12rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.share-button em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1.35;
}
.share-button:hover,
.share-button:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(232, 231, 164, 0.38);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.04)
        ),
        rgba(255, 255, 255, 0.045);
}
.share-button.facebook {
    --share-accent: #6ba4ff;
}
.share-button.x {
    --share-accent: #d8d8d8;
}
.share-button.telegram {
    --share-accent: #57c7ff;
}
.share-button.youtube {
    --share-accent: #ff625f;
}
.quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quote-wide {
    grid-column: span 3;
}
blockquote {
    margin: 0;
}
blockquote strong {
    color: var(--gold-2);
    font-size: 1.1rem;
}
cite {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}
.interview-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.interview-list a {
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.055);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.interview-list a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(232, 231, 164, 0.3);
}
.press-interviews {
    grid-column: 1 / -1;
    margin-top: 1.2rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}
.press-interviews h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-family: "Bebas Neue", Impact, sans-serif;
    letter-spacing: 0.035em;
}
.channel-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 1.2rem;
    color: var(--gold-2);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.press-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.2rem;
}
.bio-stack {
    display: grid;
    gap: 1rem;
}
.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cards-4 .full {
    grid-column: 1 / -1;
}
.contact-panel {
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 45px 0;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 1rem 2rem;
    align-items: center;
}
.footer-grid img {
    width: 220px;
}
.footer-grid nav,
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 900;
}
.footer-social {
    grid-column: 1 / -1;
    justify-content: center;
}
.footer-social a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.footer-grid a {
    text-decoration: none;
    color: var(--muted);
}
.footer-grid a:hover {
    color: var(--gold-2);
}
.footer-grid p {
    grid-column: 1 / -1;
    margin: 0;
    color: #8a8378;
    text-align: center;
    font-size: 0.9rem;
}

.watch-page {
    min-height: 100svh;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(188, 187, 130, 0.12),
            transparent 30rem
        ),
        radial-gradient(
            circle at 12% 18%,
            rgba(184, 20, 32, 0.16),
            transparent 34rem
        ),
        #020203;
}
.watch-main {
    min-height: 100svh;
}
body.watch-page .site-header {
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}
body.watch-page .site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.98);
}
body.watch-page .brand img {
    width: clamp(170px, 17vw, 260px);
}
body.watch-page:has(.watch-gate-card:not([hidden])) .site-header {
    opacity: 0;
    pointer-events: none;
}
.watch-theater {
    position: relative;
    min-height: 100svh;
    isolation: isolate;
    overflow: hidden;
    padding: 118px 0 44px !important;
}
.watch-theater::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.86),
            rgba(0, 0, 0, 0.52) 38%,
            rgba(0, 0, 0, 0.94)
        ),
        url("/assets/img/hero-bg.webp") center / cover no-repeat;
    opacity: 0.42;
    filter: saturate(0.8);
}
.theater-container {
    max-width: min(100% - 40px, 1240px);
    display: grid;
    gap: clamp(12px, 2vw, 20px);
}
.watch-titlebar {
    order: 3;
    display: grid;
    gap: 0.5rem;
    max-width: 1040px;
    margin-inline: auto;
    text-align: left;
}
.watch-titlebar h1 {
    margin: 0;
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    line-height: 0.96;
    text-wrap: balance;
}
.watch-titlebar p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.55;
}
.watch-stage {
    order: 1;
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
    border: 1px solid rgba(232, 231, 164, 0.24);
    border-radius: 26px;
    background: #000;
    box-shadow:
        0 38px 110px rgba(0, 0, 0, 0.78),
        0 0 0 1px rgba(255, 255, 255, 0.045) inset;
    overflow: hidden;
}
.watch-stage.reveal,
.watch-stage.reveal.is-visible {
    transform: none;
}
.watch-player-shell {
    position: relative;
    background: #000;
}
.watch-player-shell video,
.watch-player-shell iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}
.watch-controls-row {
    order: 2;
    max-width: 1040px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
}
.watch-dev-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: right;
}
.episode-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.episode-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.68rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.055);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}
.episode-switcher a:hover,
.episode-switcher a:focus-visible,
.episode-switcher a.is-active {
    color: #090909;
    border-color: rgba(232, 231, 164, 0.65);
    background: var(--gold-2);
    transform: translateY(-1px);
}
.fullscreen-button {
    position: absolute;
    right: 1rem;
    top: 1rem;
    bottom: auto;
    min-height: 44px;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(12px);
}
.watch-gate-card {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 48px);
    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(8px);
    color: var(--white);
    overflow: auto;
}
.watch-gate-panel {
    width: min(100%, 580px);
    max-height: calc(100svh - 36px);
    overflow: auto;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(232, 231, 164, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 82% 0%,
            rgba(188, 187, 130, 0.16),
            transparent 18rem
        ),
        linear-gradient(135deg, rgba(18, 18, 20, 0.99), rgba(5, 5, 7, 0.98));
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.watch-gate-card h2 {
    margin-top: 0.65rem;
    font-size: clamp(2.9rem, 9vw, 4.8rem);
    line-height: 0.92;
}
.watch-gate-card p {
    max-width: 46rem;
    color: rgba(255, 255, 255, 0.84);
}
.watch-gate-card label:not(.consent) {
    display: block;
    margin: 1.35rem 0 0.55rem;
    color: var(--white);
    font-weight: 900;
}
.watch-gate-card .form-row {
    align-items: stretch;
}
.watch-gate-card .form-row input {
    flex: 1 1 16rem;
    min-width: 0;
    min-height: 58px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}
.watch-gate-card .form-row input:focus {
    border-color: rgba(232, 231, 164, 0.78);
    box-shadow: 0 0 0 4px rgba(232, 231, 164, 0.16);
}
.watch-gate-card .consent {
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.05rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.065);
    cursor: pointer;
}
.watch-gate-card .consent input {
    appearance: none;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin: 0.05rem 0 0;
    display: grid;
    place-content: center;
    border: 2px solid rgba(232, 231, 164, 0.78);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
}
.watch-gate-card .consent input::after {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: transform 0.12s ease;
    clip-path: polygon(14% 44%, 0 58%, 42% 100%, 100% 16%, 84% 0, 38% 62%);
    background: #080808;
}
.watch-gate-card .consent input:checked {
    border-color: var(--gold-2);
    background: var(--gold-2);
}
.watch-gate-card .consent input:checked::after {
    transform: scale(1);
}
.watch-gate-card .form-note {
    margin-bottom: 0;
}
.watch-gate-card[hidden],
.watch-stage.is-unlocked .watch-gate-card {
    display: none;
}
.watch-stage[data-locked="true"] iframe {
    filter: saturate(0.55) brightness(0.45);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.08s;
}
.delay-2 {
    transition-delay: 0.16s;
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 14px;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }
    .site-nav {
        position: fixed;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(5, 5, 6, 0.98);
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open {
        display: flex;
    }
    .site-nav a {
        padding: 0.9rem 1rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.045);
    }
    .nav-cta {
        text-align: center;
    }
    .hero-grid,
    .gate-grid,
    .split,
    .press-grid,
    .share-panel {
        grid-template-columns: 1fr;
    }
    .hero-trailer-card {
        max-width: 640px;
        justify-self: center;
        transform: none;
        margin: 0 auto;
    }
    .cast-grid,
    .quote-grid,
    .cards-4,
    .interview-list,
    .share-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .quote-wide {
        grid-column: span 2;
    }
    .episode-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100% - 28px, 1160px);
    }
    .site-header {
        padding-inline: 14px;
    }
    .brand-wordmark {
        font-size: clamp(1.2rem, 7vw, 1.55rem);
    }
    .hero-grid {
        width: min(100% - 28px, 1320px);
    }
    .hero {
        padding-top: 112px;
    }
    h1 {
        font-size: clamp(4rem, 21vw, 6.5rem);
    }
    .cast-grid,
    .quote-grid,
    .cards-4,
    .interview-list,
    .share-grid {
        grid-template-columns: 1fr;
    }
    .quote-wide {
        grid-column: span 1;
    }
    .form-row {
        align-items: stretch;
    }
    .form-row .button,
    .hero-actions .button,
    .episode-cta .button,
    .share-actions .button,
    .fullscreen-button {
        width: 100%;
    }
    .form-heading,
    .episode-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .watch-theater {
        padding: 96px 0 36px !important;
    }
    .theater-container {
        max-width: min(100% - 28px, 1240px);
        gap: 1rem;
    }
    .watch-titlebar {
        text-align: left;
    }
    .watch-titlebar p:not(.eyebrow) {
        margin-inline: 0;
    }
    .watch-controls-row {
        align-items: stretch;
        flex-direction: column;
    }
    .watch-dev-note {
        text-align: left;
    }
    .watch-gate-card .form-row {
        flex-direction: column;
    }
    .watch-gate-card .form-row input {
        flex: none;
    }
    .watch-gate-card .button {
        width: 100%;
    }
    .fullscreen-button {
        position: static;
        margin: 0.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-grid img {
        margin: 0 auto;
    }
    .footer-grid nav {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
