            :root {
                --navy: #05152b;
                --navy-light: #0c1f3a;
                --blue: #0d8fdb;
                --blue-glow: #4db8ff;
                --green: #2ecc71;
                --green-glow: #5ee397;
                --ink: #0a1628;
                --muted: #7a8ba3;
                --soft: #f0f4f8;
                --line: #e1e8f0;
                --radius: 20px;
                --radius-lg: 28px;
                --shadow: 0 8px 40px rgba(5, 21, 43, 0.1);
                --shadow-lg: 0 24px 80px rgba(5, 21, 43, 0.14);
                --max: 1200px;
                --sans: Inter, system-ui, sans-serif;
                --display: "Space Grotesk", Inter, sans-serif;
            }
            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }
            html {
                scroll-behavior: smooth;
            }
            body {
                font-family: var(--sans);
                color: var(--ink);
                background: #fff;
                line-height: 1.6;
                overflow-x: hidden;
            }
            a {
                text-decoration: none;
                color: inherit;
            }
            img {
                max-width: 100%;
                display: block;
            }
            button,
            input {
                font: inherit;
            }
            .container {
                width: min(var(--max), calc(100% - 48px));
                margin: auto;
            }
            .section {
                padding: 100px 0;
            }
            .kicker {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-size: 0.72rem;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: var(--blue);
                font-family: var(--display);
            }
            .kicker::before {
                content: "";
                width: 28px;
                height: 2.5px;
                background: var(--green);
                border-radius: 99px;
            }
            .section-head {
                max-width: 680px;
                margin-bottom: 56px;
            }
            .section-head h2 {
                font-family: var(--display);
                font-size: clamp(2.1rem, 4.5vw, 3.6rem);
                line-height: 1.05;
                letter-spacing: -0.035em;
                margin: 14px 0 18px;
                color: var(--navy);
                font-weight: 700;
            }
            .section-head p {
                color: var(--muted);
                font-size: 1.05rem;
                max-width: 560px;
                line-height: 1.65;
            }

            .nav {
                position: fixed;
                inset: 0 0 auto;
                z-index: 100;
                height: 76px;
                background: rgba(5, 21, 43, 0.75);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                transition: all 0.3s;
            }
            .nav.scrolled {
                background: rgba(5, 21, 43, 0.92);
                box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            }
            .nav-inner {
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 28px;
            }
            .logo img {
                height: 38px;
                width: auto;
                filter: brightness(0) invert(1);
            }
            .nav-links {
                display: flex;
                align-items: center;
                gap: 6px;
                list-style: none;
            }
            .nav-links a {
                padding: 9px 14px;
                border-radius: 10px;
                color: rgba(255, 255, 255, 0.55);
                font-size: 0.84rem;
                font-weight: 600;
                transition: all 0.2s;
            }
            .nav-links a:hover,
            .nav-links a.active {
                color: #fff;
                background: rgba(255, 255, 255, 0.08);
            }
            .nav-actions {
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .btn {
                min-height: 48px;
                padding: 11px 22px;
                border-radius: 12px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 9px;
                border: 1px solid transparent;
                font-size: 0.85rem;
                font-weight: 700;
                transition: all 0.3s;
                cursor: pointer;
                font-family: var(--sans);
            }
            .btn:hover {
                transform: translateY(-2px);
            }
            .btn-primary {
                background: var(--blue);
                color: #fff;
                box-shadow: 0 10px 28px rgba(13, 143, 219, 0.35);
            }
            .btn-primary:hover {
                background: #0a7ec7;
            }
            .btn-ghost-nav {
                background: rgba(255, 255, 255, 0.06);
                color: #fff;
                border-color: rgba(255, 255, 255, 0.15);
            }
            .btn-ghost-nav:hover {
                background: rgba(255, 255, 255, 0.14);
            }
            .menu-btn {
                display: none;
                border: 0;
                background: transparent;
                color: #fff;
                font-size: 1.3rem;
                cursor: pointer;
                width: 44px;
                height: 44px;
                border-radius: 10px;
            }
            .menu-btn:hover {
                background: rgba(255, 255, 255, 0.08);
            }
            .mobile-panel {
                display: none;
                position: fixed;
                top: 76px;
                left: 0;
                right: 0;
                z-index: 99;
                background: rgba(5, 21, 43, 0.96);
                backdrop-filter: blur(20px);
                padding: 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                flex-direction: column;
                gap: 4px;
            }
            .mobile-panel.open {
                display: flex;
            }
            .mobile-panel a {
                padding: 14px 16px;
                border-radius: 12px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.7);
                font-size: 0.9rem;
                transition: all 0.2s;
            }
            .mobile-panel a:hover {
                background: rgba(255, 255, 255, 0.06);
                color: #fff;
            }
            .mobile-panel .btn {
                margin-top: 8px;
                justify-content: center;
            }

            .hero-about {
                position: relative;
                min-height: 480px;
                background: linear-gradient(135deg, var(--navy) 0%, #0a1f3d 50%, #0d2847 100%);
                display: flex;
                align-items: center;
                overflow: hidden;
                padding-top: 76px;
            }
            .hero-about::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(13, 143, 219, 0.1) 0%, transparent 60%),
                    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
                pointer-events: none;
            }
            .hero-about-inner {
                position: relative;
                z-index: 2;
                padding: 80px 0 60px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-about .kicker {
                color: var(--blue-glow);
                opacity: 0.9;
                margin-bottom: 16px;
            }
            .hero-about .kicker::before {
                background: var(--green-glow);
            }
            .hero-about h1 {
                font-family: var(--display);
                font-size: clamp(2.6rem, 5.5vw, 4.6rem);
                line-height: 1;
                letter-spacing: -0.04em;
                color: #fff;
                margin-bottom: 18px;
                font-weight: 700;
            }
            .hero-about h1 em {
                font-style: normal;
                background: linear-gradient(90deg, var(--blue-glow), var(--green-glow));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            .hero-about .lead {
                font-size: 1.1rem;
                color: rgba(255, 255, 255, 0.5);
                max-width: 600px;
                line-height: 1.7;
            }

            .story-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }
            .story-visual {
                border-radius: var(--radius-lg);
                overflow: hidden;
                box-shadow: var(--shadow-lg);
                position: relative;
                min-height: 480px;
                background: linear-gradient(145deg, #0a2540, #05152b);
            }
            .story-visual img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                inset: 0;
                opacity: 0.6;
            }
            .story-content {
                position: relative;
                z-index: 2;
                padding: 40px;
            }
            .story-content h3 {
                font-family: var(--display);
                font-size: 1.8rem;
                color: #fff;
                line-height: 1.2;
                margin-bottom: 12px;
            }
            .story-content p {
                color: rgba(255, 255, 255, 0.55);
                font-size: 0.95rem;
                max-width: 360px;
            }
            .story-text p {
                color: var(--muted);
                font-size: 1rem;
                line-height: 1.75;
                margin-bottom: 18px;
            }
            .story-text strong {
                color: var(--navy);
            }

            .values-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .value-card {
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-lg);
                padding: 36px 28px;
                transition: all 0.3s;
            }
            .value-card:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-lg);
                border-color: transparent;
            }
            .value-icon {
                width: 52px;
                height: 52px;
                border-radius: 15px;
                background: linear-gradient(135deg, #e8f4fd, #f0f9ff);
                color: var(--blue);
                display: grid;
                place-items: center;
                font-size: 1.1rem;
                margin-bottom: 24px;
            }
            .value-card:nth-child(2) .value-icon {
                background: linear-gradient(135deg, #e8faf0, #f0fdf4);
                color: var(--green);
            }
            .value-card:nth-child(3) .value-icon {
                background: linear-gradient(135deg, #fff5e6, #fff9f0);
                color: #f5a623;
            }
            .value-card h4 {
                font-family: var(--display);
                font-size: 1.15rem;
                color: var(--navy);
                margin-bottom: 8px;
                font-weight: 700;
            }
            .value-card p {
                font-size: 0.84rem;
                color: var(--muted);
                line-height: 1.6;
            }

            .team-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
            .team-card {
                background: #fff;
                border: 1px solid var(--line);
                border-radius: var(--radius-lg);
                overflow: hidden;
                transition: all 0.3s;
            }
            .team-card:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-lg);
                border-color: transparent;
            }
            .team-img {
                height: 260px;
                background: linear-gradient(135deg, var(--navy), var(--navy-light));
                position: relative;
                overflow: hidden;
            }
            .team-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.7;
                transition: transform 0.6s;
            }
            .team-card:hover .team-img img {
                transform: scale(1.05);
            }
            .team-body {
                padding: 22px 24px 24px;
            }
            .team-body h4 {
                font-family: var(--display);
                font-size: 1.05rem;
                color: var(--navy);
                font-weight: 700;
                margin-bottom: 4px;
            }
            .team-body span {
                font-size: 0.78rem;
                color: var(--muted);
                display: block;
                margin-bottom: 10px;
            }
            .team-body p {
                font-size: 0.8rem;
                color: var(--muted);
                line-height: 1.55;
            }

            .timeline {
                position: relative;
                padding-left: 30px;
            }
            .timeline::before {
                content: "";
                position: absolute;
                left: 8px;
                top: 0;
                bottom: 0;
                width: 2px;
                background: var(--line);
            }
            .timeline-item {
                position: relative;
                padding-bottom: 40px;
            }
            .timeline-item:last-child {
                padding-bottom: 0;
            }
            .timeline-dot {
                position: absolute;
                left: -26px;
                top: 4px;
                width: 18px;
                height: 18px;
                border-radius: 50%;
                background: var(--green);
                border: 4px solid #fff;
                box-shadow: 0 0 0 2px var(--green);
            }
            .timeline-item h4 {
                font-family: var(--display);
                font-size: 1.1rem;
                color: var(--navy);
                margin-bottom: 6px;
                font-weight: 700;
            }
            .timeline-item span {
                font-size: 0.72rem;
                color: var(--blue);
                font-weight: 700;
                display: block;
                margin-bottom: 8px;
            }
            .timeline-item p {
                font-size: 0.85rem;
                color: var(--muted);
                line-height: 1.6;
                max-width: 500px;
            }

            .cta-card {
                border-radius: var(--radius-lg);
                background: linear-gradient(120deg, #05152b, #0c2847);
                padding: 64px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 40px;
                color: #fff;
                overflow: hidden;
                position: relative;
                box-shadow: var(--shadow-lg);
            }
            .cta-card::before {
                content: "";
                position: absolute;
                width: 500px;
                height: 500px;
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 50%;
                right: -150px;
                bottom: -300px;
            }
            .cta-card::after {
                content: "";
                position: absolute;
                width: 300px;
                height: 300px;
                background: rgba(13, 143, 219, 0.08);
                border-radius: 50%;
                filter: blur(60px);
                top: -100px;
                left: 10%;
            }
            .cta-card > * {
                position: relative;
                z-index: 2;
            }
            .cta-card h2 {
                font-family: var(--display);
                font-size: clamp(1.8rem, 3.5vw, 2.8rem);
                line-height: 1.1;
                letter-spacing: -0.03em;
                max-width: 600px;
                font-weight: 700;
            }
            .cta-card p {
                color: rgba(255, 255, 255, 0.45);
                max-width: 520px;
                margin-top: 14px;
                font-size: 1rem;
            }

            .footer {
                background: #040e1c;
                color: #fff;
                padding: 70px 0 24px;
            }
            .footer-grid {
                display: grid;
                grid-template-columns: 1.6fr 1fr 1fr 1fr;
                gap: 40px;
                padding-bottom: 50px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .footer-brand img {
                height: 36px;
                margin-bottom: 20px;
                filter: brightness(0) invert(1);
                opacity: 0.9;
            }
            .footer-brand p {
                font-size: 0.82rem;
                color: rgba(255, 255, 255, 0.35);
                max-width: 320px;
                line-height: 1.7;
            }
            .footer h4 {
                font-size: 0.7rem;
                text-transform: uppercase;
                letter-spacing: 0.12em;
                margin-bottom: 20px;
                color: rgba(255, 255, 255, 0.5);
                font-family: var(--display);
            }
            .footer ul {
                list-style: none;
                display: grid;
                gap: 11px;
            }
            .footer li a {
                font-size: 0.8rem;
                color: rgba(255, 255, 255, 0.38);
                transition: color 0.2s;
            }
            .footer li a:hover {
                color: #fff;
            }
            .footer-bottom {
                display: flex;
                justify-content: space-between;
                gap: 20px;
                flex-wrap: wrap;
                padding-top: 24px;
                color: rgba(255, 255, 255, 0.22);
                font-size: 0.68rem;
            }

            .reveal {
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }

            @media (max-width: 1050px) {
                .nav-links {
                    display: none;
                }
                .menu-btn {
                    display: block;
                }
                .nav-actions {
                    display: none;
                }
                .story-grid {
                    grid-template-columns: 1fr;
                }
                .values-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .team-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .footer-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .cta-card {
                    flex-direction: column;
                    text-align: center;
                    align-items: center;
                }
            }
            @media (max-width: 720px) {
                .container {
                    width: min(100% - 32px, var(--max));
                }
                .section {
                    padding: 80px 0;
                }
                .hero-about {
                    padding-top: 66px;
                    min-height: auto;
                }
                .hero-about h1 {
                    font-size: clamp(2.2rem, 10vw, 3.4rem);
                }
                .values-grid {
                    grid-template-columns: 1fr;
                }
                .team-grid {
                    grid-template-columns: 1fr;
                }
                .footer-grid {
                    grid-template-columns: 1fr;
                }
                .cta-card {
                    padding: 40px 28px;
                }
                .mobile-panel {
                    top: 66px;
                }
            }
