.platform-statistics { padding-bottom: 86px; }

.platform-statistics__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.platform-statistic {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 360px;
    grid-template-rows: auto minmax(150px, 1fr) auto;
    padding: clamp(20px, 3vw, 34px);
    overflow: hidden;
    border: 1px solid rgba(114, 178, 137, .28);
    background:
        radial-gradient(circle at 10% 0, rgba(0, 255, 117, .11), transparent 33%),
        linear-gradient(145deg, #07110b, #020604 74%);
    color: #eaf4ed;
    text-decoration: none;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.platform-statistic:hover {
    border-color: #00ff75;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .38), inset 0 0 42px rgba(0, 255, 117, .035);
    transform: translateY(-3px);
}

.platform-statistic__head {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
}

.platform-statistic__head img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(254, 212, 43, .16));
}

.platform-statistic__head div { display: grid; min-width: 0; }
.platform-statistic__head span { color: #b9cbbf; font: 700 13px/1.2 Manrope, sans-serif; }
.platform-statistic__head strong {
    margin-top: 5px;
    color: #f0fff4;
    font: 900 clamp(34px, 5.3vw, 72px)/.88 Unbounded, sans-serif;
    letter-spacing: -.075em;
}
.platform-statistic__head small { margin-top: 8px; color: #7ea28a; font: 600 11px/1.2 Manrope, sans-serif; }

.platform-statistic__chart { min-width: 0; min-height: 150px; margin-top: 18px; }
.platform-statistic__chart svg { display: block; width: 100%; height: 100%; overflow: visible; }
.platform-statistic__grid-line { stroke: rgba(0, 255, 117, .1); stroke-width: 1; vector-effect: non-scaling-stroke; }
.platform-statistic__area { fill: url(#platform-statistic-area); opacity: .52; }
.platform-statistic__line {
    fill: none;
    stroke: #00ff75;
    stroke-linecap: square;
    stroke-linejoin: round;
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 6px rgba(0, 255, 117, .44));
}
.platform-statistic__point { fill: #eaffef; stroke: #00ff75; stroke-width: 2; vector-effect: non-scaling-stroke; }

.platform-statistic__foot {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding-top: 13px;
    border-top: 1px solid rgba(0, 255, 117, .12);
    color: #6e8d78;
    font: 600 9px/1.25 ui-monospace, Consolas, monospace;
}
.platform-statistic__foot span:nth-child(2) { overflow: hidden; text-align: center; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 820px) {
    .platform-statistics__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .platform-statistics { padding-bottom: 62px; }
    .platform-statistic { min-height: 310px; padding: 19px; }
    .platform-statistic__head { gap: 14px; }
    .platform-statistic__head img { width: 43px; height: 43px; flex-basis: 43px; }
    .platform-statistic__head strong { font-size: clamp(30px, 10vw, 48px); }
    .platform-statistic__chart { min-height: 130px; }
    .platform-statistic__foot { grid-template-columns: auto 1fr auto; gap: 6px; font-size: 8px; }
}
