:root {
    --bg: #07090f;
    --panel: rgba(17, 20, 32, 0.86);
    --panel-strong: rgba(18, 22, 37, 0.96);
    --text: #eef3ff;
    --muted: #94a2c0;
    --border: rgba(255, 255, 255, 0.09);
    --accent: #ff6b35;
    --accent-2: #ffb703;
    --accent-3: #43d9ff;
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.42);
    --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.32);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --content: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 47, 110, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(67, 217, 255, 0.14), transparent 22%),
        radial-gradient(circle at 50% 14%, rgba(255, 183, 3, 0.08), transparent 26%),
        linear-gradient(180deg, #07090f 0%, #101521 45%, #090b12 100%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(6, 8, 14, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner,
.section,
.site-footer {
    width: min(calc(100% - 32px), var(--content));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #110b07;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.site-brand strong,
.site-nav a,
.button,
.cta-panel h1,
.section-heading h2,
.hero h1,
.feature-card h3,
.standard-card h3,
.pipeline-card h3,
.queue-card h3,
.spotlight-card h3,
.review-panel h3,
.score-card strong,
.cta-panel h2,
.site-footer__hero h2,
.faq-item summary {
    font-family: "Jost", sans-serif;
}

.site-brand strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.site-brand small {
    color: var(--muted);
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(238, 243, 255, 0.92);
    transition: background-color 160ms ease, transform 160ms ease;
}

.site-nav a span,
.hero__meta span,
.genre-pills a span,
.hero__poster-meta span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f8fbff;
    font-size: 0.92rem;
}

.site-nav a span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-2);
    padding: 4px 8px;
}

.site-nav a:hover,
.button:hover,
.genre-pills a:hover,
.related-pills a:hover {
    transform: translateY(-1px);
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.site-header__toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 999px;
}

.hero {
    position: relative;
    width: min(calc(100% - 32px), var(--content));
    margin: 28px auto 0;
    padding: 60px;
    min-height: 78vh;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 340px);
    gap: 28px;
}

.hero--review {
    min-height: 72vh;
}

.hero__backdrop,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__backdrop {
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(8, 10, 16, 0.94) 0%, rgba(8, 10, 16, 0.72) 55%, rgba(8, 10, 16, 0.54) 100%),
        linear-gradient(180deg, rgba(255, 107, 53, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.hero__content,
.hero__poster-card {
    position: relative;
    z-index: 1;
}

.hero__content {
    align-self: end;
    max-width: 720px;
}

.section-eyebrow {
    margin: 0 0 14px;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
}

.cta-panel h1,
.hero h1,
.cta-panel h2,
.site-footer__hero h2 {
    margin: 0;
    line-height: 0.96;
    font-size: clamp(3rem, 6vw, 6rem);
}

.hero__lede,
.hero__sublede,
.cta-panel p,
.section-heading p,
.feature-card__body span,
.spotlight-card p,
.review-panel p,
.review-panel li,
.score-card p,
.verdict-card p,
.site-footer__hero p,
.site-footer__column a,
.site-footer__bottom,
.faq-item p,
.gallery-main figcaption {
    color: var(--muted);
    font-size: 1.08rem;
}

.hero__lede,
.hero__sublede,
.cta-panel p,
.section-heading p,
.spotlight-card p,
.review-panel p,
.score-card p,
.verdict-card p,
.site-footer__hero p,
.faq-item p {
    text-align: justify;
    text-wrap: pretty;
}

.hero__lede {
    margin: 18px 0 0;
    max-width: 640px;
    font-size: 1.18rem;
}

.hero__sublede {
    margin: 14px 0 0;
    max-width: 620px;
}

.hero__meta,
.hero__actions,
.hero__proof,
.genre-pills,
.related-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__meta {
    margin-top: 22px;
}

.hero__actions {
    margin-top: 24px;
}

.hero__proof {
    margin-top: 26px;
}

.hero__proof article {
    min-width: 220px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button--primary {
    background: linear-gradient(135deg, var(--accent), #ff8a4d);
    color: #140d08;
    font-weight: 700;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.hero__poster-card,
.feature-card,
.standard-card,
.pipeline-card,
.queue-card,
.spotlight-card,
.trailer-card,
.fact-card,
.review-panel,
.score-card,
.verdict-card,
.cta-panel,
.gallery-main,
.site-footer__column,
.trailer-feature__copy,
.trailer-feature__embed,
.faq-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero__poster-card {
    align-self: end;
    overflow: hidden;
}

.hero__poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero__poster-card div {
    padding: 16px 18px 20px;
}

.hero__poster-card p,
.feature-card__body p,
.standard-card p,
.pipeline-card__body p,
.pipeline-queue__intro p,
.queue-card p,
.spotlight-card span,
.review-source,
.trailer-card span {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.77rem;
    color: var(--accent-3);
}

.hero__poster-card strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.35;
}

.hero__poster-card>div>span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.hero__poster-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero__poster-meta span {
    font-size: 0.78rem;
}

.hero__poster-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #fff;
}

.hero__poster-link::after {
    content: "->";
    color: var(--accent-2);
}

.hero__proof span,
.heading-metrics span,
.standard-card p,
.pipeline-card__body p,
.pipeline-queue__intro p,
.queue-card p {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.77rem;
    color: var(--accent-3);
}

.hero__proof span,
.heading-metrics span {
    margin: 0 0 8px;
}

.hero__proof strong {
    display: block;
    line-height: 1.4;
    font-size: 1rem;
}

.section {
    padding: 88px 0 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.section-heading p {
    margin: 14px 0 0;
}

.section-heading--split {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
    max-width: none;
}

.heading-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.heading-metrics span {
    margin: 0;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f8ff;
}

.feature-grid,
.standard-grid,
.pipeline-layout,
.queue-grid,
.spotlight-grid,
.review-columns,
.site-footer__grid,
.trailer-grid,
.review-verdict__grid,
.story-grid,
.trailer-feature,
.gallery-shell,
.fact-grid,
.insight-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid--editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.standard-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pipeline-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

.queue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trailer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-verdict__grid {
    grid-template-columns: 280px minmax(0, 1fr);
}

.story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trailer-feature {
    grid-template-columns: 340px minmax(0, 1fr);
}

.gallery-shell {
    grid-template-columns: minmax(0, 1fr) 260px;
}

.fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 20px;
}

.insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    overflow: hidden;
}

.review-card {
    background: #111418;
    border: 1px solid #1e2328;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.review-card__media {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #0a0c0e;
}

.review-card__body {
    padding: 16px;
}

.review-card__score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff6b35;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.review-card__body h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.review-card__excerpt {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    color: #8892a0;
    margin-bottom: 14px;
}

.review-card__meta span {
    background: #1a1d22;
    padding: 3px 8px;
    border-radius: 4px;
}

.review-card__body a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff6b35;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.review-card__body a:hover {
    color: #ff8a5c;
}

.standard-card,
.queue-card {
    padding: 22px;
}

.pipeline-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    overflow: hidden;
}

.pipeline-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.pipeline-card__body,
.pipeline-queue__intro {
    padding: 24px;
}

.pipeline-card__body h3,
.queue-card h3,
.standard-card h3 {
    margin: 0 0 10px;
    font-size: 1.55rem;
}

.pipeline-card__body span,
.queue-card span,
.standard-card span {
    color: var(--muted);
    line-height: 1.65;
    font-size: 1.04rem;
}

.pipeline-card__body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #fff;
}

.pipeline-card__body a::after {
    content: "->";
    color: var(--accent-2);
}

.pipeline-card__body p:last-of-type,
.queue-card p:last-of-type {
    margin-top: 18px;
    color: var(--muted);
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.02rem;
    line-height: 1.65;
}

.pipeline-queue__intro {
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pipeline-queue__intro h3 {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 1.55rem;
    line-height: 1.2;
}

.queue-card p:last-of-type,
.standard-card span {
    margin: 0;
}

.feature-card__media {
    min-height: 220px;
    background-position: center;
    background-size: cover;
}

.feature-card__body {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card__body p {
    color: var(--card-accent, var(--accent));
}

.feature-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.feature-card__meta span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f8ff;
    font-size: 0.82rem;
}

.feature-card h3,
.spotlight-card h3,
.trailer-card h3,
.review-panel h3 {
    margin: 0 0 10px;
    font-size: 1.55rem;
}

.cta-panel h1,
.cta-panel h2 {
    margin: 0 0 10px;
}

.feature-card__body a,
.spotlight-card a,
.trailer-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #fff;
}

.feature-card__body a::after,
.spotlight-card a::after,
.trailer-card a::after {
    content: "->";
    color: var(--accent-2);
}

.trailer-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 16px;
}

.trailer-card img,
.spotlight-card img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.spotlight-card {
    padding: 16px;
}

.spotlight-card img {
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
}

.genre-pills a,
.related-pills a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.genre-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.genre-card,
.trust-card {
    display: block;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.genre-card:hover,
.trust-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 183, 3, 0.28);
    background: rgba(19, 23, 36, 0.94);
}

.genre-card p,
.trust-card p {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.77rem;
    color: var(--accent-3);
}

.genre-card h3,
.trust-card h3 {
    margin: 0 0 12px;
    font-family: "Jost", sans-serif;
    font-size: 1.45rem;
}

.genre-card span,
.trust-card span {
    display: block;
    color: var(--muted);
    line-height: 1.7;
}

.trust-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #fff;
}

.trust-card a::after {
    content: "->";
    color: var(--accent-2);
}

.cta-panel {
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(67, 217, 255, 0.14), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 107, 53, 0.18), transparent 28%),
        var(--panel-strong);
}

.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.score-card,
.verdict-card,
.review-panel,
.fact-card,
.gallery-main,
.trailer-feature__copy,
.site-footer__column {
    padding: 24px;
}

.score-card {
    display: grid;
    align-content: start;
    gap: 14px;
}

.score-card span,
.fact-card span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--accent-3);
}

.score-card strong {
    font-size: 4.4rem;
    line-height: 0.9;
}

.verdict-card p,
.review-panel p,
.review-panel li,
.faq-item p {
    margin: 0;
    line-height: 1.65;
}

.score-card__list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.score-card__list li {
    line-height: 1.55;
}

.verdict-card {
    display: block;
}

.verdict-card p {
    margin: 0;
    line-height: 1.4;
    margin-top: 20px;
}

.review-panel p {
    margin-top: 20px;
}

.review-panel ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 12px;
}

.fact-card span {
    margin-bottom: 12px;
}

.fact-card strong {
    font-size: 1.08rem;
    line-height: 1.35;
}

.trailer-feature__embed {
    overflow: hidden;
}

.trailer-feature__embed iframe {
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: 0;
}

.gallery-shell {
    align-items: start;
}

.gallery-main {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
}

.gallery-main figcaption {
    margin-top: 16px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-content: start;
}

.gallery-thumb {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 160ms ease, transform 160ms ease;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-thumb.is-active {
    border-color: rgba(255, 183, 3, 0.72);
    transform: translateY(-2px);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 18px 20px;
}

.faq-item summary {
    cursor: pointer;
    font-size: 1.15rem;
}

.site-footer {
    padding: 88px 0 36px;
}

.site-footer__hero {
    max-width: 820px;
    margin-bottom: 30px;
}

.site-footer__column h3 {
    margin: 0 0 14px;
    font-family: "Jost", sans-serif;
    font-size: 1.2rem;
}

.site-footer__column a {
    display: block;
    margin-bottom: 10px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 28px;
    padding-top: 18px;
}

@media (max-width: 1100px) {

    .hero,
    .review-verdict__grid,
    .story-grid,
    .trailer-feature,
    .gallery-shell,
    .review-columns,
    .site-footer__grid,
    .feature-grid,
    .standard-grid,
    .pipeline-layout,
    .queue-grid,
    .spotlight-grid,
    .trailer-grid,
    .fact-grid,
    .insight-grid,
    .genre-grid,
    .trust-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 42px 28px 28px;
    }

    .section-heading--split {
        display: block;
    }

    .heading-metrics {
        justify-content: flex-start;
        margin-top: 18px;
    }

    .pipeline-card {
        grid-template-columns: 1fr;
    }

    .hero__poster-card {
        max-width: 360px;
    }

    .gallery-shell {
        gap: 16px;
    }

    .gallery-main {
        position: sticky;
        top: 92px;
        z-index: 1;
        padding: 0 0 4px;
        background:
            linear-gradient(180deg, rgba(7, 9, 15, 0.98) 0%, rgba(7, 9, 15, 0.9) 84%, rgba(7, 9, 15, 0) 100%);
    }

    .gallery-thumbs {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 2px 8px;
        scroll-snap-type: x proximity;
        scroll-padding-inline: 2px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-thumb {
        flex: 0 0 152px;
        scroll-snap-align: start;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 18px;
        background: rgba(8, 10, 16, 0.96);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-header__toggle {
        display: inline-flex;
    }
}

@media (max-width: 720px) {

    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header__inner,
    .section,
    .site-footer,
    .hero {
        width: min(calc(100% - 20px), var(--content));
    }

    .hero {
        margin-top: 16px;
        padding: 28px 18px 18px;
    }

    .hero h1,
    .cta-panel h2,
    .site-footer__hero h2 {
        font-size: clamp(2.3rem, 10vw, 3.6rem);
    }

    .spotlight-card,
    .trailer-card,
    .standard-card,
    .queue-card,
    .score-card,
    .verdict-card,
    .review-panel,
    .fact-card,
    .gallery-main,
    .cta-panel,
    .site-footer__column {
        padding: 18px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .pipeline-card__body,
    .pipeline-queue__intro {
        padding: 18px;
    }

    .gallery-main {
        top: 84px;
        padding: 0 0 4px;
    }

    .gallery-thumb {
        flex-basis: 132px;
    }
}