.m32_intro_stats {
    background: #383737;
    color: #d4d4d4;
    padding: 110px 0 110px;
}

/* Header — title left, body right */
.m32_header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.m32_topline {
    margin: 0 0 0.6em;
    font-family: 'Nexa-Black-Italic', 'Nexa', system-ui, sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: clamp(16px, 1.4vw, 22px);
    color: #6b6b6b;
    text-transform: uppercase;
}
.m32_topline--bottom { margin: 0.6em 0 0; }

.m32_title {
    margin: 0;
    font-family: 'Nexa-Black-Italic', 'Nexa', system-ui, sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: clamp(28px, 3.2vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #ffffff;
}

.m32_title strong,
.m32_title em,
.m32_title .m32_title_accent {
    color: #d4d4d4;
    font-weight: inherit;
    font-style: italic;
}

.m32_header_text {
    max-width: 590px;
    font-family: 'Nexa-Regular', 'Nexa', system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #d4d4d4;
}
.m32_header_text p { margin: 0 0 0.6em; }
.m32_header_text p:last-child { margin-bottom: 0; }

/* Stats grid — N columns with vertical dividers between them, horizontal
   dividers above/below the row */
.m32_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(212, 212, 212, 0.15);
    border-bottom: 1px solid rgba(212, 212, 212, 0.15);
}

.m32_stats[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.m32_stats[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.m32_stats[data-count="1"] { grid-template-columns: 1fr; }

.m32_stat {
    padding: 56px 36px 56px;
    border-left: 1px solid rgba(212, 212, 212, 0.15);
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 240px;
    box-sizing: border-box;
}

.m32_stat:first-child {
    border-left: 0;
    padding-left: 0;
}
.m32_stat:last-child { padding-right: 0; }

.m32_stat_top {
    margin: 0;
    line-height: 1;
    /* Reserve room for a 2-line label (50px number + 25px label wrap line)
       so the description below starts at the same y across all stats. */
    min-height: 75px;
}

.m32_stat_prefix,
.m32_stat_number,
.m32_stat_suffix {
    font-family: 'Nexa-Black-Italic', 'Nexa', system-ui, sans-serif;
    font-style: italic;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.m32_stat_number,
.m32_stat_prefix,
.m32_stat_suffix {
    font-size: 50px;
    letter-spacing: -0.02em;
}

/* Subtle rainbow glow behind the stat number — same 6-color palette as the
   m30 featured card halo, blurred into a soft pill behind the digits.
   The number text sits on top via z-index. */
.m32_stat_number {
    position: relative;
    display: inline-block;
    z-index: 0;
    isolation: isolate;
}

.m32_stat_number::before {
    content: '';
    position: absolute;
    inset: -18% -25%;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(20,  94, 168, 0.35) 0%,
        rgba(235, 127, 177, 0.35) 20%,
        rgba(126, 202, 212, 0.35) 40%,
        rgba(124, 118,  64, 0.35) 60%,
        rgba(218, 167,   7, 0.35) 80%,
        rgba(238, 114,  44, 0.35) 100%
    );
    filter: blur(22px);
    border-radius: 9999px;
    pointer-events: none;
}

.m32_stat_label {
    margin-left: 10px;
    font-family: 'Nexa-Black-Italic', 'Nexa', system-ui, sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 22px;
    color: #d4d4d4;
    text-transform: uppercase;
    line-height: 25px;
}

.m32_stat_desc {
    margin: 0;
    font-family: 'Nexa-Regular', 'Nexa', system-ui, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #d4d4d4;
}

@media (max-width: 1100px) {
    .m32_intro_stats { padding: 60px 0 90px; }
    .m32_header { grid-template-columns: 1fr; gap: 32px; }
    .m32_stats,
    .m32_stats[data-count="4"],
    .m32_stats[data-count="3"] {
        grid-template-columns: repeat(2, 1fr);
    }
    .m32_stat {
        border-left: 1px solid rgba(212, 212, 212, 0.15);
        padding: 36px 24px;
    }
    .m32_stat:nth-child(odd) { border-left: 0; padding-left: 0; }
    .m32_stat:nth-child(even) { padding-right: 0; }
    .m32_stat:nth-child(n+3) { border-top: 1px solid rgba(212, 212, 212, 0.15); }
}

@media (max-width: 600px) {
    .m32_intro_stats { padding: 40px 0 70px; }
    .m32_stats,
    .m32_stats[data-count="4"],
    .m32_stats[data-count="3"],
    .m32_stats[data-count="2"] {
        grid-template-columns: 1fr;
    }
    .m32_stat,
    .m32_stat:first-child,
    .m32_stat:last-child {
        border-left: 0;
        padding: 30px 0;
    }
    .m32_stat + .m32_stat {
        border-top: 1px solid rgba(212, 212, 212, 0.15);
    }
}
