/* ===== MISSIE PAGE ===== */

.missie-body {
    background: white;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.m-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 20px 60px;
    overflow: hidden;
    text-align: center;
}

.m-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, var(--yellow-shadow-focus) 0%, transparent 60%);
    pointer-events: none;
}

.m-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroContentIn 0.7s ease forwards;
}

@keyframes heroContentIn {
    to { opacity: 1; transform: translateY(0); }
}

.m-hero-eyebrow {
    font-family: SNProReg;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.m-hero-h1 {
    font-family: SNProBold;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.m-hero-h1 strong {
    color: var(--yellow);
    font-family: SNProBold;
    position: relative;
}

.m-hero-h1 strong::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(249, 216, 58, 0.2);
    z-index: -1;
}

.m-hero-sub {
    font-family: SNProReg;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    margin: 0 0 36px;
}

.m-arrow-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-std);
    animation: arrowBounce 2s ease-in-out infinite 1.5s;
}

.m-arrow-cta:hover {
    background: black;
    border-color: black;
    color: white;
    transform: translateY(4px);
}

.m-arrow-cta svg { width: 20px; height: 20px; stroke: currentColor; }

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ===== STATEMENT ===== */
.m-statement {
    background: black;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.m-statement-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.m-statement-text {
    font-family: SNProBold;
    font-size: clamp(1.5rem, 3.6vw, 2.4rem);
    color: white;
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.m-statement-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== STORY ===== */
.m-story {
    padding: 100px 20px;
}

.m-story-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.m-story-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.m-story-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.m-story-num {
    font-family: SNProBold;
    font-size: 3rem;
    color: var(--yellow-shadow);
    line-height: 1;
    flex-shrink: 0;
}

.m-story-block h2 {
    font-family: SNProBold;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    color: var(--text-dark);
    margin: 0 0 18px;
    line-height: 1.25;
}

.m-story-block p {
    font-family: SNProReg;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin: 0 0 16px;
}

.m-story-block strong {
    font-family: SNProBold;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: block;
}

/* ===== PILLARS ===== */
.m-pillars {
    background: #fafaf8;
    padding: 100px 20px;
}

.m-pillars-inner { max-width: 1100px; margin: 0 auto; }

.m-pillars-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.m-pillars-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.m-section-label {
    font-family: SNProReg;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    display: block;
    margin-bottom: 16px;
}

.m-pillars-header h2 {
    font-family: SNProBold;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.m-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.m-pillar {
    background: white;
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid #f0f0ec;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.m-pillar.visible {
    opacity: 1;
    transform: translateY(0);
}

.m-pillar:nth-child(1) { transition-delay: 0.05s; }
.m-pillar:nth-child(2) { transition-delay: 0.15s; }
.m-pillar:nth-child(3) { transition-delay: 0.25s; }

.m-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.m-pillar-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.m-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-pillar-icon svg { width: 24px; height: 24px; }

.m-pillar-icon.yellow { background: var(--yellow-light); }
.m-pillar-icon.yellow svg { stroke: var(--text-dark); }
.m-pillar-icon.dark { background: #f0f0f0; }
.m-pillar-icon.dark svg { stroke: var(--text-dark); }

.m-pillar-num {
    font-family: SNProBold;
    font-size: 1.8rem;
    color: rgba(0,0,0,0.07);
}

.m-pillar h3 {
    font-family: SNProBold;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.m-pillar p {
    font-family: SNProReg;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.m-pillar-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease 0.3s;
}

.m-pillar.visible .m-pillar-bar { transform: scaleX(1); }

.m-pillar-bar.yellow { background: var(--yellow); }
.m-pillar-bar.dark { background: black; }

/* ===== NUMBERS ===== */
.m-numbers {
    background: black;
    padding: 70px 20px;
}

.m-numbers-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.m-numbers-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.m-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.m-stat-num {
    font-family: SNProBold;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 10px;
}

.m-stat-unit {
    font-family: SNProReg;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--yellow);
}

.m-stat-label {
    font-family: SNProReg;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}

.m-stat-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ===== CTA ===== */
.m-welcome {
    background: var(--yellow);
    padding: 90px 20px;
    text-align: center;
}

.m-welcome-inner {
    max-width: 560px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.m-welcome-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.m-welcome-inner h2 {
    font-family: SNProBold;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text-dark);
    margin: 0 0 14px;
    line-height: 1.2;
}

.m-welcome-inner p {
    font-family: SNProReg;
    font-size: 1.05rem;
    color: rgba(0,0,0,0.65);
    line-height: 1.6;
    margin: 0 0 36px;
}

.m-welcome-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.m-btn-primary {
    background: black;
    color: white;
    font-family: SNProBold;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-std);
}

.m-btn-primary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.m-btn-secondary {
    background: transparent;
    color: black;
    font-family: SNProBold;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(0,0,0,0.25);
    transition: var(--transition-std);
}

.m-btn-secondary:hover {
    background: rgba(0,0,0,0.08);
    border-color: black;
    transform: translateY(-2px);
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .m-hero { min-height: 60vh; padding: 130px 20px 50px; }

    .m-statement { padding: 60px 20px; }

    .m-story { padding: 60px 20px; }

    .m-story-block {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .m-story-num { font-size: 2.2rem; }

    .m-pillars { padding: 60px 20px; }

    .m-pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .m-numbers-inner {
        flex-direction: column;
        gap: 30px;
    }

    .m-stat-line {
        width: 60px;
        height: 1px;
    }

    .m-welcome { padding: 60px 20px; }

    .m-welcome-btns { flex-direction: column; align-items: center; }

    .m-btn-primary, .m-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
