/* --- Metrics Section --- */
.recilens-metrics-section {
    padding: 80px 5%;
    background: #060610; /* A slightly different dark shade to separate it */
}

.recilens-metrics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.recilens-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.recilens-metric-card {
    background: linear-gradient(145deg, #1e1e32, #121221);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.recilens-metric-value {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--recilens-text-light, #e0e0ff);
    line-height: 1;
    margin-bottom: 10px;
}

.recilens-metric-label {
    font-size: 1.1rem;
    color: var(--recilens-text-medium, #a0a0c0);
}

/* --- Tech Stack Scroller --- */
.recilens-tech-stack-wrapper {
    text-align: center;
}

.recilens-tech-stack-title {
    font-size: 1.5rem;
    color: var(--recilens-text-medium, #a0a0c0);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.recilens-tech-scroller {
    width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.recilens-tech-scroller-inner {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: recilens_scroll 40s linear infinite;
}

.recilens-tech-scroller-inner img {
    height: 50px;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.recilens-tech-scroller-inner:hover img {
    filter: grayscale(100%) opacity(0.3);
}

.recilens-tech-scroller-inner img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes recilens_scroll {
    to {
        transform: translateX(calc(-50% - 30px)); /* Half the width minus half the gap */
    }
}
