
        /* ============================================
           DESIGN SYSTEM
        ============================================ */
        :root {
            --blue-deep:   #003366;
            --blue-mid:    #0178ff;
            --blue-light:  #00c6fd;
            --blue-sky:    #87CEEB;
            --purple:      #8b5cf6;
            --yellow:      #FFD700;
            --white:       #ffffff;
            --off-white:   #f7f9fc;
            --dark:        #f7f9fc;
            --dark-card:   #ffffff;
            --text-muted:  rgba(10,10,18,0.6);
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw; /* Strictly limits width to the viewport width */
    overflow-x: hidden;
    position: relative;
    /* Prevents the browser from jumping during layout shifts */
    touch-action: pan-y; 
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark);
    color: #0a0a12;
    /* Ensures padding/borders don't push the width past 100% */
    box-sizing: border-box; 
}

/* Ensure all elements respect the box model */
*, *:before, *:after {
    box-sizing: inherit;
}
        /* ============================================
           HEADER
        ============================================ */
        header {
            background: linear-gradient(to right, rgb(0,198,253), rgb(83,152,255));
            padding: 1rem 2rem;
            position: fixed; top: 0; left: 0; width: 100%;
            z-index: 200;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex; justify-content: space-between; align-items: center;
            max-width: 1200px; margin: 0 auto;
        }
        .logo {
            display: flex; align-items: center; gap: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.6rem; color: white; text-decoration: none;
        }
        .logo img { height: 40px; border-radius: 50%; }
        .desktop-nav ul { display: flex; list-style: none; gap: 0.3rem; }
        .desktop-nav ul li a {
            color: white; text-decoration: none; font-weight: 600; font-size: 0.95rem;
            padding: 0.5rem 0.9rem; border-radius: 20px;
            transition: background 0.2s, color 0.2s;
        }
        .desktop-nav ul li a:hover { background: rgba(255,255,255,0.2); color: var(--yellow); }
        .desktop-nav ul li a.active { background: rgba(255,255,255,0.25); }
        .mobile-menu-toggle {
            display: none; background: none; border: none;
            color: var(--blue-deep); font-size: 1.5rem; cursor: pointer;
        }
        @media (max-width: 768px) {
            header { padding: 1rem; }
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: none; }
        }

        /* ============================================
           REVEAL ANIMATION
        ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                        transform 0.8s cubic-bezier(0.22,1,0.36,1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ============================================
           HERO
        ============================================ */
        .hero {
            min-height: 100vh;
            padding-top: 68px;
            position: relative;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
            text-align: center;
        }

        /* Animated gradient mesh background */
        .hero-bg {
            position: absolute; inset: 0; z-index: 0;
            background:
                radial-gradient(ellipse 80% 60% at 20% 30%, rgba(1,120,255,0.35) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0,198,253,0.25) 0%, transparent 55%),
                radial-gradient(ellipse 50% 40% at 60% 10%, rgba(139,92,246,0.2) 0%, transparent 50%),
                var(--dark);
            animation: meshShift 12s ease-in-out infinite alternate;
        }
        @keyframes meshShift {
            0%  { filter: hue-rotate(0deg) brightness(1); }
            100%{ filter: hue-rotate(15deg) brightness(1.08); }
        }

        /* Grid overlay */
        .hero-bg::after {
            content: '';
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Floating orbs */
        .orb {
            position: absolute; border-radius: 50%;
            filter: blur(60px); opacity: 0.4; pointer-events: none;
        }
        .orb-1 { width: 400px; height: 400px; background: #0178ff; top: -100px; left: -100px; animation: drift1 18s ease-in-out infinite alternate; }
        .orb-2 { width: 300px; height: 300px; background: #00c6fd; bottom: 10%; right: -80px; animation: drift2 14s ease-in-out infinite alternate; }
        .orb-3 { width: 200px; height: 200px; background: #8b5cf6; top: 40%; left: 40%; animation: drift3 10s ease-in-out infinite alternate; }
        @keyframes drift1 { to { transform: translate(80px, 60px); } }
        @keyframes drift2 { to { transform: translate(-60px, -40px); } }
        @keyframes drift3 { to { transform: translate(40px, -50px); opacity: 0.2; } }

        .hero-inner {
            position: relative; z-index: 2;
            max-width: 860px; margin: 0 auto; padding: 80px 24px;
        }

        .hero-pill {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.18);
            backdrop-filter: blur(12px);
            color: var(--yellow);
            font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
            padding: 8px 20px; border-radius: 30px; margin-bottom: 2rem;
            animation: fadeUp 0.8s 0.1s ease-out both;
        }

        .hero h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            line-height: 1.05; letter-spacing: -0.5px;
            margin-bottom: 1.8rem;
            animation: fadeUp 0.9s 0.2s ease-out both;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, #00c6fd, #0178ff, #8b5cf6);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-lead {
            font-size: clamp(1.05rem, 2vw, 1.3rem);
            line-height: 1.75;
            color: rgba(255,255,255,0.75);
            max-width: 640px; margin: 0 auto 2.5rem;
            animation: fadeUp 1s 0.3s ease-out both;
        }

        .hero-cta-row {
            display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
            animation: fadeUp 1s 0.4s ease-out both;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--blue-mid), var(--purple));
            color: white; border: none; padding: 14px 34px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; cursor: pointer;
            text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 8px 28px rgba(1,120,255,0.4);
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(1,120,255,0.5); }

        .btn-ghost {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            color: white; border: 1.5px solid rgba(255,255,255,0.25);
            padding: 14px 34px; border-radius: 50px;
            font-weight: 700; font-size: 1rem; cursor: pointer;
            text-decoration: none; transition: background 0.2s, border-color 0.2s;
        }
        .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }

        /* Scroll indicator */
        .scroll-hint {
            position: absolute; bottom: 36px; left: 50%;
            transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
            animation: bounce 2.5s ease-in-out infinite;
            z-index: 2;
        }
        .scroll-hint i { font-size: 1.1rem; }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50%       { transform: translateX(-50%) translateY(8px); }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ============================================
           SECTION BASE
        ============================================ */
        section { position: relative; overflow: hidden; }

        .section-inner {
            max-width: 1160px; margin: 0 auto; padding: 0 24px;
        }

        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
            color: var(--blue-light); margin-bottom: 16px;
        }
        .section-label::before {
            content: ''; display: block;
            width: 24px; height: 2px; background: var(--blue-light); border-radius: 2px;
        }

        /* ============================================
           OUR STORY
        ============================================ */
        .story-section {
            padding: 120px 0;
            background: var(--dark);
        }

        .story-layout {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 80px; align-items: center;
        }
        @media (max-width: 900px) { .story-layout { grid-template-columns: 1fr; gap: 50px; } }

        .story-text h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.1; margin-bottom: 24px;
        }

        .story-text h2 em {
            font-style: normal;
            background: linear-gradient(135deg, #00c6fd, #0178ff);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .story-text p {
            color: rgba(255,255,255,0.7); font-size: 1.05rem;
            line-height: 1.85; margin-bottom: 18px;
        }

        /* Visual side — problem cards */
        .problem-cards { display: flex; flex-direction: column; gap: 16px; }

        .problem-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-left: 3px solid var(--blue-mid);
            border-radius: 12px; padding: 20px 24px;
            backdrop-filter: blur(10px);
            transition: background 0.3s, border-left-color 0.3s;
        }
        .problem-card:hover { background: rgba(1,120,255,0.08); border-left-color: var(--blue-light); }
        .problem-card .pc-icon {
            font-size: 1.4rem; margin-bottom: 8px;
        }
        .problem-card h4 {
            font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; color: #0a0a12;
        }
        .problem-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }

        /* ============================================
           WHAT WE DO
        ============================================ */
        .features-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
        }

        .features-header {
            text-align: center; max-width: 680px; margin: 0 auto 70px;
        }
        .features-header h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 18px; line-height: 1.1;
        }
        .features-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; }

        .features-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px;
        }

        .feature-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px; padding: 36px 28px;
            position: relative; overflow: hidden;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .feature-card::before {
            content: ''; position: absolute; inset: 0;
            background: var(--card-glow, radial-gradient(circle at 50% 0%, rgba(1,120,255,0.12), transparent 70%));
            opacity: 0; transition: opacity 0.4s;
            pointer-events: none;
        }
        .feature-card:hover::before { opacity: 1; }
        .feature-card:hover { transform: translateY(-8px); border-color: rgba(1,120,255,0.3); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }

        .feature-card:nth-child(2) { --card-glow: radial-gradient(circle at 50% 0%, rgba(0,198,253,0.12), transparent 70%); }
        .feature-card:nth-child(3) { --card-glow: radial-gradient(circle at 50% 0%, rgba(139,92,246,0.12), transparent 70%); }
        .feature-card:nth-child(4) { --card-glow: radial-gradient(circle at 50% 0%, rgba(255,215,0,0.08), transparent 70%); }

        .feature-icon {
            width: 56px; height: 56px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 20px;
        }
        .fi-blue   { background: rgba(1,120,255,0.15);    color: var(--blue-light); }
        .fi-cyan   { background: rgba(0,198,253,0.15);    color: #00c6fd; }
        .fi-purple { background: rgba(139,92,246,0.15);   color: #a78bfa; }
        .fi-yellow { background: rgba(255,215,0,0.12);    color: var(--yellow); }

        .feature-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem; margin-bottom: 12px;
        }
        .feature-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }

        /* ============================================
           VISION — full-bleed editorial strip
        ============================================ */
        .vision-section {
            padding: 130px 0;
            background:
                radial-gradient(ellipse 70% 60% at 15% 50%, rgba(1,120,255,0.2) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 85% 50%, rgba(139,92,246,0.15) 0%, transparent 60%),
                linear-gradient(180deg, #0a0a1a 0%, #050510 100%);
            text-align: center;
        }

        .vision-eyebrow {
            font-size: 0.7rem; font-weight: 700; letter-spacing: 4px;
            text-transform: uppercase; color: var(--blue-light); margin-bottom: 20px;
        }

        .vision-headline {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1.1; max-width: 820px; margin: 0 auto 28px;
        }
        .vision-headline .accent { color: var(--yellow); }

        .vision-body {
            color: rgba(255,255,255,0.65); font-size: 1.1rem;
            line-height: 1.85; max-width: 680px; margin: 0 auto 50px;
        }

        /* Continent stat row */
        .vision-stats {
            display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
        }
        .v-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
        .v-stat-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 2.2rem; color: #0a0a12;
        }
        .v-stat-num span { color: var(--blue-light); }
        .v-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; }

        /* ============================================
           NAME SECTION — two-column etymology
        ============================================ */
        .name-section {
            padding: 120px 0;
            background: var(--dark);
        }

        .name-layout {
            display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
        }
        @media (max-width: 768px) { .name-layout { grid-template-columns: 1fr; } }

        .name-card {
            border-radius: 24px; padding: 56px 44px;
            position: relative; overflow: hidden;
            display: flex; flex-direction: column; gap: 16px;
        }
        .name-card.sky-card {
            background: linear-gradient(135deg, rgba(0,53,138,0.6), rgba(1,120,255,0.3));
            border: 1px solid rgba(1,120,255,0.25);
        }
        .name-card.chateau-card {
            background: linear-gradient(135deg, rgba(55,20,100,0.5), rgba(139,92,246,0.25));
            border: 1px solid rgba(139,92,246,0.25);
        }

        .name-card::before {
            content: '';
            position: absolute; top: -60px; right: -60px;
            width: 220px; height: 220px; border-radius: 50%;
            filter: blur(70px); opacity: 0.3; pointer-events: none;
        }
        .sky-card::before     { background: #0178ff; }
        .chateau-card::before { background: #8b5cf6; }

        .name-word {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 3.5rem; letter-spacing: -1px;
        }
        .sky-card     .name-word { color: var(--blue-light); }
        .chateau-card .name-word { color: #c4b5fd; }

        .name-meaning {
            font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
            text-transform: uppercase; opacity: 0.5; margin-top: -10px;
        }

        .name-card h3 {
            font-size: 1.25rem; font-weight: 700; color: #0a0a12; line-height: 1.3;
        }
        .name-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.75; }

        /* ============================================
           MISSION — centered bold strip
        ============================================ */
        .mission-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #001a3a 0%, #003080 50%, #001a3a 100%);
            text-align: center;
            position: relative;
        }
        .mission-section::before {
            content: '';
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 44px 44px;
        }

        .mission-inner { position: relative; z-index: 1; }

        .mission-flag {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            color: var(--yellow); padding: 8px 20px; border-radius: 30px;
            font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
            margin-bottom: 28px;
        }

        .mission-statement {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.6rem, 3.5vw, 2.6rem);
            line-height: 1.35; max-width: 800px;
            margin: 0 auto; color: #0a0a12;
        }
        .mission-statement .highlight {
            color: var(--blue-light);
        }

        /* ============================================
           CLOSING CTA
        ============================================ */
        .closing-section {
            padding: 140px 0 100px;
            background:
                radial-gradient(ellipse 80% 60% at 50% 80%, rgba(1,120,255,0.18) 0%, transparent 65%),
                var(--dark);
            text-align: center;
        }

        .closing-tagline {
            font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
            text-transform: uppercase; color: var(--blue-light); margin-bottom: 24px;
        }

        .closing-headline {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            line-height: 1.1; max-width: 720px; margin: 0 auto 24px;
        }

        .closing-body {
            color: rgba(255,255,255,0.6); font-size: 1.1rem;
            line-height: 1.8; max-width: 600px; margin: 0 auto 44px;
        }

        .closing-btns {
            display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
            margin-bottom: 60px;
        }

        /* Social row */
        .social-row {
            display: flex; align-items: center; justify-content: center; gap: 14px;
        }
        .social-row span { color: rgba(255,255,255,0.3); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
        .social-icon {
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.7); font-size: 1rem; text-decoration: none;
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }
        .social-icon:hover { background: var(--blue-mid); color: white; transform: translateY(-3px); }

        /* ============================================
           FOOTER
        ============================================ */
        footer {
            background: linear-gradient(160deg, rgb(143,219,255), rgb(83,152,255), rgb(1,47,115));
            color: white; padding: 3rem 2rem 1.5rem;
        }
        .footer-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem; margin-bottom: 2.5rem;
        }
        .footer-logo {
            display: flex; align-items: center; gap: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; margin-bottom: 0.8rem;
        }
        .footer-logo img { height: 36px; border-radius: 50%; }
        .footer-about p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 1rem; }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a {
            color: white; background: rgba(255,255,255,0.12); width: 36px; height: 36px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            text-decoration: none; transition: background 0.2s;
        }
        .footer-social a:hover { background: #b603fc; }
        .footer-links h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; font-size: 0.95rem; margin-bottom: 0.9rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.45rem; }
        .footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
        .footer-links a:hover { color: var(--yellow); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.2rem; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.82rem; }

        /* ============================================
           MOBILE BOTTOM NAV
        ============================================ */
        
        /* ============================================
           UTILITIES / RESPONSIVE
        ============================================ */
        @media (max-width: 600px) {
            .name-card { padding: 36px 28px; }
            .vision-stats { gap: 36px; }
        }
  
/* ============================================
   LIGHT THEME OVERRIDES
============================================ */
body {
    background: var(--off-white);
    color: #0a0a12;
}

.hero-lead {
    color: rgba(10,10,18,0.75);
}

.scroll-hint {
    color: rgba(10,10,18,0.45);
}

.story-section {
    background: var(--off-white);
}

.story-text p {
    color: rgba(10,10,18,0.7);
}

.problem-card {
    background: #ffffff;
    border: 1px solid rgba(10,10,18,0.08);
    border-left: 3px solid var(--blue-mid);
}

.problem-card h4 {
    color: #1c1536;
}

.problem-card p {
    color: rgba(10,10,18,0.65);
}

.features-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.features-header p {
    color: rgba(10,10,18,0.65);
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(10,10,18,0.08);
    box-shadow: 0 18px 40px rgba(20,20,40,0.08);
}

.feature-card h3 {
    color: #1c1536;
}

.feature-card p {
    color: rgba(10,10,18,0.65);
}

.vision-lead,
.vision-caption,
.v-stat-label,
.name-card p,
.closing-body,
.social-row span {
    color: rgba(10,10,18,0.65);
}

.mission-section {
    background: #ffffff;
}

.mission-flag {
    background: rgba(1,120,255,0.08);
    border-color: rgba(1,120,255,0.18);
}

.mission-statement {
    color: #0a0a12;
}

.closing-section {
    background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(1,120,255,0.12) 0%, transparent 65%), #f7f9fc;
}

.social-icon {
    background: rgba(10,10,18,0.06);
    border-color: rgba(10,10,18,0.12);
    color: rgba(10,10,18,0.75);
}

