/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    padding-top: 4rem;
    z-index: 1;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-greeting {
    color: var(--mint-green);
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    color: var(--electric-blue);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-subtitle .highlight {
    color: var(--electric-blue);
}

.hero-subtitle .highlight-green {
    color: var(--mint-green);
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--electric-blue);
    color: var(--night);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--mint-green);
    transform: scale(1.05);
}

/* Responsive */
@media (min-width: 480px) {
    .hero-greeting {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 640px) {
    .hero {
        padding: 0 1.25rem;
        padding-top: 4.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 0 1.5rem;
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.875rem;
    }
}
