/* ============================================================
   ISW A/B HERO TEST — Styles
   Variante A: Original (kein extra CSS nötig, Theme übernimmt)
   Variante B: CTA Hero
   ============================================================ */

/* --- Shared: Beide Varianten initial versteckt --- */
.isw-ab-variant {
    display: none;
}

/* --- Debug Badge --- */
#isw-ab-badge {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 99999;
    background: rgba(6, 8, 20, 0.92);
    border: 1px solid #7c3aed;
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    font-family: monospace;
    font-size: 0.72rem;
    color: #c084fc;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

/* ============================================================
   VARIANTE B — CTA Hero
   Passend zum ISW Dark-Theme (--accent, --cyan, --white etc.)
   ============================================================ */

#isw-hero-b .isw-hero-b-inner {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    /* Passt zur ISW Farbgebung */
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,0.12) 0%, transparent 70%),
                var(--bg, #0a0a14);
}

/* Gitter-Overlay */
#isw-hero-b .isw-hb-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
}

/* Glüh-Punkt */
#isw-hero-b .isw-hb-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: isw-hb-pulse 5s ease-in-out infinite;
}

@keyframes isw-hb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.8; }
    50%       { transform: translate(-50%, -50%) scale(1.12); opacity: 1;   }
}

/* Content-Wrapper */
#isw-hero-b .isw-hb-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

/* Eyebrow */
#isw-hero-b .isw-hb-eyebrow {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent, #c084fc);
    border: 1px solid rgba(192,132,252,0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    animation: isw-hb-fadein 0.7s ease both;
}

/* Headline */
#isw-hero-b .isw-hb-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.0;
    color: var(--white, #f0eeff);
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    animation: isw-hb-fadein 0.7s 0.15s ease both;
}

#isw-hero-b .isw-hb-accent {
    font-style: normal;
    background: linear-gradient(135deg, var(--cyan, #06b6d4), var(--accent, #c084fc));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
#isw-hero-b .isw-hb-sub {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(240,238,255,0.72);
    max-width: 580px;
    margin: 0 auto 2.25rem;
    animation: isw-hb-fadein 0.7s 0.3s ease both;
}

/* CTA Buttons */
#isw-hero-b .isw-hb-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: isw-hb-fadein 0.7s 0.45s ease both;
}

#isw-hero-b .isw-hb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--cyan, #06b6d4), var(--accent, #7c3aed));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 28px rgba(124,58,237,0.35);
}

#isw-hero-b .isw-hb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(124,58,237,0.55);
}

#isw-hero-b .isw-hb-arrow {
    transition: transform 0.2s ease;
}

#isw-hero-b .isw-hb-btn-primary:hover .isw-hb-arrow {
    transform: translateX(4px);
}

#isw-hero-b .isw-hb-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(240,238,255,0.8);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
}

#isw-hero-b .isw-hb-btn-ghost:hover {
    border-color: rgba(255,255,255,0.45);
    color: #fff;
}

#isw-hero-b .isw-hb-play {
    font-size: 10px;
}

/* Trust Line */
#isw-hero-b .isw-hb-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(240,238,255,0.55);
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    animation: isw-hb-fadein 0.7s 0.6s ease both;
}

/* Social Proof (wie Variante A) */
#isw-hero-b .isw-hb-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    animation: isw-hb-fadein 0.7s 0.75s ease both;
}

#isw-hero-b .isw-hb-avatars {
    display: flex;
}

#isw-hero-b .isw-hb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg, #0a0a14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-left: -10px;
    color: #fff;
}

#isw-hero-b .isw-hb-avatar:first-child { margin-left: 0; }
#isw-hero-b .isw-hb-av-a { background: linear-gradient(135deg, #7c3aed, #a855f7); }
#isw-hero-b .isw-hb-av-b { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
#isw-hero-b .isw-hb-av-c { background: linear-gradient(135deg, #f59e0b, #ef4444); }

#isw-hero-b .isw-hb-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 2px;
}

#isw-hero-b .isw-hb-proof-text {
    font-size: 12px;
    color: rgba(240,238,255,0.6);
}

#isw-hero-b .isw-hb-proof-text strong {
    color: rgba(240,238,255,0.85);
}

/* Fade-in Animation */
@keyframes isw-hb-fadein {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* Mobile */
@media (max-width: 640px) {
    #isw-hero-b .isw-hb-actions {
        flex-direction: column;
        align-items: center;
    }

    #isw-hero-b .isw-hb-trust {
        gap: 0.75rem;
        font-size: 11px;
    }
}
