:root {
    color-scheme: light;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.count-card {
    display: grid;
    min-height: 132px;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 50px rgba(11, 43, 99, 0.08);
}

.count-number {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: #0b2b63;
    font-variant-numeric: tabular-nums;
}

.count-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
}

.status-pill {
    border: 1px solid rgba(11, 43, 99, 0.16);
    border-radius: 999px;
    background: #ffffff;
    padding: 0.65rem 0.9rem;
}

.showcase-panel {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(11, 43, 99, 0.14);
}

.feature-tile {
    min-height: 126px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: #f8fafc;
    padding: 1rem;
}

.feature-tile span {
    display: inline-grid;
    height: 2rem;
    width: 2rem;
    place-items: center;
    border-radius: 999px;
    background: #e8eef8;
    color: #0b2b63;
    font-size: 0.8rem;
    font-weight: 800;
}

.feature-tile p {
    margin-top: 1rem;
    color: #475569;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .count-card {
        min-height: 112px;
    }
}
