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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-outline {
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    padding: 0.5rem 1rem;
    background: #ffffff;
    border-radius: 8px;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #e0e0e0;
}

/* Hero */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-style: italic;
}

.hero-title svg {
    vertical-align: middle;
    margin: 0 0.25rem;
}

.icon-code, .icon-query, .icon-ai {
    display: inline-flex;
    align-items: center;
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
}

.btn-cta-light {
    padding: 1rem 2rem;
    background: #f5f5f4;
    border-radius: 50px;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cta-light:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    padding: 1rem 2rem;
    border: 1px solid #333;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.card {
    position: absolute;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 220px;
}

.card-1 {
    top: 30%;
    right: 10%;
    border-color: #c084fc;
}

.card-2 {
    top: 55%;
    right: -5%;
    border-color: #c084fc;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    flex: 1;
    font-size: 0.95rem;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
}

.dots {
    letter-spacing: 2px;
}

.lines {
    position: absolute;
    top: 20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(192, 132, 252, 0.1) 10px,
        rgba(192, 132, 252, 0.1) 11px
    );
    transform: rotate(-15deg);
}

/* Gradient Bar */
.gradient-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(90deg,
        #84cc16 0%,
        #a3e635 20%,
        #fde047 40%,
        #fbbf24 60%,
        #f59e0b 80%,
        #84cc16 100%
    );
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-actions .btn-outline,
    .nav-actions .btn-link {
        display: none;
    }
}
