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

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

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

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

nav {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00d9ff;
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-size: 0.9rem;
    color: #888;
}

hero {
    padding: 10rem 0 8rem 0;
    display: block;
}

h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-text {
    font-size: 1.4rem;
    color: #888;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
}

.highlight {
    color: #00d9ff;
}

.section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00d9ff;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.capability {
    position: relative;
}

.capability-number {
    position: absolute;
    top: -10px;
    left: -40px;
    font-size: 3rem;
    color: rgba(0, 217, 255, 0.1);
    font-weight: 700;
}

.capability h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
}

.capability p {
    color: #888;
    line-height: 1.7;
    font-size: 1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin: 4rem 0;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 6rem 0;
}

.mission-statement p {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 300;
    color: #cccccc;
}

footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #444;
    font-size: 0.85rem;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .mission-statement p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    hero {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}