        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a2540;
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 37, 64, 0.85);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: 22px;
            font-weight: 600;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-login {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-login:hover {
            color: #00d4ff;
        }

        .nav-cta {
            padding: 10px 20px;
            background: #00d4ff;
            color: #0a2540;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .nav-cta:hover {
            background: #00b8e6;
            transform: translateY(-1px);
        }

        /* Hero Section */
        .hero {
            padding: 120px 48px 120px;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            max-width: 820px;
        }

        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .network-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .network-node {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #00d4ff;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
            animation: pulse-node 3s ease-in-out infinite;
        }

        .network-node.large {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #00d4ff 0%, #635bff 100%);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
        }

        @keyframes pulse-node {
            0%, 100% { 
                transform: scale(1);
                opacity: 1;
            }
            50% { 
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        .network-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, 
                rgba(0, 212, 255, 0.1) 0%, 
                rgba(0, 212, 255, 0.4) 50%, 
                rgba(0, 212, 255, 0.1) 100%);
            transform-origin: left center;
            animation: flow 4s linear infinite;
        }

        @keyframes flow {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 200% 50%;
            }
        }

        .globe-ring {
            position: absolute;
            border: 2px solid rgba(0, 212, 255, 0.2);
            border-radius: 50%;
            animation: rotate-ring 20s linear infinite;
        }

        .globe-ring:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .globe-ring:nth-child(2) {
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 25s;
            animation-direction: reverse;
        }

        .globe-ring:nth-child(3) {
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 30s;
        }

        @keyframes rotate-ring {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .hero h1 {
            font-size: 80px;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 32px;
            background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 21px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-btn-center {
            justify-content: center;
        }

        .btn-primary {
            padding: 14px 28px;
            background: #00d4ff;
            color: #0a2540;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            background: #00b8e6;
            transform: translateY(-2px);
        }

        .btn-secondary {
            padding: 14px 28px;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-secondary:hover {
            border-color: #fff;
        }

        /* Feature Banner */
        .feature-banner {
            background: linear-gradient(90deg, #635bff 0%, #00d4ff 100%);
            padding: 80px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white" opacity="0.1"/></svg>');
            opacity: 0.1;
        }

        .feature-banner h2 {
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -1px;
            margin-bottom: 24px;
            position: relative;
        }

        .feature-banner p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            position: relative;
        }

        /* About Section */
        .about-section {
            padding: 120px 48px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: 80px;
        }

        .section-label {
            color: #00d4ff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 820px;
            line-height: 1.7;
        }

        .about-content {
            margin-bottom: 80px;
        }

        .about-text {
            max-width: 80%;
        }

        .about-text p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-text p:last-child {
            margin-bottom: 36px;
        }

        .about-images {
            display: grid;
            grid-template-columns: repeat(4, 1fr);  /* 4 columns in one row */
            gap: 16px;
        }

        .about-image {
            aspect-ratio: 1;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(99, 91, 255, 0.2) 100%);
            border-radius: 12px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            transition: all 0.3s ease;
            padding: 24px;
            text-align: center;
        }

        .about-image:hover {
            transform: scale(1.02);
            border-color: #00d4ff;
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
        }

        .about-image.small {
            font-size: 48px;
        }

        .about-image img {
            height: 230px;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .team-name {
            font-size: 18px;
            font-weight: 600;
            margin-top: 16px;
            color: #fff;
        }

        .team-title {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        .team-link{
            margin-top: 8px;
            font-size: 14px;
        }

        .team-link a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .team-link a:hover {
            color: #00d4ff;
        }

        /* Offerings Section */
        .offerings-section {
            padding: 120px 48px;
            background: #0e3e5c;
        }

        .offerings-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            margin-top: 60px;
        }

        .capability-card {
            background: #0a2540;
            padding: 40px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .capability-card:hover {
            background: #124866;
        }

        .capability-icon {
            font-size: 24px;
            min-width: 24px;
        }

        .capability-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .capability-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        /* Compliance Section */
        .compliance-section {
            padding: 120px 48px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .compliance-card {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .compliance-card:hover {
            background: rgba(0, 212, 255, 0.15);
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
        }

        .compliance-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .compliance-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .compliance-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 48px;
            background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
        }

        .stats-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 64px;
            font-weight: 600;
            letter-spacing: -1.5px;
            margin-bottom: 12px;
            background: linear-gradient(90deg, #635bff 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
        }

        /* Revenue Section */
        .revenue-section {
            padding: 120px 48px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .revenue-content {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(99, 91, 255, 0.15) 100%);
            border-radius: 16px;
            padding: 80px;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .revenue-content h2 {
            font-size: 48px;
            font-weight: 600;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .revenue-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Testimonial Section */
        .testimonial-section {
            padding: 120px 48px;
            background: #0e3e5c;
        }

        .testimonial-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-quote {
            font-size: 28px;
            line-height: 1.6;
            margin-bottom: 40px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonial-author {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .testimonial-role {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 48px;
            text-align: center;
            background: linear-gradient(180deg, #0a2540 0%, #0e3e5c 100%);
        }

        .cta-content {
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 56px;
            font-weight: 600;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
        }

        .cta-section p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        /* Footer */
        footer {
            padding: 80px 48px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: #0a2540;
        }

        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #fff;
        }

        @media (max-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .capabilities-grid {
                grid-template-columns: 1fr;
            }

            .revenue-content {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 16px 24px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 100px 24px 80px;
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-visual {
                height: 300px;
                display: none;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 18px;
            }

            .about-section,
            .offerings-section,
            .compliance-section,
            .revenue-section,
            .testimonial-section,
            .cta-section {
                padding: 80px 24px;
            }

            .section-title,
            .cta-section h2 {
                font-size: 36px;
            }

            .about-images {
                grid-template-columns: 1fr;
                max-width: 360px;   
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                padding: 0 24px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                padding: 0 24px;
                padding-top: 32px;
            }

            .revenue-content {
                padding: 40px 24px;
            }

            .testimonial-quote {
                font-size: 22px;
            }
        }