/* ── Hero ukryty do zakończenia intro ────────────────────── */
#hero {
    opacity: 0;
    transition: opacity 0.5s ease;
}
#hero.intro-revealed {
    opacity: 1;
}

/* ── Overlay ─────────────────────────────────────────────── */
#klikon-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

/* ── Zawartość ───────────────────────────────────────────── */
#intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* ── Logo ────────────────────────────────────────────────── */
#intro-logo {
    height: clamp(60px, 10vw, 100px);
    width: auto;
    /* Brand gradient: magenta → violet via SVG filter trick —
       używamy hue-rotate + saturate na białym logo */
    filter: brightness(0) invert(1) sepia(1) saturate(8) hue-rotate(270deg) brightness(1.1);
    opacity: 0;
    transform: translateY(10px);
    display: block;
}

/* ── Pasek ───────────────────────────────────────────────── */
#intro-bar-wrap {
    width: min(360px, 70vw);
    height: 3px;
    background: rgba(255, 255, 255, 0.10);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

#intro-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7700ff, #ff00cc);
    box-shadow: 0 0 12px #ff00cc;
    border-radius: 2px;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 767px) {
    #intro-logo {
        height: clamp(48px, 12vw, 72px);
    }
    #intro-bar-wrap {
        width: min(260px, 72vw);
    }
}
