/* Technology Hero Section - Light Theme (Matches Culture & Who We Are) */

.neural-gradient-text {
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Section - Light Theme */
.technology-hero {
    padding-top: calc(var(--header-height, 90px) + 4rem);
    padding-bottom: 5rem;
    background: #FFFFFF;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient background */
.technology-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.technology-hero .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.technology-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.technology-hero .hero-text-content {
    flex: 1;
    max-width: 650px;
}

.technology-hero .hero-visual-content {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-hero .hero-visual-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.technology-hero .hero-visual-image:hover {
    transform: scale(1.5);
    z-index: 10;
}

/* TECHNOLOGY label - purple accent */
.technology-hero .hero-label {
    font-family: var(--font-primary);
    color: var(--np-purple, #3c1361);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-md, 1rem);
}

/* Main heading - uses display typography */
.technology-hero .hero-heading {
    font-family: var(--font-primary);
    color: var(--text-primary, #111827);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extra-light, 200);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 2rem 0;
}

/* Tagline - secondary text styling */
.technology-hero .hero-tagline {
    font-family: var(--font-primary);
    color: var(--np-orange, #EA580C);
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium, 500);
    margin-bottom: var(--space-md, 1rem);
}

/* Description paragraph */
.technology-hero .hero-description {
    font-family: var(--font-primary);
    color: var(--text-secondary, #6B7280);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: var(--font-weight-light, 300);
    margin: 0 0 1.5rem 0;
}

.technology-hero .hero-description:last-child {
    margin-bottom: 0;
}

/* First paragraph emphasis */
.technology-hero .hero-description:first-of-type {
    font-size: 1.25rem;
    color: var(--text-primary, #374151);
}

/* Inline links in hero */
.technology-hero .inline-text-link {
    color: var(--neural-purple, #3c1361);
    text-decoration-color: rgba(60, 19, 97, 0.3);
}

.technology-hero .inline-text-link:hover {
    color: var(--neural-orange, #d97706);
    text-decoration-color: rgba(217, 119, 6, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .technology-hero .hero-content {
        gap: 3rem;
    }

    .technology-hero .hero-visual-image {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .technology-hero {
        min-height: auto;
        padding-top: calc(var(--header-height, 70px) + 2rem);
        padding-bottom: 3rem;
    }

    .technology-hero .hero-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .technology-hero .hero-text-content {
        max-width: 100%;
    }

    .technology-hero .hero-visual-content {
        width: 100%;
        order: -1;
    }

    .technology-hero .hero-visual-image {
        max-width: 280px;
    }

    .technology-hero .container {
        padding: 0 var(--space-lg, 1.5rem);
    }

    .technology-hero .hero-heading {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .technology-hero .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .technology-hero .hero-description:first-of-type {
        font-size: 1.0625rem;
    }

    .technology-hero .hero-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .technology-hero .hero-heading {
        font-size: 1.625rem;
    }
}
