/* 
    EASYBOOST "THE QUANTUM LEAP" - v5.0
    Concept: Energy Collision, Kinetic Flow, Zero-Box Design
    Prefix: .ql- (Quantum Leap)
*/

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@800&family=Outfit:wght@200;400;700&display=swap');

.ql-master-wrapper {
    background-color: #010103 !important;
    padding: 150px 0 !important;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* 1. CENTRAL ENERGY BEAM */
.ql-central-beam {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
    z-index: 1;
}

.ql-beam-glow {
    position: absolute;
    top: 0; left: 50%;
    width: 4px; height: 200px;
    background: linear-gradient(to bottom, transparent, #00C2FF, #FF2E63, transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 30px #00C2FF;
    animation: beamTravel 5s infinite linear;
    z-index: 2;
}

@keyframes beamTravel {
    0% { top: -200px; }
    100% { top: 100%; }
}

/* 2. THE NODES (Transformation Points) */
.ql-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 180px; /* Massive spacing for focus */
    position: relative;
    z-index: 10;
}

/* Collision Pulse in Center */
.ql-collision-point {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 40px #fff;
    z-index: 20;
}

.ql-collision-point::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid #00C2FF;
    border-radius: 50%;
    animation: ql-pulse 2s infinite;
}

@keyframes ql-pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* --- 3. LEFT (THE STAGNATION - BEFORE) --- */
.ql-side-before {
    width: 42%;
    text-align: right;
    opacity: 0.4; /* Faded by default */
    transition: 0.5s;
    filter: blur(1px);
}

.ql-node:hover .ql-side-before { opacity: 0.8; filter: blur(0); }

.ql-before-tag {
    font-size: 10px; font-weight: 800; color: #888;
    text-transform: uppercase; letter-spacing: 4px;
    margin-bottom: 20px; display: block;
}

.ql-before-title {
    font-size: 32px; font-weight: 300; color: #fff;
    margin-bottom: 15px;
}

/* --- 4. RIGHT (THE VELOCITY - AFTER) --- */
.ql-side-after {
    width: 42%;
    text-align: left;
    position: relative;
}

.ql-after-tag {
    font-size: 10px; font-weight: 800; color: #00C2FF;
    text-transform: uppercase; letter-spacing: 4px;
    margin-bottom: 20px; display: block;
}

.ql-after-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 42px; font-weight: 800;
    line-height: 1; margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #00C2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Data Particles on Right Side */
.ql-data-stream {
    position: absolute;
    top: 50%; right: -100px;
    width: 200px; height: 100px;
    pointer-events: none;
    z-index: -1;
}

.ql-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: #00C2FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00C2FF;
    animation: particleFly 3s infinite linear;
}

@keyframes particleFly {
    0% { transform: translate(0, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(150px, -50px); opacity: 0; }
}

/* Metric Reveal */
.ql-metric-row {
    display: flex; gap: 30px; margin-top: 30px;
}

.ql-metric-box {
    border-left: 2px solid #FF2E63;
    padding-left: 15px;
}

.ql-metric-val {
    font-family: 'Syncopate'; font-size: 24px; font-weight: 800; color: #fff;
    display: block;
}

.ql-metric-lbl { font-size: 10px; color: #94a3b8; text-transform: uppercase; }

/* Mobile */
@media (max-width: 992px) {
    .ql-central-beam, .ql-beam-glow, .ql-collision-point { display: none; }
    .ql-node { flex-direction: column; text-align: center; gap: 50px; }
    .ql-side-before, .ql-side-after { width: 100%; text-align: center; }
    .ql-metric-row { justify-content: center; }
}