/* styles.css */
:root {
    --primary: #00f3ff;
    --secondary: #6c5ce7;
    --background: #0a0a14;
    --text: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 5%;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.9);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

section {
    padding: 8rem 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero {
    background: radial-gradient(circle at center, rgba(108,92,231,0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.coming-soon {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0,243,255,0.1);
    border: 1px solid var(--primary);
    border-radius: 2rem;
    margin-top: 2rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.contact {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
}