.wlf-hero-2f6b6360 {
    --neon-1: rgba(196, 75, 203, 0.4);
    --neon-2: rgba(75, 120, 203, 0.25);
    position: relative;
    background-color: #11111f;
    color: #F1F2F4;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

/* ── Neon Background ── */
.wlf-neon-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.8;
}

.neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: wlf-float 20s infinite ease-in-out alternate;
}

.orb-1 {
    display: none;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--neon-2);
    bottom: -200px;
    right: 5%;
    animation-duration: 25s;
}


@keyframes wlf-float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes wlf-scan {
    from { transform: rotate(-15deg) translateX(-20%); }
    to { transform: rotate(-15deg) translateX(20%); }
}

/* ── Content Inner ── */
.wlf-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* ── Top Bar ── */
.wlf-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8F95A3;
    font-weight: 500;
}

.wlf-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wlf-dot {
    width: 8px;
    height: 8px;
    background-color: #61CE70;
    border-radius: 50%;
    box-shadow: 0 0 8px #61CE70;
    animation: wlf-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes wlf-dot-pulse {
    0%, 100% { box-shadow: 0 0 4px 1px rgba(97, 206, 112, 0.6); transform: scale(1); }
    50% { box-shadow: 0 0 12px 4px rgba(97, 206, 112, 0.9); transform: scale(1.3); }
}

/* ── Main Area ── */
.wlf-hero-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    max-width: 900px;
}

.wlf-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8F95A3;
    font-weight: 500;
    margin-bottom: 24px;
}

.wlf-square {
    width: 8px;
    height: 8px;
    background-color: #C44BCB; /* Fallback */
    background-color: var(--neon-1);
}

.wlf-hero-2f6b6360 .wlf-hero-headline {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
    color: #ffffff !important;
}

.wlf-hl {
    color: #C44BCB;
    position: relative;
    display: inline-block;
}

.wlf-hero-desc {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: #DCDEE3;
    max-width: 640px;
}

.wlf-hero-desc strong {
    color: #FFF;
    font-weight: 600;
}

/* ── Stats Row ── */
.wlf-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    margin-top: auto;
}

.wlf-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wlf-stat-val {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 500;
    color: #FFF;
    line-height: 1;
}

.wlf-stat-lbl {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8F95A3;
}

@media (max-width: 992px) {
    .wlf-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .wlf-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .wlf-stats-row {
        grid-template-columns: 1fr;
    }
}

/* legal-hero-match: align with Team/About heroes */
.wlf-top-bar { display: none !important; }
.wlf-hero-2f6b6360 { min-height: auto !important; }
.wlf-hero-main { padding: 110px 0 90px !important; }
.wlf-hero-2f6b6360 .wlf-hero-headline { font-size: clamp(38px, 4.5vw, 60px) !important; font-weight: 600 !important; }

/* bg-ink-force: brand ink to match Team/About */
.wlf-hero-2f6b6360 { background-color: #11111F !important; }
