/* ============================================================
   Mission / Vision / Values page (about/purpose)
   ============================================================ */

.mv-block {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}

.mv-container {
    position: relative;
    z-index: 1;
}

/* Oversized ghost numeral behind each statement — editorial accent */
.mv-index {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-weight: 800;
    font-size: clamp(6rem, 14vw, 11rem);
    line-height: 1;
    position: absolute;
    top: -1rem;
    right: 1rem;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.mv-heading {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 16ch;
    margin: 0 auto 1.25rem;
    text-shadow: 1px 1px 1px var(--black, #000000);
}

.mv-body {
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 62ch;
    margin: 0 auto;
}

.mv-mission {
    background: var(--surface, #1c1c1c);
}

.mv-mission .mv-index {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.04);
}

.mv-mission .mv-heading {
    color: var(--text, #ffffff);
}

.mv-mission .mv-body {
    color: var(--text-muted, #a0a0a0);
}

.mv-vision {
    background: var(--gradient-navy-blue, linear-gradient(135deg, #0b1f4b 0%, #1272ba 100%));
}

/* subtle diagonal texture, matches .ih-cta */
.mv-vision::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--texture-diagonal, repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 12px));
    pointer-events: none;
}

.mv-vision .mv-index {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.08);
}

.mv-vision .section-eyebrow {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.65);
}

.mv-vision .mv-heading {
    color: var(--white, #ffffff);
}

.mv-vision .mv-body {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.85);
}


/* ── Values grid (reuses .feature-card / .feature-title / .feature-body) ── */

.values-section {
    position: relative;
    overflow: hidden;
}

.values-section .mv-index {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.04);
}

.value-number {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--brand-primary-light, #2e8fd4);
    margin-bottom: 0.75rem;
}


/* ── Stats bar ────────────────────────────────────────────── */

.stats-bar {
    background: var(--surface-2, #262626);
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
}

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.stat-number {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--brand-primary-light, #2e8fd4);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 1px var(--black, #000000);
}

.stat-label {
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.85rem;
    color: var(--text-muted, #a0a0a0);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    max-width: 22ch;
    margin: 0 auto;
}


/* reduce motion / mobile */
@media (max-width: 575px) {
    .mv-index {
        font-size: 5rem;
    }
}
