body.mission-body {
    background: #ffffff;
    color: #141414;
}

body.mission-body a {
    color: inherit;
    text-decoration: none;
}

body.mission-body a.cta-button,
body.mission-body a.cta-button:visited {
    color: #ffffff;
}

.page-wrapper {
    position: relative;
    isolation: isolate;
    padding-bottom: 5rem;
}

.hero-section {
    position: relative;
    border-radius: 16px;
    padding: clamp(2.5rem, 5vw, 4rem);
    background: #ffffff;
    border: 1px solid #e1e1e1;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.hero-eyebrow {
    letter-spacing: 0.28rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #6f6f6f;
}

.hero-title {
    font-size: clamp(2.75rem, 4vw, 4.25rem);
    line-height: 1.05;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.1rem;
    max-width: 540px;
    color: #2c2c2c;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: #f5f5f5;
    color: #161616;
    font-weight: 600;
    border: 1px solid #d9d9d9;
}

.hero-video-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 0.75rem;
    background: #f8f8f8;
    border: 1px solid #e1e1e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero-video-wrapper video {
    border-radius: 10px;
    width: 100%;
    display: block;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.28rem;
    text-transform: uppercase;
    color: #7f7f7f;
    margin-bottom: 0.75rem;
}

.content-card,
.symbolism-card,
.response-card {
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.content-card h2,
.symbolism-card h2,
.response-card h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.content-card p,
.symbolism-card p,
.response-card p {
    color: #1f1f1f;
    line-height: 1.7;
}

.story-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.story-highlight {
    padding: 1.75rem;
    border-radius: 14px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

.story-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.story-highlight p {
    color: #272727;
}

.symbolism-card img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: #1f1f1f;
}

.list-check li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #d8d8d8;
    color: #111111;
    font-size: 0.85rem;
}

.response-card strong {
    color: #000000;
}

.cta-card {
    position: relative;
    margin-top: 3rem;
    border-radius: 16px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background: #f8f8f8;
    border: 1px solid #dadada;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: 1px solid #1f1f1f;
    background: #111111;
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    background: #ffffff;
    color: #111111;
}

@media (max-width: 991px) {
    .hero-badges {
        gap: 0.75rem;
    }

    .hero-section {
        padding: 2.25rem 1.75rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        align-items: stretch;
    }
}
