/* Hero stat bar — mobile-first, advanced cards on dark hero background */
.hero-stat-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
    margin: 1.5rem 0 0.75rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(0.5rem, 3vw, 1rem);
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 640px) {
    .hero-stat-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem 1.25rem;
        margin: 1.75rem 0 1rem;
        max-width: 600px;
    }
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.hero-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.hero-stat-item:hover::before {
    opacity: 1;
}
.hero-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white, #fff);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .hero-stat-value { font-size: 1.375rem; }
}
.hero-stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.35rem;
}
@media (min-width: 640px) {
    .hero-stat-label { font-size: 0.75rem; }
}
.hero-stat-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
}
.hero-stat-disclaimer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.hero-stat-disclaimer a:hover {
    color: rgba(255, 255, 255, 0.95);
}
.page-hero .hero-stat-disclaimer { margin-bottom: 1rem; }
