.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, #0d1117 50%, #0a0e14 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 25% 25%, rgba(0, 255, 200, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(0, 255, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    animation: heroFadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 255, 200, 0.3);
}

.hero .subtext {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--color-subtle);
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #00e6b8 100%);
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 255, 200, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 200, 0.4);
    background: linear-gradient(135deg, #00e6b8 0%, var(--color-accent) 100%);
}

.btn-cta:hover::before {
    left: 100%;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 1rem;
    }

    .hero h1 {
        margin-bottom: 1rem;
    }

    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}