
        :root {
            --morpho-blue: #2A9D8F; /* Montezuma Teal */
            --morpho-glow: rgba(42, 157, 143, 0.4);
            --morpho-orange: #CD6821; /* Montezuma Orange */
            --jungle-dark: #0B3D33; /* Montezuma Jungle Deep */
            --jungle-lush: #1B5E20;
            --accent-green: #2ecc71;
        }

        body.morpho-page {
            background: var(--jungle-dark);
            color: #dbe8e1;
            margin: 0;
            overflow-x: hidden;
            font-family: 'Outfit', sans-serif;
        }

        /* Hero Section */
        .morpho-hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(rgba(5, 20, 11, 0.4), var(--jungle-dark)), 
                        url('../assets/blue_morpho_hero_bg_1775396185491.png');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .hero-shimmer {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(0, 212, 255, 0.1) 50%, transparent 60%);
            background-size: 200% 200%;
            animation: shimmer 8s infinite linear;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { background-position: -200% -200%; }
            100% { background-position: 200% 200%; }
        }

        .morpho-title {
            font-family: 'Abril Fatface', cursive;
            font-size: clamp(3rem, 10vw, 6rem);
            color: #fff;
            text-shadow: 0 0 30px var(--morpho-glow);
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .morpho-subtitle {
            font-size: 1.5rem;
            color: var(--morpho-blue);
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 300;
        }

        /* Flash & Dazzle Interaction */
        .interaction-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .butterfly-card {
            position: relative;
            width: 300px;
            height: 250px;
            margin: 4rem auto;
            perspective: 1000px;
            cursor: pointer;
        }

        .butterfly-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .butterfly-card:hover .butterfly-inner {
            transform: rotateY(180deg);
        }

        .wings-open, .wings-closed {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 212, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .wings-open {
            color: var(--morpho-blue);
            border-color: var(--morpho-blue);
        }

        .wings-closed {
            transform: rotateY(180deg);
            color: var(--morpho-orange);
            border-color: var(--morpho-orange);
        }

        .butterfly-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* Sticky Metamorphosis Section */
        .meta-sticky-section {
            position: relative;
            background: #020b14;
            padding: 4rem 0;
            overflow: visible;
        }

        .meta-sticky-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .meta-sticky-visual {
            position: sticky;
            top: 15vh;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .meta-image-frame {
            position: relative;
            width: 100%;
            max-width: 450px; /* Slightly larger for impact */
            aspect-ratio: 1 / 1; /* Perfect squares */
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0,0,0,0.6);
            border: 2px solid rgba(42, 157, 143, 0.3);
            background: #fdfdfb;
            margin: 0 auto;
        }

        .meta-stage-img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
            transform: scale(1.1);
        }

        .meta-stage-img.active {
            opacity: 1;
            transform: scale(1);
        }

        .meta-text-track {
            position: relative;
            z-index: 1;
            padding-bottom: 20vh;
        }

        .meta-text-block {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            opacity: 0.3;
            transition: opacity 0.5s ease;
        }

        .meta-text-block.active {
            opacity: 1;
        }

        .meta-text-block h2 {
            font-family: 'Abril Fatface', cursive;
            font-size: 3.5rem;
            color: var(--morpho-blue); /* Consistent Teal */
            margin-bottom: 1.5rem;
        }

        .meta-text-block p {
            font-size: 1.4rem;
            line-height: 1.6;
            color: #b8c9bc;
        }

        @media (max-width: 992px) {
            .meta-sticky-container {
                grid-template-columns: 1fr;
            }
            .meta-sticky-visual {
                position: relative;
                top: 0;
                height: 50vh;
                margin-bottom: 2rem;
            }
            .meta-text-block {
                min-height: auto;
                padding: 4rem 1rem;
            }
        }

        /* Spotting Guide */
        .spotting-guide {
            position: relative;
            background: linear-gradient(to bottom, var(--jungle-dark) 0%, #031512 100%);
            padding: 8rem 2rem;
            text-align: center;
            overflow: hidden;
            z-index: 10;
        }

        .morpho-silhouette-left {
            position: absolute;
            bottom: -30px;
            left: -80px;
            width: 450px;
            height: 450px;
            background-image: url('../assets/blue_morpho_hero_bg_1775396185491.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: bottom left;
            opacity: 0.12;
            pointer-events: none;
            mix-blend-mode: screen;
            transform: rotate(20deg);
            z-index: 1;
        }

        .morpho-silhouette-right {
            position: absolute;
            bottom: -30px;
            right: -80px;
            width: 450px;
            height: 450px;
            background-image: url('../assets/morpho_wings_closed.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: bottom right;
            opacity: 0.1;
            pointer-events: none;
            mix-blend-mode: screen;
            transform: rotate(-15deg) scaleX(-1);
            z-index: 1;
        }

        .spotting-container {
            position: relative;
            z-index: 5;
            max-width: 900px;
            margin: 0 auto;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem 3rem;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(42, 157, 143, 0.25);
            border-radius: 40px;
            font-size: 1.15rem;
            color: #fff;
            margin-top: 3rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            text-align: left;
            max-width: 650px;
            transition: all 0.4s ease;
        }

        .status-badge.status-active {
            border-color: var(--morpho-blue);
            box-shadow: 0 0 40px rgba(42, 157, 143, 0.25), 0 20px 50px rgba(0,0,0,0.3);
        }

        .status-badge.status-active #status-icon {
            color: var(--morpho-blue);
            filter: drop-shadow(0 0 10px rgba(42, 157, 143, 0.6));
        }

        .status-badge.status-inactive {
            border-color: var(--morpho-orange);
            box-shadow: 0 0 40px rgba(205, 104, 33, 0.2), 0 20px 50px rgba(0,0,0,0.3);
        }

        .status-badge.status-inactive #status-icon {
            color: var(--morpho-orange);
            filter: drop-shadow(0 0 10px rgba(205, 104, 33, 0.6));
        }

        .status-badge.status-transition {
            border-color: #f1c40f;
            box-shadow: 0 0 40px rgba(241, 196, 15, 0.2), 0 20px 50px rgba(0,0,0,0.3);
        }

        .status-badge.status-transition #status-icon {
            color: #f1c40f;
            filter: drop-shadow(0 0 10px rgba(241, 196, 15, 0.6));
        }

        #status-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .neon-btn {
            display: inline-block;
            margin-top: 3rem;
            padding: 1.5rem 4rem;
            background: transparent;
            border: 2px solid var(--morpho-orange);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(205, 104, 33, 0.3);
        }

        .neon-btn:hover {
            background: var(--morpho-orange);
            box-shadow: 0 0 40px var(--morpho-orange);
            transform: translateY(-5px);
        }

        /* Flight Scroll Sequence */
        .flight-scroll-container { position: relative; width: 100%; background: var(--jungle-dark); }
        .flight-sticky-wrapper { position: sticky; top: 0; left: 0; width: 100%; height: 100vh; overflow: hidden; z-index: 1; }
        #morpho-canvas { width: 100%; height: 100%; object-fit: cover; }
        .flight-text-track { position: relative; z-index: 3; width: 100%; }
        .flight-text-step { height: 250vh; padding: 0 5vw; position: relative; }
        .step-left { display: flex; justify-content: flex-start; align-items: flex-start; }
        .step-right { display: flex; justify-content: flex-end; align-items: flex-start; }
        .step-center { display: flex; justify-content: center; align-items: flex-start; }
        .flight-text-panel { position: sticky; top: 35vh; height: max-content; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 20px; padding: 3rem; max-width: 500px; text-align: left; opacity: 0; transform: translateY(50px); color: white; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .flight-text-panel h3 { font-family: 'Abril Fatface', cursive; font-size: 3rem; color: var(--morpho-blue); margin-bottom: 1rem; line-height: 1.1; }

        @media (max-width: 768px) {
            .meta-content { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
            .morpho-title { font-size: 3.5rem; }
        }
    