/* Neural Hero Section Styles */
.neural-hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.neural-hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    /* Initially visible, GSAP will handle fade if running */
}

/* Gradient Overlay */
.neural-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(22 22 22) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.neural-hero__bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: linear-gradient(to top, #161616 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.neural-hero__content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    padding: 9rem 1.5rem 6rem;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .neural-hero__content {
        padding-top: 11rem;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .neural-hero__content {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .neural-hero__content {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* Badge */
.neural-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.375rem 0.75rem;
    backdrop-filter: blur(4px);
    opacity: 0;
    transform: translateY(-8px);
}

.neural-hero__badge-label {
    font-size: 0.625rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.neural-hero__badge-dot {
    height: 0.25rem;
    width: 0.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.4);
}

.neural-hero__badge-text {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.8);
}

/* Title */
.neural-hero__title {
    max-width: 42rem;
    text-align: left;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 200;
    letter-spacing: -0.025em;
    color: #fff;
    opacity: 0;
    /* Transformation handled by GSAP */
}

@media (min-width: 640px) {
    .neural-hero__title {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    .neural-hero__title {
        font-size: 4.5rem;
    }
}

/* Description */
.neural-hero__description {
    max-width: 36rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.625;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    transform: translateY(8px);
}

@media (min-width: 640px) {
    .neural-hero__description {
        font-size: 1.125rem;
    }
}

/* CTA Buttons */
.neural-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
}

.neural-hero__btn {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.neural-hero__btn--primary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(4px);
}

.neural-hero__btn--primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.neural-hero__btn--secondary {
    color: rgba(255, 255, 255, 0.8);
}

.neural-hero__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Micro Details */
.neural-hero__micro {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 200;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.6);
    list-style: none;
    padding: 0;
}

.neural-hero__micro-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(6px);
}

.neural-hero__micro-dot {
    height: 0.25rem;
    width: 0.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.4);
}