        :root {
            --navy: #1B2A6B;
            --gold: #C9941A;
            --gold-light: #E8B84B;
            --bg: #07091A;
            --bg-card: #0D1130;
            --text: #FFFFFF;
            --border: rgba(201,148,26,0.2);
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            margin: 0;
            overflow-x: hidden;
        }

        .native-cursor body,
        .native-cursor body * { cursor: auto !important; }

        .native-cursor .cursor-dot,
        .native-cursor .cursor-ring { display: none !important; }

        /* CUSTOM CURSOR */
        .cursor-dot { width: 8px; height: 8px; background: var(--gold-light); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); }
        .cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: transform 0.12s ease; }

        /* HERO SECTION */
        .mission-hero {
            height: 45vh;
            background: linear-gradient(rgba(7,9,26,0.85), rgba(7,9,26,0.95)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .mission-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            color: var(--gold-light);
            margin: 0;
        }

        .back-link {
            position: absolute;
            top: 40px;
            left: 5%;
            color: var(--text);
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border);
            padding: 10px 18px;
            transition: 0.3s;
        }
        .back-link:hover { background: var(--gold); color: #000; border-color: var(--gold); }

        /* GRID SECTION */
        .container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 5%;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .mission-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .mission-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 15px 40px rgba(201,148,26,0.1);
        }

        .card-icon {
            font-size: 48px;
            color: var(--gold);
            margin-bottom: 25px;
            display: inline-block;
        }

        .mission-card h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            color: var(--gold-light);
            margin-bottom: 20px;
        }

        .mission-card p {
            line-height: 1.8;
            color: rgba(255,255,255,0.7);
            font-weight: 300;
        }

        /* TARGETS LIST */
        .targets-section {
            background: rgba(27, 42, 107, 0.1);
            padding: 60px 40px;
            border: 1px solid var(--border);
        }

        .target-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .target-num {
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* REVEAL */
        .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 768px) {
            .mission-grid { grid-template-columns: 1fr; }
            .mission-hero h1 { font-size: 40px; }
        }
