/* 
    EASYBOOST TOOLS "NEURAL STACK" v19.0
    Concept: Micro-Component Grid, System Health UI, High Density
    Prefix: .eb-st- (Stack)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Syne:wght@700;800&display=swap');

.eb-st-wrapper {
    background-color: #020204;
    padding: 100px 0;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.eb-st-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.eb-st-header {
    text-align: center;
    margin-bottom: 70px;
}

.eb-st-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.eb-st-header span {
    background: linear-gradient(90deg, #FF2E63, #FF9933, #00C2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- THE MICRO-GRID --- */
.eb-st-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Small columns */
    gap: 20px;
}

.eb-st-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

/* Hover Effect: Vibrant Border Glow */
.eb-st-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Live Status Dot */
.eb-st-status {
    position: absolute;
    top: 20px; right: 20px;
    display: flex; align-items: center; gap: 6px;
}

.eb-st-dot {
    width: 6px; height: 6px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25d366;
    animation: stPulse 2s infinite;
}

@keyframes stPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.eb-st-icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    transition: 0.4s;
}

.eb-st-card:hover .eb-st-icon {
    transform: scale(1.2) rotate(10deg);
}

.eb-st-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.eb-st-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Mini Progress/Load Bar */
.eb-st-bar-wrap {
    width: 100%; height: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px; overflow: hidden;
}

.eb-st-bar-fill {
    height: 100%;
    width: 30%; /* Start state */
    background: #00C2FF;
    transition: width 1s ease-in-out;
}

.eb-st-card:hover .eb-st-bar-fill { width: 100%; }

/* Custom Colors for Cards */
.card-pink:hover { border-color: #FF2E63; }
.card-pink .eb-st-bar-fill { background: #FF2E63; }
.card-pink .eb-st-icon { color: #FF2E63; }

.card-orange:hover { border-color: #FF9933; }
.card-orange .eb-st-bar-fill { background: #FF9933; }
.card-orange .eb-st-icon { color: #FF9933; }

.card-cyan:hover { border-color: #00C2FF; }
.card-cyan .eb-st-bar-fill { background: #00C2FF; }
.card-cyan .eb-st-icon { color: #00C2FF; }

/* Mobile */
@media (max-width: 1024px) {
    .eb-st-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .eb-st-grid { grid-template-columns: 1fr; }
}