/* ═══════════════════════════════════════════════════════
   JURA — INTRO GATE
   The full-screen opening gate and emblem reveal.
═══════════════════════════════════════════════════════ */

#intro-gate {
    position: fixed;
    inset: 0;
    background-color: #000000;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

#intro-emblem {
    width: 300px;
    height: auto;
    opacity: 0;
}

@keyframes emblem-reveal {
    0%   { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}