/*
Theme Name: Moonshot Ventures
Theme URI: https://moonshotventures.in
Author: Moonshot Ventures Team
Description: Clean, minimal theme for Moonshot Ventures. Defence innovation focus with navy & ocean blue branding, single drifting moon, mobile responsive.
Version: 3.4.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moonshot-ventures
*/

/* ============================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0e1b2c;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================================
   MOON BACKGROUND — single, hard-sized
   ========================================================================== */
.mv-moon-bg {
    position: fixed;
    top: 90px;
    right: -120px;
    width: 340px;
    height: 340px;
    max-width: 340px;
    max-height: 340px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.25s linear, transform 0.25s linear;
    will-change: transform, opacity;
}
.mv-moon-bg svg {
    width: 340px;
    height: 340px;
    display: block;
}
@media (max-width: 1200px) {
    .mv-moon-bg, .mv-moon-bg svg {
        width: 280px;
        height: 280px;
        max-width: 280px;
        max-height: 280px;
    }
    .mv-moon-bg { right: -100px; }
}
@media (max-width: 768px) {
    .mv-moon-bg {
        top: 70px;
        right: -90px;
        opacity: 0.2;
    }
    .mv-moon-bg, .mv-moon-bg svg {
        width: 240px;
        height: 240px;
        max-width: 240px;
        max-height: 240px;
    }
}

/* ============================================================================
   NAVIGATION
   ========================================================================== */
.mv-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f0f2f5;
}
.mv-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.mv-logo { display: flex; align-items: center; flex-shrink: 0; }
.mv-logo a { display: inline-flex; align-items: center; line-height: 0; }
.mv-logo img {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}
.mv-nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}
.mv-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mv-menu li { list-style: none; }
.mv-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #5f6b7a;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.mv-menu a:hover,
.mv-menu .current-menu-item > a,
.mv-menu .current_page_item > a {
    color: #003466;
    border-bottom-color: #003466;
}
.mv-nav-apply {
    padding: 9px 20px;
    background: linear-gradient(135deg, #003466, #005c8f);
    color: #ffffff !important;
    border-radius: 100px;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 6px 16px rgba(0, 92, 143, 0.28);
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-left: 8px;
}
.mv-nav-apply:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 92, 143, 0.35);
}

/* Mobile menu toggle */
.mv-mobile-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid #dde4ec;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    position: relative;
}
.mv-mobile-toggle .mv-bars,
.mv-mobile-toggle .mv-bars::before,
.mv-mobile-toggle .mv-bars::after {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #003466;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mv-mobile-toggle .mv-bars { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.mv-mobile-toggle .mv-bars::before { content: ''; top: -6px; left: 0; }
.mv-mobile-toggle .mv-bars::after  { content: ''; top: 6px; left: 0; }
.mv-mobile-toggle[aria-expanded="true"] .mv-bars { background: transparent; }
.mv-mobile-toggle[aria-expanded="true"] .mv-bars::before { transform: rotate(45deg); top: 0; }
.mv-mobile-toggle[aria-expanded="true"] .mv-bars::after  { transform: rotate(-45deg); top: 0; }

/* ============================================================================
   LAYOUT
   ========================================================================== */
.mv-home { position: relative; z-index: 2; background: #ffffff; }
.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

/* ============================================================================
   HERO
   ========================================================================== */
.mv-hero {
    padding: 90px 0 110px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.mv-hero-inner {
    max-width: 600px;
    position: relative;
    z-index: 5;
}
.mv-hero-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -2px;
    margin: 0 0 24px;
    color: #003466;
}
.mv-hero-title .mv-line-1 { color: #003466; }
.mv-hero-title .mv-line-2 { color: #005c8f; font-weight: 600; }
.mv-hero-sub {
    font-size: 17px;
    color: #354759;
    margin: 0 0 8px;
    line-height: 1.55;
    max-width: 480px;
}
.mv-hero-desc {
    font-size: 15px;
    color: #8b95a3;
    margin: 0 0 32px;
    line-height: 1.7;
    max-width: 480px;
}
.mv-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================================================
   BUTTONS
   ========================================================================== */
.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    border-radius: 100px;
    border: 1.5px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.mv-btn-primary {
    background: linear-gradient(135deg, #003466, #005c8f);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(0, 92, 143, 0.28);
}
.mv-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 92, 143, 0.35); }
.mv-btn-ghost {
    background: #ffffff;
    color: #003466 !important;
    border-color: #dde4ec;
}
.mv-btn-ghost:hover { border-color: #003466; transform: translateY(-2px); }
.mv-btn-white {
    background: #ffffff;
    color: #003466 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.mv-btn-white:hover { transform: translateY(-2px); }
.mv-btn-outline-white {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
}
.mv-btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: #ffffff; transform: translateY(-2px); }

/* ============================================================================
   SECTIONS
   ========================================================================== */
.mv-section {
    padding: 90px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.mv-section-light { background: rgba(255, 255, 255, 0.55); }
.mv-section-tint { background: rgba(247, 249, 252, 0.62); }
.mv-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.mv-section-title {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 400;
    margin: 0 0 14px;
    letter-spacing: -1.4px;
    color: #0e1b2c;
    line-height: 1.1;
}
.mv-section-title .mv-accent { color: #003466; font-weight: 400; }
.mv-section-desc {
    font-size: 15px;
    color: #5f6b7a;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================================
   GRIDS & CARDS
   ========================================================================== */
.mv-grid { display: grid; gap: 16px; }
.mv-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mv-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.mv-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    padding: 30px 24px;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.mv-card:hover {
    transform: translateY(-4px);
    border-color: #b9c8d6;
    box-shadow: 0 10px 28px rgba(0, 52, 102, 0.10);
}
.mv-card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #003466, #005c8f);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(0, 92, 143, 0.22);
}
.mv-card-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px;
    color: #0e1b2c;
    letter-spacing: -0.3px;
}
.mv-card-desc {
    font-size: 13px;
    color: #5f6b7a;
    line-height: 1.65;
    margin: 0;
}

/* Startup cards */
.mv-startup-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    padding: 26px 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.mv-startup-card:hover {
    transform: translateY(-4px);
    border-color: #b9c8d6;
    box-shadow: 0 10px 28px rgba(0, 52, 102, 0.10);
}
.mv-startup-badge {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #003466, #005c8f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.5px;
    box-shadow: 0 6px 14px rgba(0, 92, 143, 0.22);
}
.mv-startup-name {
    font-size: 13.5px;
    font-weight: 500;
    margin: 0 0 4px;
    color: #0e1b2c;
}
.mv-startup-tag {
    font-size: 11.5px;
    color: #5f6b7a;
    margin: 0;
}

/* Stat cards */
.mv-stat-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    padding: 44px 22px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
}
.mv-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(38px, 6vw, 52px);
    font-weight: 500;
    background: linear-gradient(135deg, #003466, #005c8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
}
.mv-stat-label {
    font-size: 11.5px;
    color: #5f6b7a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ============================================================================
   CTA BAND
   ========================================================================== */
.mv-cta-band {
    padding: 100px 0;
    background: rgba(0, 52, 102, 0.96);
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.mv-cta-band::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    pointer-events: none;
}
.mv-cta-band .mv-container {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.mv-cta-title {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 400;
    margin: 0 0 14px;
    letter-spacing: -1.4px;
    color: #ffffff;
    line-height: 1.1;
}
.mv-cta-title strong { font-weight: 600; }
.mv-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 32px;
    line-height: 1.7;
}
.mv-cta-band-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================================
   FOOTER
   ========================================================================== */
.mv-footer {
    position: relative;
    z-index: 3;
    background: #002347;
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 28px;
}
.mv-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}
.mv-footer-title {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: -0.4px;
}
.mv-footer-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 16px;
}
.mv-footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin: 0 0 12px;
}
.mv-footer-col a {
    display: block;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    padding: 4px 0;
    transition: color 0.2s;
}
.mv-footer-col a:hover { color: #ffffff; }
.mv-social {
    display: flex;
    gap: 8px;
}
.mv-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    transition: background 0.2s;
}
.mv-social a:hover { background: rgba(255, 255, 255, 0.18); }
.mv-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 11.5px;
}

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .mv-container { padding: 0 40px; }
    .mv-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .mv-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mv-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .mv-nav-right {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 18px 24px 24px;
        border-bottom: 1px solid #eef2f7;
        box-shadow: 0 12px 32px rgba(0, 52, 102, 0.08);
        gap: 0;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s, transform 0.25s;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        align-items: stretch;
    }
    .mv-nav-right.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .mv-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }
    .mv-menu li {
        width: 100%;
        border-bottom: 1px solid #eef2f7;
    }
    .mv-menu a {
        display: block;
        padding: 14px 4px;
        font-size: 15px;
        color: #0e1b2c;
        border-bottom: none;
    }
    .mv-nav-apply {
        margin: 14px 0 0;
        justify-content: center;
        width: 100%;
        padding: 13px 22px;
    }
    .mv-container { padding: 0 22px; }
    .mv-hero { padding: 50px 0 60px; }
    .mv-hero-inner { max-width: 100%; }
    .mv-hero-title { letter-spacing: -1.5px; }
    .mv-hero-sub, .mv-hero-desc { max-width: 100%; }
    .mv-section { padding: 50px 0; }
    .mv-cta-band { padding: 60px 0; }
    .mv-section-head { margin-bottom: 32px; }
    .mv-grid-3, .mv-grid-4 { grid-template-columns: 1fr; gap: 14px; }
    .mv-grid-4 .mv-startup-card,
    .mv-startup-card { /* keep startup cards in 2 cols on mobile */ }
    .mv-grid-4:has(.mv-startup-card) { grid-template-columns: repeat(2, 1fr); }
    .mv-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
    .mv-hero-ctas .mv-btn { width: 100%; justify-content: center; }
    .mv-cta-band-ctas { flex-direction: column; align-items: stretch; }
    .mv-cta-band-ctas .mv-btn { width: 100%; justify-content: center; }
    .mv-footer { padding: 50px 0 24px; }
    .mv-footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .mv-container { padding: 0 18px; }
    .mv-grid-4:has(.mv-startup-card) { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .mv-startup-card { padding: 20px 12px; }
}

/* ==========================================================================
   v3.1.1 — Improved hero design + extra padding for all sections + all-device responsive
   ========================================================================== */

/* HERO — better spacing, bigger title, breathing room */
.mv-hero {
    padding: 110px 0 140px !important;
    min-height: 540px;
}
.mv-hero-inner {
    max-width: 620px !important;
}
.mv-hero-title {
    font-size: clamp(44px, 7.5vw, 72px) !important;
    line-height: 0.98 !important;
    letter-spacing: -2.5px !important;
    margin: 0 0 28px !important;
}
.mv-hero-sub {
    font-size: 18px !important;
    margin: 0 0 10px !important;
    max-width: 500px !important;
}
.mv-hero-desc {
    font-size: 15.5px !important;
    margin: 0 0 38px !important;
    max-width: 500px !important;
}
.mv-hero-ctas {
    gap: 14px !important;
}

/* Bigger buttons */
.mv-btn {
    padding: 14px 28px !important;
    font-size: 14.5px !important;
}

/* All sections — generous padding */
.mv-section {
    padding: 100px 0 !important;
}
.mv-section-head {
    margin: 0 auto 64px !important;
}
.mv-section-title {
    font-size: clamp(30px, 4.8vw, 44px) !important;
    margin: 0 0 16px !important;
}
.mv-section-desc {
    font-size: 15.5px !important;
}

/* Cards — more breathing room */
.mv-card {
    padding: 32px 26px !important;
}
.mv-startup-card {
    padding: 28px 18px !important;
}
.mv-stat-card {
    padding: 48px 24px !important;
}

/* CTA band */
.mv-cta-band {
    padding: 110px 0 !important;
}
.mv-cta-title {
    font-size: clamp(30px, 4.8vw, 44px) !important;
    margin: 0 0 16px !important;
}
.mv-cta-sub {
    font-size: 16px !important;
    margin: 0 0 36px !important;
}

/* Footer */
.mv-footer {
    padding: 70px 0 32px !important;
}
.mv-footer-grid {
    margin-bottom: 40px !important;
    gap: 32px !important;
}

/* Container — slightly more padding on desktop */
.mv-container {
    padding: 0 0px !important;
}

/* ─────────── LARGE LAPTOPS (1200–1440px) ─────────── */
@media (max-width: 1440px) {
    .mv-container { padding: 0 56px !important; }
    .mv-hero { padding: 100px 0 120px !important; }
    .mv-section { padding: 90px 0 !important; }
    .mv-cta-band { padding: 100px 0 !important; }
}

/* ─────────── SMALL LAPTOPS / LARGE TABLETS (1024–1200px) ─────────── */
@media (max-width: 1200px) {
    .mv-container { padding: 0 48px !important; }
    .mv-hero { padding: 90px 0 110px !important; min-height: 500px; }
    .mv-hero-title { font-size: clamp(40px, 7vw, 60px) !important; }
    .mv-section { padding: 80px 0 !important; }
    .mv-section-head { margin-bottom: 56px !important; }
    .mv-cta-band { padding: 90px 0 !important; }
    .mv-footer { padding: 60px 0 28px !important; }
    .mv-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ─────────── TABLETS (768–1024px) ─────────── */
@media (max-width: 1024px) {
    .mv-container { padding: 0 40px !important; }
    .mv-hero { padding: 80px 0 100px !important; }
    .mv-hero-inner { max-width: 100% !important; }
    .mv-hero-title { font-size: clamp(38px, 6.5vw, 56px) !important; letter-spacing: -2px !important; }
    .mv-hero-sub, .mv-hero-desc { max-width: 100% !important; }
    .mv-section { padding: 70px 0 !important; }
    .mv-section-head { margin-bottom: 48px !important; }
    .mv-cta-band { padding: 80px 0 !important; }
    .mv-footer-grid { grid-template-columns: 1fr 1fr !important; }
    .mv-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
    .mv-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ─────────── MOBILE (480–768px) ─────────── */
@media (max-width: 768px) {
    .mv-container { padding: 0 24px !important; }
    .mv-mobile-toggle { display: inline-flex !important; align-items: center; justify-content: center; }
    .mv-nav-right {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        flex-direction: column !important;
        padding: 20px 24px 26px !important;
        border-bottom: 1px solid #eef2f7 !important;
        box-shadow: 0 12px 32px rgba(0, 52, 102, 0.08) !important;
        gap: 0 !important;
        transform: translateY(-12px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.25s, transform 0.25s !important;
        max-height: calc(100vh - 64px) !important;
        overflow-y: auto !important;
        align-items: stretch !important;
    }
    .mv-nav-right.is-open {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    .mv-menu {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        align-items: stretch !important;
    }
    .mv-menu li {
        width: 100% !important;
        border-bottom: 1px solid #eef2f7 !important;
    }
    .mv-menu a {
        display: block !important;
        padding: 16px 4px !important;
        font-size: 15px !important;
        color: #0e1b2c !important;
        border-bottom: none !important;
    }
    .mv-nav-apply {
        margin: 16px 0 0 !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 14px 22px !important;
    }
    .mv-hero {
        padding: 60px 0 80px !important;
        min-height: 0 !important;
    }
    .mv-hero-title {
        font-size: clamp(36px, 11vw, 48px) !important;
        letter-spacing: -1.5px !important;
        margin-bottom: 22px !important;
    }
    .mv-hero-sub {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    .mv-hero-desc {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }
    .mv-section { padding: 60px 0 !important; }
    .mv-section-head { margin-bottom: 36px !important; }
    .mv-section-title {
        font-size: clamp(26px, 7vw, 34px) !important;
        letter-spacing: -1px !important;
    }
    .mv-section-desc { font-size: 14px !important; }
    .mv-cta-band { padding: 70px 0 !important; }
    .mv-cta-title {
        font-size: clamp(26px, 7vw, 34px) !important;
        letter-spacing: -1px !important;
    }
    .mv-cta-sub { font-size: 14.5px !important; margin-bottom: 28px !important; }
    .mv-grid-3, .mv-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    /* Keep startups in 2 columns on mobile (better visual) */
    #startups .mv-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .mv-card { padding: 26px 22px !important; }
    .mv-startup-card { padding: 22px 14px !important; }
    .mv-stat-card { padding: 36px 18px !important; }
    .mv-hero-ctas {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .mv-hero-ctas .mv-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 24px !important;
    }
    .mv-cta-band-ctas {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .mv-cta-band-ctas .mv-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    .mv-footer {
        padding: 50px 0 26px !important;
    }
    .mv-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        margin-bottom: 32px !important;
    }
}

/* ─────────── SMALL MOBILE (< 480px) ─────────── */
@media (max-width: 480px) {
    .mv-container { padding: 0 18px !important; }
    .mv-hero { padding: 50px 0 65px !important; }
    .mv-hero-title {
        font-size: clamp(32px, 10vw, 42px) !important;
        letter-spacing: -1.2px !important;
    }
    .mv-section { padding: 50px 0 !important; }
    .mv-card { padding: 22px 18px !important; }
    .mv-startup-card { padding: 20px 12px !important; }
    .mv-startup-badge {
        width: 50px !important;
        height: 50px !important;
        font-size: 14px !important;
    }
    .mv-stat-card { padding: 32px 16px !important; }
    .mv-cta-band { padding: 60px 0 !important; }
}

/* ─────────── EXTRA SMALL MOBILE (< 360px) ─────────── */
@media (max-width: 360px) {
    .mv-container { padding: 0 14px !important; }
    .mv-hero-title { font-size: 28px !important; }
    #startups .mv-grid-4 { gap: 8px !important; }
    .mv-startup-card { padding: 16px 8px !important; }
    .mv-startup-name { font-size: 12px !important; }
    .mv-startup-tag { font-size: 10.5px !important; }
}

/* ==========================================================================
   v3.2.0 — Big hero title (88px) + button arrow icon + bluer hero
   ========================================================================== */

/* Hero title — much bigger and bolder */
.mv-hero-title {
    font-size: clamp(48px, 9vw, 88px) !important;
    line-height: 0.95 !important;
    letter-spacing: -3px !important;
    margin: 0 0 32px !important;
    font-weight: 600 !important;
}
.mv-hero-sub {
    font-size: 20px !important;
    margin: 0 0 12px !important;
    max-width: 520px !important;
    line-height: 1.5 !important;
}
.mv-hero-desc {
    font-size: 16px !important;
    margin: 0 0 44px !important;
    max-width: 520px !important;
    line-height: 1.7 !important;
}
.mv-hero {
    padding: 120px 0 140px !important;
    min-height: 640px;
}
.mv-hero-inner {
    max-width: 680px !important;
}

/* Bigger CTA buttons in hero */
.mv-hero-ctas .mv-btn {
    padding: 15px 30px !important;
    font-size: 15px !important;
}

/* Button arrow icon — replaces ↗ character with clean SVG */
.mv-btn-arrow {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    margin-left: 2px;
}
.mv-btn-arrow svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
    color: currentColor;
}
.mv-nav-apply .mv-btn-arrow {
    width: 14px !important;
    height: 14px !important;
}

/* Tablet adjustments for hero */
@media (max-width: 1200px) {
    .mv-hero-title { font-size: clamp(42px, 7.5vw, 72px) !important; letter-spacing: -2.5px !important; }
    .mv-hero { padding: 100px 0 120px !important; min-height: 540px; }
}

@media (max-width: 1024px) {
    .mv-hero-title { font-size: clamp(40px, 7vw, 64px) !important; letter-spacing: -2px !important; }
    .mv-hero-inner { max-width: 100% !important; }
    .mv-hero-sub, .mv-hero-desc { max-width: 100% !important; }
    .mv-hero { padding: 90px 0 110px !important; min-height: 480px; }
}

@media (max-width: 768px) {
    .mv-hero-title {
        font-size: clamp(38px, 11vw, 52px) !important;
        letter-spacing: -1.5px !important;
        margin-bottom: 24px !important;
    }
    .mv-hero-sub { font-size: 17px !important; margin-bottom: 10px !important; }
    .mv-hero-desc { font-size: 14.5px !important; margin-bottom: 32px !important; }
    .mv-hero { padding: 70px 0 90px !important; min-height: 0 !important; }
    .mv-hero-ctas .mv-btn { padding: 14px 24px !important; }
}

@media (max-width: 480px) {
    .mv-hero-title {
        font-size: clamp(34px, 10vw, 44px) !important;
        letter-spacing: -1.2px !important;
    }
    .mv-hero { padding: 56px 0 70px !important; }
}

/* ==========================================================================
   v3.3.0 — Final polish: nav alignment, mobile fix, moon scroll behavior
   ========================================================================== */

/* === NAV — Perfect alignment of logo + menu + Apply button on one line === */
.mv-nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid #f0f2f5 !important;
}
.mv-nav-inner {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 16px 32px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.mv-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    height: 50px !important;
}
.mv-logo a, .mv-logo .custom-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    height: 50px !important;
}
.mv-logo img,
.mv-logo .custom-logo,
.custom-logo-link img {
    height: 50px !important;
    width: auto !important;
    max-width: 220px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    display: block !important;
}
.mv-nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    flex-shrink: 0 !important;
    height: 50px !important;
}
.mv-menu {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 50px !important;
}
.mv-menu li {
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}
.mv-menu a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #5f6b7a !important;
    text-decoration: none !important;
    padding: 0 0 4px !important;
    border-bottom: 2px solid transparent !important;
    transition: color 0.2s, border-color 0.2s !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}
.mv-menu a:hover,
.mv-menu .current-menu-item > a,
.mv-menu .current_page_item > a {
    color: #003466 !important;
    border-bottom-color: #003466 !important;
}
.mv-nav-apply {
    padding: 10px 22px !important;
    background: linear-gradient(135deg, #003466, #005c8f) !important;
    color: #ffffff !important;
    border-radius: 100px !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 6px 16px rgba(0, 92, 143, 0.28) !important;
    white-space: nowrap !important;
    margin-left: 4px !important;
    height: 40px !important;
    box-sizing: border-box !important;
}
.mv-nav-apply .mv-btn-arrow {
    width: 14px !important;
    height: 14px !important;
}

/* === MOON — Ultra-strong overrides so nothing can hide it === */
html body #mvMoonBg.mv-moon-bg,
html body div#mvMoonBg,
body.home #mvMoonBg,
.mv-home #mvMoonBg {
    position: fixed !important;
    top: 50% !important;
    right: -180px !important;
    left: auto !important;
    bottom: auto !important;
    width: 600px !important;
    height: 600px !important;
    max-width: 600px !important;
    max-height: 600px !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0.32 !important;
    display: block !important;
    visibility: visible !important;
    transform: translateY(-40%) !important;
    transition: opacity 0.25s linear !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
html body #mvMoonBg svg {
    width: 600px !important;
    height: 600px !important;
    max-width: 600px !important;
    max-height: 600px !important;
    display: block !important;
    visibility: visible !important;
}

@media (max-width: 1200px) {
    html body #mvMoonBg.mv-moon-bg,
    html body div#mvMoonBg {
        width: 480px !important;
        height: 480px !important;
        max-width: 480px !important;
        max-height: 480px !important;
        right: -140px !important;
    }
    html body #mvMoonBg svg {
        width: 480px !important;
        height: 480px !important;
        max-width: 480px !important;
        max-height: 480px !important;
    }
}

@media (max-width: 768px) {
    html body #mvMoonBg.mv-moon-bg,
    html body div#mvMoonBg {
        top: 40% !important;
        right: -130px !important;
        width: 320px !important;
        height: 320px !important;
        max-width: 320px !important;
        max-height: 320px !important;
        opacity: 0.18 !important;
        transform: translateY(-30%) !important;
    }
    html body #mvMoonBg svg {
        width: 320px !important;
        height: 320px !important;
        max-width: 320px !important;
        max-height: 320px !important;
    }
}

/* === MOBILE OVERFLOW FIX === */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}
.mv-home, .site-main, main {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* === MOBILE NAV — Better alignment === */
@media (max-width: 1024px) {
    .mv-nav-inner { padding: 14px 24px !important; }
}

@media (max-width: 768px) {
    .mv-nav-inner {
        padding: 12px 18px !important;
    }
    .mv-logo,
    .mv-logo a,
    .mv-logo .custom-logo-link {
        height: 42px !important;
    }
    .mv-logo img,
    .mv-logo .custom-logo,
    .custom-logo-link img {
        height: 42px !important;
        max-height: 42px !important;
        max-width: 170px !important;
    }
    .mv-mobile-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .mv-nav-right {
        position: fixed !important;
        top: 66px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        flex-direction: column !important;
        padding: 20px 24px 26px !important;
        border-bottom: 1px solid #eef2f7 !important;
        box-shadow: 0 12px 32px rgba(0, 52, 102, 0.08) !important;
        gap: 0 !important;
        height: auto !important;
        transform: translateY(-12px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.25s, transform 0.25s !important;
        max-height: calc(100vh - 66px) !important;
        overflow-y: auto !important;
        align-items: stretch !important;
    }
    .mv-nav-right.is-open {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    .mv-menu {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        align-items: stretch !important;
        height: auto !important;
    }
    .mv-menu li {
        width: 100% !important;
        border-bottom: 1px solid #eef2f7 !important;
        height: auto !important;
    }
    .mv-menu a {
        display: block !important;
        padding: 16px 4px !important;
        font-size: 15px !important;
        color: #0e1b2c !important;
        border-bottom: none !important;
        height: auto !important;
    }
    .mv-nav-apply {
        margin: 16px 0 0 !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 14px 22px !important;
        height: auto !important;
    }

    /* Mobile container & hero alignment */
    .mv-container {
        padding: 0 22px !important;
        max-width: 100% !important;
    }
    .mv-hero {
        padding: 60px 0 80px !important;
        text-align: left !important;
    }
    .mv-hero-inner {
        max-width: 100% !important;
        width: 100% !important;
    }
    .mv-hero-title {
        font-size: clamp(36px, 11vw, 52px) !important;
        letter-spacing: -1.5px !important;
        word-wrap: break-word !important;
    }
    .mv-hero-sub,
    .mv-hero-desc {
        max-width: 100% !important;
    }
    .mv-hero-ctas {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .mv-hero-ctas .mv-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* === SAFETY: Hide any leftover Elementor content on homepage === */
body.home .elementor:not(.mv-home .elementor),
body.home div[data-elementor-type]:not(.mv-home div[data-elementor-type]) {
    display: none !important;
}

/* ==========================================================================
   v3.3.2 — Logo/title alignment + section padding + moon scroll JS bridge
   ========================================================================== */

/* === Logo alignment with nav items === */
.mv-nav-inner {
    align-items: center !important;
    min-height: 76px !important;
}
.mv-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}
.mv-logo a,
.mv-logo .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    line-height: 1 !important;
}
.mv-logo img,
.mv-logo .custom-logo,
.custom-logo-link img {
    display: block !important;
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
    max-width: 220px !important;
    object-fit: contain !important;
    vertical-align: middle !important;
}

/* === MORE SECTION PADDING === */
.mv-hero {
    padding: 120px 0 150px !important;
    min-height: 600px !important;
}
.mv-section {
    padding: 110px 0 !important;
}
.mv-section-head {
    margin: 0 auto 64px !important;
}
.mv-cta-band {
    padding: 120px 0 !important;
}
.mv-footer {
    padding: 80px 0 36px !important;
}
.mv-footer-grid {
    margin-bottom: 44px !important;
    gap: 36px !important;
}

/* Card padding boost */
.mv-card {
    padding: 36px 28px !important;
}
.mv-startup-card {
    padding: 30px 18px !important;
}
.mv-stat-card {
    padding: 52px 26px !important;
}

@media (max-width: 1200px) {
    .mv-hero { padding: 100px 0 130px !important; }
    .mv-section { padding: 100px 0 !important; }
    .mv-cta-band { padding: 110px 0 !important; }
    .mv-section-head { margin-bottom: 56px !important; }
    .mv-card { padding: 32px 24px !important; }
    .mv-stat-card { padding: 48px 22px !important; }
}

@media (max-width: 1024px) {
    .mv-hero { padding: 90px 0 110px !important; }
    .mv-section { padding: 90px 0 !important; }
    .mv-cta-band { padding: 100px 0 !important; }
    .mv-section-head { margin-bottom: 50px !important; }
}

@media (max-width: 768px) {
    .mv-nav-inner { min-height: 64px !important; }
    .mv-logo img,
    .mv-logo .custom-logo,
    .custom-logo-link img {
        height: 42px !important;
        max-height: 42px !important;
        max-width: 170px !important;
    }
    .mv-hero { padding: 60px 0 80px !important; min-height: 0 !important; }
    .mv-section { padding: 60px 0 !important; }
    .mv-cta-band { padding: 70px 0 !important; }
    .mv-section-head { margin-bottom: 36px !important; }
    .mv-footer { padding: 56px 0 28px !important; }
    .mv-card { padding: 26px 22px !important; }
    .mv-startup-card { padding: 22px 14px !important; }
    .mv-stat-card { padding: 38px 18px !important; }
}

@media (max-width: 480px) {
    .mv-hero { padding: 50px 0 70px !important; }
    .mv-section { padding: 50px 0 !important; }
    .mv-cta-band { padding: 60px 0 !important; }
    .mv-section-head { margin-bottom: 28px !important; }
}

/* ==========================================================================
   v3.3.3 — About & Programs page styles
   ========================================================================== */

/* Page hero (used on inner pages, smaller than home hero) */
.mv-page { position: relative; z-index: 2; background: #ffffff; }
.mv-page-hero {
    padding: 110px 0 90px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.mv-page-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}
.mv-page-eyebrow,
.mv-section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #005c8f;
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid #d9e3ee;
    border-radius: 100px;
    background: rgba(0, 92, 143, 0.04);
}
.mv-page-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(40px, 6.5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 26px;
    color: #003466;
}
.mv-page-title .mv-accent {
    color: #005c8f;
}
.mv-page-lede {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #5f6b7a;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 720px;
}

/* Feature card (Mission/Vision) */
.mv-feature-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 16px;
    padding: 44px 36px;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.mv-feature-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 92, 143, 0.06), transparent 70%);
    pointer-events: none;
}
.mv-feature-card:hover {
    transform: translateY(-4px);
    border-color: #b9c8d6;
    box-shadow: 0 12px 32px rgba(0, 52, 102, 0.10);
}
.mv-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #003466, #005c8f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(0, 92, 143, 0.28);
    position: relative;
    z-index: 2;
}
.mv-feature-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #0e1b2c;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.mv-feature-desc {
    font-size: 15px;
    color: #5f6b7a;
    line-height: 1.75;
    margin: 0;
}

/* Step card (4-step process) */
.mv-step-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
    position: relative;
    transition: transform 0.25s, border-color 0.25s;
}
.mv-step-card:hover {
    transform: translateY(-4px);
    border-color: #b9c8d6;
}
.mv-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(135deg, #003466, #005c8f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.mv-step-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #0e1b2c;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}
.mv-step-desc {
    font-size: 13px;
    color: #5f6b7a;
    line-height: 1.65;
    margin: 0;
}

/* Program card */
.mv-program-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}
.mv-program-card:hover {
    transform: translateY(-6px);
    border-color: #b9c8d6;
    box-shadow: 0 16px 36px rgba(0, 52, 102, 0.12);
}
.mv-program-card-featured {
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    border-color: #005c8f;
    border-width: 1.5px;
    box-shadow: 0 12px 28px rgba(0, 92, 143, 0.12);
}
.mv-program-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 92, 143, 0.08);
    color: #005c8f;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    align-self: flex-start;
}
.mv-program-badge-featured {
    background: linear-gradient(135deg, #003466, #005c8f);
    color: #fff;
}
.mv-program-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #0e1b2c;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.mv-program-desc {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.7;
    margin: 0 0 22px;
}
.mv-program-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.mv-program-list li {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 13.5px;
    color: #354759;
    line-height: 1.5;
    border-bottom: 1px solid #f0f3f7;
}
.mv-program-list li:last-child { border-bottom: 0; }
.mv-program-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #005c8f;
    font-weight: 600;
}
.mv-program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #003466 !important;
    text-decoration: none;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f3f7;
    transition: color 0.2s, gap 0.2s;
}
.mv-program-link:hover {
    color: #005c8f !important;
    gap: 12px;
}

/* Criteria card */
.mv-criteria-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
}
.mv-criteria-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #003466;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
}
.mv-criteria-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mv-criteria-list li {
    position: relative;
    padding: 10px 0 10px 24px;
    font-size: 14px;
    color: #354759;
    line-height: 1.55;
    border-bottom: 1px solid #f0f3f7;
}
.mv-criteria-list li:last-child { border-bottom: 0; }
.mv-criteria-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 10px;
    color: #005c8f;
    font-weight: 600;
}

/* 2-column grid for feature cards & criteria */
.mv-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Section eyebrow override (when inside .mv-section-head) */
.mv-section-head .mv-section-eyebrow {
    margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .mv-page-hero { padding: 90px 0 70px; }
    .mv-feature-card { padding: 36px 28px; }
    .mv-program-card { padding: 32px 26px; }
}
@media (max-width: 768px) {
    .mv-page-hero { padding: 60px 0 50px; }
    .mv-page-title { letter-spacing: -1.5px; }
    .mv-grid-2 { grid-template-columns: 1fr; gap: 16px; }
    .mv-feature-card { padding: 32px 24px; }
    .mv-program-card { padding: 28px 22px; }
    .mv-criteria-card { padding: 28px 22px; }
    .mv-feature-icon { width: 54px; height: 54px; font-size: 24px; }
    .mv-feature-title { font-size: 20px; }
    .mv-step-num { font-size: 30px; }
}

/* ==========================================================================
   v3.3.7 — Mentor cards + Apply page (cards + forms)
   ========================================================================== */

/* ===== MENTORS GRID ===== */
.mv-mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.mv-mentor-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.mv-mentor-card:hover {
    transform: translateY(-4px);
    border-color: #b9c8d6;
    box-shadow: 0 12px 28px rgba(0, 52, 102, 0.10);
}
.mv-mentor-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003466 0%, #005c8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0, 92, 143, 0.25);
    position: relative;
    overflow: hidden;
}
.mv-mentor-avatar::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}
.mv-mentor-initials {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1;
}
.mv-mentor-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.mv-mentor-name {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    color: #0e1b2c;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.mv-mentor-title {
    font-size: 12.5px;
    color: #5f6b7a;
    line-height: 1.5;
    margin: 0 0 14px;
    min-height: 38px;
}
.mv-mentor-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 92, 143, 0.08);
    color: #005c8f;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .mv-mentors-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .mv-mentors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 480px) {
    .mv-mentors-grid { grid-template-columns: 1fr; gap: 14px; }
    .mv-mentor-card { padding: 24px 20px; }
    .mv-mentor-avatar { width: 72px; height: 72px; }
    .mv-mentor-initials { font-size: 24px; }
}

/* ===== APPLY PAGE — track cards ===== */
.mv-apply-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 4px 16px rgba(0, 52, 102, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 100px;
}
.mv-apply-card:hover {
    transform: translateY(-6px);
    border-color: #b9c8d6;
    box-shadow: 0 16px 36px rgba(0, 52, 102, 0.12);
}
.mv-apply-card-featured {
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    border-color: #005c8f;
    border-width: 1.5px;
    box-shadow: 0 12px 28px rgba(0, 92, 143, 0.12);
}
.mv-apply-icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 22px;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(0, 52, 102, 0.08), rgba(0, 92, 143, 0.04));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv-apply-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #0e1b2c;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.mv-apply-desc {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.7;
    margin: 0 0 22px;
}
.mv-apply-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.mv-apply-list li {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 13.5px;
    color: #354759;
    line-height: 1.5;
    border-bottom: 1px solid #f0f3f7;
}
.mv-apply-list li:last-child { border-bottom: 0; }
.mv-apply-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #005c8f;
    font-weight: 700;
    background: rgba(0, 92, 143, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.mv-apply-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* Evaluation note */
.mv-apply-note {
    margin-top: 48px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(0, 92, 143, 0.04), rgba(0, 52, 102, 0.02));
    border: 1px solid rgba(0, 92, 143, 0.12);
    border-left: 4px solid #005c8f;
    border-radius: 10px;
    font-size: 14px;
    color: #354759;
    line-height: 1.7;
}
.mv-apply-note strong {
    color: #003466;
    font-weight: 600;
}

/* ===== APPLICATION FORMS ===== */
.mv-form-card {
    background: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 18px;
    padding: 44px 40px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0, 52, 102, 0.05);
    scroll-margin-top: 100px;
}
.mv-form-card:last-child { margin-bottom: 0; }

.mv-form-header {
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 24px;
    margin-bottom: 32px;
}
.mv-form-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #003466, #005c8f);
    color: #ffffff;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.mv-form-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #0e1b2c;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.mv-form-desc {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.65;
    margin: 0;
}

.mv-application-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.mv-form-field {
    display: flex;
    flex-direction: column;
}
.mv-form-field label {
    font-size: 13px;
    font-weight: 500;
    color: #354759;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}
.mv-required {
    color: #c0392b;
    margin-left: 2px;
}
.mv-form-field input,
.mv-form-field select,
.mv-form-field textarea {
    font-family: inherit;
    font-size: 14px;
    color: #0e1b2c;
    padding: 12px 14px;
    border: 1px solid #d9e3ee;
    border-radius: 10px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.mv-form-field input:focus,
.mv-form-field select:focus,
.mv-form-field textarea:focus {
    outline: none;
    border-color: #005c8f;
    box-shadow: 0 0 0 3px rgba(0, 92, 143, 0.10);
}
.mv-form-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}
.mv-form-field input::placeholder,
.mv-form-field textarea::placeholder {
    color: #a0aab8;
}
.mv-form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    padding-right: 40px;
}
.mv-form-submit {
    margin-top: 12px;
    align-self: flex-start;
    padding: 14px 32px !important;
    font-size: 14.5px !important;
}

@media (max-width: 768px) {
    .mv-form-row { grid-template-columns: 1fr; gap: 14px; }
    .mv-form-card { padding: 32px 24px; }
    .mv-apply-card { padding: 32px 24px; }
    .mv-apply-icon { width: 64px; height: 64px; font-size: 36px; }
    .mv-form-submit { width: 100%; justify-content: center; }
}

/* ==========================================================================
   v3.3.8 — Mentor photo avatar (overrides initials avatar when photo exists)
   ========================================================================== */
.mv-mentor-avatar.mv-mentor-avatar-photo {
    background: #f1f5f9;
    overflow: hidden;
    padding: 0;
    width: 110px;
    height: 110px;
    box-shadow: 0 8px 20px rgba(0, 92, 143, 0.18);
}
.mv-mentor-avatar.mv-mentor-avatar-photo::after { display: none; }
.mv-mentor-avatar.mv-mentor-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 50%;
}
@media (max-width: 480px) {
    .mv-mentor-avatar.mv-mentor-avatar-photo {
        width: 92px;
        height: 92px;
    }
}

/* ==========================================================================
   v3.3.9 — Contact page (info + form side-by-side) + form-empty fallback
   ========================================================================== */

.mv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.mv-contact-info {
    padding: 16px 0;
}
.mv-contact-info-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #0e1b2c;
    margin: 14px 0 14px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.mv-contact-info-desc {
    font-size: 15px;
    color: #5f6b7a;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 460px;
}
.mv-contact-list {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
}
.mv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eef2f7;
}
.mv-contact-item:last-child { border-bottom: 0; }
.mv-contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 52, 102, 0.08), rgba(0, 92, 143, 0.04));
    color: #005c8f;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv-contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}
.mv-contact-item-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8b95a3;
}
.mv-contact-item-value,
a.mv-contact-item-value {
    font-size: 15px;
    color: #0e1b2c;
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
    transition: color 0.2s;
}
a.mv-contact-item-value:hover {
    color: #005c8f;
}

.mv-contact-social {
    padding-top: 24px;
    border-top: 1px solid #eef2f7;
}
.mv-contact-social-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8b95a3;
    margin-bottom: 12px;
}
.mv-contact-social-links {
    display: flex;
    gap: 10px;
}
.mv-contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 92, 143, 0.06);
    color: #003466;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.mv-contact-social-links a:hover {
    background: linear-gradient(135deg, #003466, #005c8f);
    color: #ffffff;
    transform: translateY(-2px);
}

.mv-contact-form-card {
    margin-bottom: 0 !important;
}

/* CF7 form styling — inherits theme look */
.mv-form-card .wpcf7 form p,
.mv-form-card .wpcf7-form p {
    margin: 0 0 18px;
}
.mv-form-card .wpcf7 label,
.mv-form-card .wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #354759;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}
.mv-form-card .wpcf7 input[type="text"],
.mv-form-card .wpcf7 input[type="email"],
.mv-form-card .wpcf7 input[type="tel"],
.mv-form-card .wpcf7 input[type="url"],
.mv-form-card .wpcf7 input[type="number"],
.mv-form-card .wpcf7 select,
.mv-form-card .wpcf7 textarea,
.mv-form-card .wpcf7-form input[type="text"],
.mv-form-card .wpcf7-form input[type="email"],
.mv-form-card .wpcf7-form input[type="tel"],
.mv-form-card .wpcf7-form input[type="url"],
.mv-form-card .wpcf7-form input[type="number"],
.mv-form-card .wpcf7-form select,
.mv-form-card .wpcf7-form textarea {
    font-family: inherit;
    font-size: 14px;
    color: #0e1b2c;
    padding: 12px 14px;
    border: 1px solid #d9e3ee;
    border-radius: 10px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
}
.mv-form-card .wpcf7 input:focus,
.mv-form-card .wpcf7 select:focus,
.mv-form-card .wpcf7 textarea:focus,
.mv-form-card .wpcf7-form input:focus,
.mv-form-card .wpcf7-form select:focus,
.mv-form-card .wpcf7-form textarea:focus {
    outline: none;
    border-color: #005c8f;
    box-shadow: 0 0 0 3px rgba(0, 92, 143, 0.10);
}
.mv-form-card .wpcf7 textarea,
.mv-form-card .wpcf7-form textarea {
    min-height: 110px;
    line-height: 1.6;
    resize: vertical;
}
.mv-form-card .wpcf7 select,
.mv-form-card .wpcf7-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    padding-right: 40px;
}
.mv-form-card .wpcf7-submit,
.mv-form-card input[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 32px !important;
    background: linear-gradient(135deg, #003466, #005c8f) !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 100px !important;
    font-weight: 500 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.2px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 92, 143, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
    font-family: inherit;
}
.mv-form-card .wpcf7-submit:hover,
.mv-form-card input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 92, 143, 0.35);
}

.mv-form-empty {
    padding: 28px 32px;
    background: rgba(255, 192, 0, 0.06);
    border: 1px solid rgba(255, 192, 0, 0.2);
    border-left: 4px solid #f0a500;
    border-radius: 10px;
    font-size: 14px;
    color: #5f4400;
    line-height: 1.7;
}
.mv-form-empty strong {
    display: block;
    color: #3d2c00;
    font-weight: 600;
    margin-bottom: 8px;
}
.mv-form-empty code,
.mv-form-empty pre {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12.5px;
    font-family: monospace;
    color: #003466;
}
.mv-form-empty pre {
    display: block;
    padding: 16px;
    margin-top: 12px;
    line-height: 1.5;
    overflow-x: auto;
    white-space: pre-wrap;
}

@media (max-width: 900px) {
    .mv-contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .mv-contact-info {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .mv-contact-info-title { font-size: 26px; }
    .mv-contact-item { gap: 14px; padding: 14px 0; }
    .mv-contact-icon { width: 40px; height: 40px; }
    .mv-form-card .wpcf7-submit { width: 100%; }
}

/* ==========================================================================
   v3.4.0 — Apply page 2-track layout + narrower CF7 form
   ========================================================================== */

/* Center the 2-card grid (Mentor + Startup) and constrain max width */
.mv-apply-tracks {
    max-width: 900px;
    margin: 0 auto !important;
}
.mv-apply-tracks.mv-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
    .mv-apply-tracks.mv-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Narrower form card — centered on page since there's just one form */
.mv-form-card.mv-form-card-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* Footer static (non-link) item */
.mv-footer-static {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12.5px;
    padding: 4px 0;
    line-height: 1.5;
}
