#hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 1
}

.hero-content {
    max-width: 850px;
    margin: 0 auto
}

.hero-greeting {
    font-family: var(--fm);
    font-size: 0.85rem;
    color: var(--green);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-greeting::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--green);
    display: inline-block
}

.hero-name {
    font-family: var(--fd);
    font-size: clamp(2.8rem, 10vw, 6.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 8px
}

.hero-name .hl {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-tagline {
    font-family: var(--fd);
    font-size: clamp(1rem, 3.5vw, 1.8rem);
    font-weight: 600;
    color: var(--slate);
    margin: 20px 0 28px;
    line-height: 1.4
}

.hero-tagline em {
    font-style: normal;
    color: var(--purple)
}

.hero-desc {
    max-width: 580px;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 44px
}

.hero-desc strong {
    color: var(--green);
    font-weight: 500
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px
}

.hero-socials {
    display: flex;
    gap: 16px
}

.hero-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--slate);
    transition: all var(--tr)
}

.hero-socials a:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
    background: var(--green-dim)
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 48px
}

.hero-badge {
    font-family: var(--fm);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 160, 0.2);
    color: var(--slate);
    background: rgba(0, 245, 160, 0.04)
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--fm);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate);
    animation: fadeUp 1s 1.5s both
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green), transparent);
    animation: scrollAnim 1.5s ease-in-out infinite
}

@media(min-width:768px) {
    .hero-content {
        text-align: left
    }

    .hero-socials {
        justify-content: flex-start
    }
}