.hero_section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 70%, transparent 100%);
}

.hero_inner {
    width: 90%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    padding: 3rem 0;
}

.hero_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--background_panel);
    color: var(--text_secondary);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-family: var(--text_font);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0px;
}

.hero_title {
    font-family: var(--header_font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text_primary);
    line-height: 1.2;
}

.hero_subtitle {
    font-family: var(--text_font);
    font-size: 1rem;
    color: var(--text_secondary);
    line-height: 1.6;
    max-width: 480px;
}

.hero_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero_illustration {
    flex-shrink: 0;
}

.hero_img_wrapper {
    width: 180px;
    height: 180px;
    background-color: var(--background_panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    padding: 10px;
    position: relative;
}

.hero_img_wrapper::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
    pointer-events: none;
}

.dev_avatar_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

@media (min-width: 768px) {
    .hero_inner {
        width: 88%;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }

    .hero_title {
        font-size: 2.3rem;
    }

    .hero_subtitle {
        font-size: 1.05rem;
        max-width: 520px;
    }

    .hero_img_wrapper {
        width: 220px;
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .hero_section {
        height: 50vh;
    }

    .hero_inner {
        width: 60%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 4rem;
        padding: 5rem 1vw;
    }

    .hero_content {
        align-items: flex-start;
    }

    .hero_subtitle {
        text-align: left;
        font-size: 1.1rem;
        max-width: 540px;
    }

    .hero_title {
        font-size: 3rem;
    }

    .hero_actions {
        justify-content: flex-start;
    }

    .hero_img_wrapper {
        width: 260px;
        height: 260px;
    }
}