/* ============================================
   statystyki-ciemne — dark tech z kartami glass
   ============================================ */

.statystyki-ciemne {
    background: #0c1a2e;
    position: relative;
    overflow: hidden;
}

/* Subtelna siatka dot-pattern w tle */
.statystyki-ciemne__siatka {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(56,189,248,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Gradient overlay — ciemniejszy po bokach */
.statystyki-ciemne::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%,
            rgba(14,40,80,0.0) 0%,
            rgba(12,26,46,0.60) 100%),
        linear-gradient(180deg, rgba(12,26,46,0.3) 0%, transparent 40%,
            transparent 60%, rgba(12,26,46,0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

/* ---- Eyebrow ---- */
.statystyki-ciemne__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(168,196,229,0.75);
    display: flex;
    align-items: center;
    gap: 10px;
}
.statystyki-ciemne__eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(168,196,229,0.55);
}

/* ---- Tytuł ---- */
.statystyki-ciemne__tytul {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: white;
    margin: 0;
}

/* ---- Karta liczby — glass silver ---- */
.statystyki-ciemne__karta {
    background: linear-gradient(
        135deg,
        rgb(199, 209, 212) 0%,
        rgb(133, 159, 168) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    border: 1px solid rgba(180,210,240,0.22);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 4px 24px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

/* Narożniki jak w serie-produktow */
.statystyki-ciemne__karta::before,
.statystyki-ciemne__karta::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(56,189,248,0.45);
    border-style: solid;
    pointer-events: none;
}
.statystyki-ciemne__karta::before {
    top: 8px; left: 8px;
    border-width: 1.5px 0 0 1.5px;
    border-top-left-radius: 3px;
}
.statystyki-ciemne__karta::after {
    bottom: 8px; right: 8px;
    border-width: 0 1.5px 1.5px 0;
    border-bottom-right-radius: 3px;
}

/* ---- Liczba + suffix ---- */
.statystyki-ciemne__liczba-wrap {
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-wrap: wrap;
}

.statystyki-ciemne__liczba {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: black;
}

.statystyki-ciemne__suffix {
    font-size: 0.85rem;
    font-weight: 500;
    color: black;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-left: 1px;
}

/* ---- Opis pod liczbą ---- */
.statystyki-ciemne__opis {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0B0B0B;
    line-height: 1.4;
}

/* ---- Disclaimer ---- */
.statystyki-ciemne__disclaimer {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: rgba(168,196,229,0.40);
    margin: 0;
}

/* ---- Responsywność ---- */
@media (max-width: 1199.98px) {
    .statystyki-ciemne__liczba { font-size: 1.8rem; }
}
@media (max-width: 991.98px) {
    .statystyki-ciemne__tytul { font-size: 1.7rem; }
}
@media (max-width: 767.98px) {
    .statystyki-ciemne__liczba { font-size: 1.6rem; }
    .statystyki-ciemne__karta { padding: 0.75rem 1rem !important; }
}
