/* ============================================================
    MISSION-VISION PAGE STYLES
    All rules are scoped under .mv-page to prevent bleed-in
    or bleed-out with other pages / global stylesheets.
============================================================ */

.mv-page {
    /* Design tokens — local to this page */
    --mv-accent:        #6846c6;
    --mv-accent-dark:   #4f34a3;
    --mv-accent-light:  #ede8fb;
    --mv-ink:           #0e0e12;
    --mv-ink-2:         #2c2c38;
    --mv-ink-3:         #6b6b7d;
    --mv-surface:       #f7f7fa;
    --mv-border:        rgba(0,0,0,.08);
    --mv-white:         #ffffff;
    --mv-max-w:         1160px;
    --mv-gutter:        clamp(24px, 5vw, 64px);
    --mv-ease:          cubic-bezier(.22,1,.36,1);

    font-family: 'Inter', sans-serif;
    color: var(--mv-ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.mv-page a { text-decoration: none; color: inherit; }
.mv-page img { display: block; max-width: 100%; }

/* ── SHARED LAYOUT ── */
.mv-page .mv-section {
    padding: 96px var(--mv-gutter);
}
.mv-page .mv-container {
    max-width: var(--mv-max-w);
    margin: 0 auto;
}
.mv-page .mv-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mv-accent);
    margin-bottom: 14px;
}
.mv-page .mv-section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--mv-ink);
    line-height: 1.15;
}

/* ── MISSION / VISION BLOCK ── */
.mv-page .mvblock-section {
    background: #fff;
}
.mv-page .mvblock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 52px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--mv-border);
}
.mv-page .mvblock-card {
    padding: 52px 48px;
    background: var(--mv-surface);
    position: relative;
}
.mv-page .mvblock-card:first-child {
    background: #fff;
}
.mv-page .mvblock-card-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mv-accent);
    margin-bottom: 20px;
}
.mv-page .mvblock-card-label .material-icons-round { font-size: 16px; }
.mv-page .mvblock-card-title {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: var(--mv-ink);
    line-height: 1.2;
    margin-bottom: 16px;
}
.mv-page .mvblock-card-body {
    font-size: .97rem;
    color: var(--mv-ink-3);
    line-height: 1.82;
}

/* ── PRINCIPLES ── */
.mv-page .mvprinciples-section {
    background: var(--mv-surface);
}
.mv-page .mvprinciples-intro {
    max-width: 600px;
    margin-bottom: 56px;
}
.mv-page .mvprinciples-intro .mv-section-title {
    margin-top: 10px;
}
.mv-page .mvprinciples-intro p {
    margin-top: 14px;
    font-size: .97rem;
    color: var(--mv-ink-3);
    line-height: 1.8;
}
.mv-page .mvprinciples-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mv-page .mvprinciple-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    background: #fff;
    overflow: hidden;
}
.mv-page .mvprinciple-item:first-child { border-radius: 14px 14px 0 0; }
.mv-page .mvprinciple-item:last-child  { border-radius: 0 0 14px 14px; }
.mv-page .mvprinciple-side {
    padding: 36px 32px;
    background: var(--mv-ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.mv-page .mvprinciple-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(104,70,198,.25) 0%, transparent 70%);
}
.mv-page .mvprinciple-num {
    font-size: 3rem;
    color: rgba(255,255,255,.12);
    position: relative;
    z-index: 1;
    line-height: 1;
}
.mv-page .mvprinciple-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    position: relative;
    z-index: 1;
    margin-top: 6px;
}
.mv-page .mvprinciple-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--mv-border);
}
.mv-page .mvprinciple-item:last-child .mvprinciple-body {
    border-bottom: none;
}
.mv-page .mvprinciple-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--mv-ink);
}
.mv-page .mvprinciple-desc {
    font-size: .9rem;
    color: var(--mv-ink-3);
    line-height: 1.78;
}

/* ── COMMITMENTS ── */
.mv-page .mvcommitments-section {
    background: #fff;
}
.mv-page .mvcommitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}
.mv-page .mvcommitment-card {
    padding: 36px 32px;
    border: 1px solid var(--mv-border);
    border-radius: 16px;
    transition: border-color .25s, box-shadow .25s;
}
.mv-page .mvcommitment-card:hover {
    border-color: rgba(104,70,198,.25);
    box-shadow: 0 8px 32px rgba(104,70,198,.07);
}
.mv-page .mvcommitment-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--mv-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.mv-page .mvcommitment-icon .material-icons-round {
    color: var(--mv-accent);
    font-size: 22px;
}
.mv-page .mvcommitment-title {
    font-size: .97rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--mv-ink);
}
.mv-page .mvcommitment-body {
    font-size: .88rem;
    color: var(--mv-ink-3);
    line-height: 1.75;
}

/* ── CTA ── */
.mv-page .mvcta-section {
    padding: 80px var(--mv-gutter);
    background: var(--mv-ink);
    position: relative;
    overflow: hidden;
}
.mv-page .mvcta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 120% at 70% 50%, rgba(104,70,198,.3) 0%, transparent 60%);
    pointer-events: none;
}
.mv-page .mvcta-inner {
    position: relative;
    z-index: 1;
    max-width: var(--mv-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.mv-page .mvcta-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
}
.mv-page .mvcta-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 10px;
}
.mv-page .mvcta-desc {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    max-width: 420px;
}
.mv-page .mvcta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.mv-page .mv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--mv-accent);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    border-radius: 7px;
    white-space: nowrap;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.mv-page .mv-btn-primary:hover {
    background: var(--mv-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(104,70,198,.4);
}
.mv-page .mv-btn-primary .material-icons-round { font-size: 16px; }
.mv-page .mv-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1.5px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    font-weight: 600;
    border-radius: 7px;
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s;
}
.mv-page .mv-btn-ghost:hover {
    border-color: rgba(255,255,255,.4);
    color: #fff;
    background: rgba(255,255,255,.05);
}

/* ── SCROLL REVEAL ── */
.mv-page .mv-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--mv-ease), transform .6s var(--mv-ease);
}
.mv-page .mv-reveal.mv-visible {
    opacity: 1;
    transform: none;
}
.mv-page .mv-reveal[data-mvd="1"] { transition-delay: .08s; }
.mv-page .mv-reveal[data-mvd="2"] { transition-delay: .16s; }
.mv-page .mv-reveal[data-mvd="3"] { transition-delay: .24s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .mv-page .mvblock-grid         { grid-template-columns: 1fr; }
    .mv-page .mvcommitments-grid   { grid-template-columns: repeat(2,1fr); }
    .mv-page .mvprinciple-item     { grid-template-columns: 1fr; }
    .mv-page .mvprinciple-side     {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    }
    .mv-page .mvprinciple-num      { font-size: 2rem; }
    .mv-page .mvcta-inner          { flex-direction: column; align-items: flex-start; gap: 28px; }
    .mv-page .mvcta-actions        { flex-direction: column; width: 100%; }
    .mv-page .mv-btn-primary,
    .mv-page .mv-btn-ghost         { width: 100%; justify-content: center; }
}
@media (max-width: 680px) {
    .mv-page .mvcommitments-grid   { grid-template-columns: 1fr; }
}
