/* ═══════════════════════════════════════════════════════════════
   REALITY FRACTURE — Cinematic Showcase / Immersive Strip
   Full-width dramatic section with trailer-like framing
   ═══════════════════════════════════════════════════════════════ */

.showcase {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── Background ────────────────────────────────────────────── */
.showcase__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.showcase__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) saturate(0.7);
    transform: scale(1.05);
    transition: transform 20s linear;
}

.showcase:hover .showcase__bg-img {
    transform: scale(1.12);
}

.showcase__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 20%, transparent 80%, rgba(6, 6, 18, 1) 100%);
}

/* ── Content ───────────────────────────────────────────────── */
.showcase__content {
    position: relative;
    z-index: var(--z-content);
    text-align: center;
    padding: var(--sp-8);
    max-width: 800px;
}

.showcase__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--neon-violet);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--sp-5);
}

.showcase__title {
    font-size: clamp(2.5rem, 6vw, var(--text-6xl));
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: var(--sp-5);
    letter-spacing: -0.03em;
}

.showcase__title em {
    color: var(--neon-violet);
    display: inline;
}

.showcase__subtitle {
    font-size: var(--text-lg);
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto var(--sp-8);
    font-weight: 300;
}

/* ── Vignette ──────────────────────────────────────────────── */
.showcase__vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 2;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .showcase {
        min-height: 70vh;
    }

    .showcase__content {
        padding: var(--sp-4);
    }

    .showcase__title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}
