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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #1d1d1f;
            line-height: 1.47059;
            font-size: 17px;
            background: #fff;
            overflow-x: hidden;
        }

        /* Navigation - Apple Style */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: saturate(180%) blur(20px);
            z-index: 9999;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 22px;
            height: 44px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 21px;
            font-weight: 600;
            color: #1d1d1f;
            letter-spacing: -0.01em;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.6;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #1d1d1f;
            font-size: 12px;
            opacity: 0.8;
            transition: opacity 0.3s;
            font-weight: 400;
        }

        .nav-links a:hover {
            opacity: 1;
        }

        /* Hero Section - Apple Style with IT Background */
        .hero {
            margin-top: 44px;
            min-height: 100vh;
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Animated Network Grid Background */
        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(102, 126, 234, 0.15) 2px, transparent 2px),
                linear-gradient(90deg, rgba(102, 126, 234, 0.15) 2px, transparent 2px);
            background-size: 60px 60px;
            animation: gridMove 20s linear infinite;
            z-index: 0;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Floating Circuit Pattern */
        .hero::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.4), transparent 30%),
                radial-gradient(circle at 80% 80%, rgba(72, 187, 120, 0.3), transparent 30%),
                radial-gradient(circle at 40% 20%, rgba(66, 153, 225, 0.3), transparent 30%),
                radial-gradient(circle at 60% 60%, rgba(168, 85, 247, 0.25), transparent 30%);
            animation: pulse 8s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        /* Network Nodes */
        .network-node {
            position: absolute;
            width: 16px;
            height: 16px;
            background: rgba(102, 126, 234, 0.9);
            border-radius: 50%;
            box-shadow: 
                0 0 30px rgba(102, 126, 234, 1),
                0 0 60px rgba(102, 126, 234, 0.6);
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        .network-node::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            animation: ripple 3s ease-out infinite;
        }

        @keyframes ripple {
            0% {
                transform: scale(0.5);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .network-node:nth-child(1) {
            top: 20%;
            left: 15%;
            animation-delay: 0s;
        }

        .network-node:nth-child(2) {
            top: 60%;
            left: 25%;
            animation-delay: 1s;
        }

        .network-node:nth-child(3) {
            top: 40%;
            right: 20%;
            animation-delay: 2s;
        }

        .network-node:nth-child(4) {
            top: 70%;
            right: 30%;
            animation-delay: 1.5s;
        }

        .network-node:nth-child(5) {
            top: 30%;
            left: 40%;
            animation-delay: 0.5s;
        }

        .network-node:nth-child(6) {
            top: 80%;
            left: 60%;
            animation-delay: 2.5s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) translateX(0px); 
                opacity: 0.6;
            }
            25% { 
                transform: translateY(-20px) translateX(10px); 
                opacity: 1;
            }
            50% { 
                transform: translateY(-10px) translateX(-10px); 
                opacity: 0.8;
            }
            75% { 
                transform: translateY(-15px) translateX(5px); 
                opacity: 1;
            }
        }

        /* Binary Code Rain Effect */
        .binary-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .binary-column {
            position: absolute;
            top: -100%;
            font-family: 'Courier New', monospace;
            font-size: 16px;
            font-weight: bold;
            color: rgba(102, 126, 234, 0.6);
            white-space: nowrap;
            animation: fall linear infinite;
            text-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
        }

        @keyframes fall {
            to {
                transform: translateY(120vh);
            }
        }

        /* Network Connection Lines */
        .network-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(102, 126, 234, 0.5) 50%, 
                transparent);
            transform-origin: left center;
            animation: pulse-line 3s ease-in-out infinite;
        }

        @keyframes pulse-line {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 980px;
        }

        .hero-subtitle {
            font-size: 21px;
            line-height: 1.2;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: 80px;
            line-height: 1.05;
            font-weight: 700;
            letter-spacing: -0.015em;
            color: #fff;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 28px;
            line-height: 1.14286;
            font-weight: 400;
            letter-spacing: 0.007em;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }

        .btn {
            padding: 12px 22px;
            border-radius: 980px;
            font-size: 17px;
            line-height: 1.17648;
            font-weight: 400;
            letter-spacing: -0.022em;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: #0071e3;
            color: #fff;
        }

        .btn-primary:hover {
            background: #0077ed;
        }

        .btn-secondary {
            background: transparent;
            color: #2997ff;
            border: 1px solid #2997ff;
        }

        .btn-secondary:hover {
            background: #2997ff;
            color: #fff;
        }

        /* Section Container */
        .section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 100px 22px;
            position: relative;
        }

        /* Add subtle tech pattern to white sections */
        .section:nth-child(even) {
            background: 
                linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 15px,
                    rgba(102, 126, 234, 0.03) 15px,
                    rgba(102, 126, 234, 0.03) 30px
                );
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-eyebrow {
            font-size: 21px;
            line-height: 1.381;
            font-weight: 600;
            letter-spacing: 0.011em;
            color: #1d1d1f;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 56px;
            line-height: 1.07143;
            font-weight: 700;
            letter-spacing: -0.005em;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .section-description {
            font-size: 21px;
            line-height: 1.381;
            font-weight: 400;
            letter-spacing: 0.011em;
            color: #6e6e73;
        }

        /* Promo Tiles - Apple Style */
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 40px;
        }

        .promo-tile {
            position: relative;
            min-height: 580px;
            border-radius: 18px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 60px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .promo-tile:hover {
            transform: scale(1.01);
        }

        .promo-tile::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }

        .promo-icon {
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 180px;
            opacity: 0.9;
            z-index: 1;
            text-shadow: 0 10px 40px rgba(0,0,0,0.5);
            filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
        }

        .promo-graphic {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.4;
            z-index: 0;
        }

        .promo-content {
            position: relative;
            z-index: 2;
        }

        .promo-tile h3 {
            font-size: 40px;
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: -0.003em;
            color: #fff;
            margin-bottom: 8px;
        }

        .promo-tile p {
            font-size: 21px;
            line-height: 1.381;
            font-weight: 400;
            letter-spacing: 0.011em;
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
        }

        .promo-link {
            color: #2997ff;
            font-size: 17px;
            text-decoration: none;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .promo-link:hover {
            text-decoration: underline;
        }

        /* Specific Tile Backgrounds */
        .tile-networking {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .tile-security {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .tile-cloud {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .tile-datacenter {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        /* Full Width Promo */
        .promo-full {
            grid-column: 1 / -1;
            min-height: 500px;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        /* Feature Section */
        .feature-section {
            background: #f5f5f7;
            position: relative;
            overflow: hidden;
        }

        .feature-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 3px 3px, rgba(102, 126, 234, 0.12) 2px, transparent 0);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .feature-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05), transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 10s ease-in-out infinite;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .feature-item h3 {
            font-size: 24px;
            line-height: 1.16667;
            font-weight: 600;
            letter-spacing: 0.009em;
            margin-bottom: 12px;
        }

        .feature-item p {
            font-size: 17px;
            line-height: 1.47059;
            font-weight: 400;
            letter-spacing: -0.022em;
            color: #6e6e73;
        }

        /* Stats Section */
        .stats-section {
            background: #000;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(102, 126, 234, 0.1) 2px, transparent 2px),
                linear-gradient(90deg, rgba(102, 126, 234, 0.1) 2px, transparent 2px);
            background-size: 80px 80px;
            pointer-events: none;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent 60%);
            transform: translate(-50%, -50%);
            animation: pulse 8s ease-in-out infinite;
        }

        .stats-title {
            font-size: 56px !important;
            line-height: 1.1 !important;
            font-weight: 800 !important;
            letter-spacing: -0.02em !important;
            margin-bottom: 20px !important;
            background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #f093fb 100%) !important;
            background-size: 200% 200% !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            animation: gradientShine 4s ease-in-out infinite !important;
            position: relative !important;
            padding: 10px 0 !important;
        }

        @keyframes gradientShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .stats-subtitle {
            font-size: 21px !important;
            line-height: 1.4 !important;
            font-weight: 500 !important;
            color: rgba(255,255,255,0.9) !important;
            max-width: 700px !important;
            margin: 0 auto 60px !important;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 280px;
        }

        .stat-item h3 {
            font-size: 56px;
            line-height: 1.07143;
            font-weight: 700;
            letter-spacing: -0.005em;
            margin-bottom: 8px;
            background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-item p {
            font-size: 19px;
            color: rgba(255,255,255,0.9);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .stat-detail {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            display: block;
            max-width: 200px;
            margin: 0 auto;
            line-height: 1.5;
            text-align: center;
        }

        .stat-icon {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0.9;
            display: block;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Remove badge styles - no longer needed */

        /* CTA Section */
        .cta-section {
            text-align: center;
            background: #fbfbfd;
        }

        /* Footer - Apple Style */
        footer {
            background: #f5f5f7;
            padding: 40px 22px;
            font-size: 12px;
            color: #6e6e73;
        }

        .footer-container {
            max-width: 980px;
            margin: 0 auto;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #d2d2d7;
        }

        .footer-column h4 {
            font-size: 12px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 8px;
        }

        .footer-column a {
            color: #6e6e73;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #1d1d1f;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }

        /* Mobile Responsive */
        @media (max-width: 1068px) {
            .hero h1 {
                font-size: 56px;
            }
            
            .section-title {
                font-size: 40px;
            }

            .promo-grid {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

                    @media (max-width: 734px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-description {
                font-size: 21px;
            }

            .section-title {
                font-size: 32px;
            }

            .promo-tile h3 {
                font-size: 28px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            .logo-the, .logo-ip, .logo-gurus {
                font-size: 20px;
            }
        }
    