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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 2rem;
            width: auto;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            margin-left: 2rem;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #00ed72;
        }

        /* Hero Section */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            color: #999;
            margin-bottom: 2rem;
        }

        .hero .tagline {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Globe Container */
        #globe-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            z-index: 1;
        }

        #globe-canvas {
            width: 100%;
            height: 100%;
        }

        /* About Section */
        .about {
            padding: 2rem 0 8rem 0;
            background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .lead-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #cccccc;
            max-width: 900px;
            margin: 0 auto;
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .capability-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .capability-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 237, 114, 0.3);
            transform: translateY(-2px);
        }

        .capability-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #00ed72;
            font-weight: 600;
        }

        .capability-card p {
            color: #aaaaaa;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .tech-highlights {
            list-style: none;
            padding-left: 0;
        }

        .tech-highlights li {
            color: #888888;
            padding: 0.6rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .tech-highlights li:before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #00ed72;
            font-weight: bold;
        }

        .about-philosophy {
            background: rgba(0, 237, 114, 0.03);
            border: 1px solid rgba(0, 237, 114, 0.1);
            border-radius: 12px;
            padding: 3rem;
            margin-top: 3rem;
        }

        .about-philosophy h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #00ed72;
            font-weight: 600;
        }

        .about-philosophy p {
            color: #bbbbbb;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-philosophy p:last-child {
            margin-bottom: 0;
        }

        /* Projects Section */
        .projects {
            padding: 8rem 0;
            background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .project-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #00ed72;
            transform: translateY(-5px);
        }

        .project-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #00ed72;
        }

        .project-card p {
            color: #999;
            line-height: 1.6;
        }

        .project-image {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            object-position: top;
            border-radius: 8px;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: #000000;
        }

        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-info {
            margin-top: 3rem;
        }

        .contact-item {
            margin: 1.5rem 0;
        }

        .contact-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .contact-value {
            font-size: 1.2rem;
            color: #ffffff;
        }

        .contact-value a {
            color: #00ed72;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .contact-value a:hover {
            opacity: 0.7;
        }

        /* Footer */
        footer {
            padding: 2rem 0;
            text-align: center;
            color: #666;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.2rem;
            }

            #globe-container {
                width: 500px;
                height: 500px;
            }

            nav a {
                margin-left: 1rem;
                font-size: 0.8rem;
            }

            .about {
                padding: 4rem 0;
            }

            .lead-text {
                font-size: 1.1rem;
            }

            .capabilities-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .capability-card {
                padding: 2rem;
            }

            .capability-card h3 {
                font-size: 1.5rem;
            }

            .about-philosophy {
                padding: 2rem;
            }

            .about-philosophy h3 {
                font-size: 1.5rem;
            }

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