/* ===== HERO ===== */
.home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 6% 4rem;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.home .content {
    position: relative;
    z-index: 1;
    flex: 1 1 55%;
}
.home .greeting {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.home h1 {
    font-family: var(--font-display);
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}
.home h1 span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.home .typing-line {
    font-size: 2.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    min-height: 3.5rem;
}
.home .typing-line .typing-text {
    color: var(--accent-secondary);
    font-weight: 600;
}
.home .cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
}
.social-icons {
    display: flex;
    gap: 1.2rem;
    list-style: none;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 12px;
    font-size: 1.8rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: 0.3s;
    text-decoration: none;
}
.social-icons a:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--accent-glow);
}
.home .image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    z-index: 1;
}
.home .image .img-wrapper {
    position: relative;
    width: 35rem;
    height: 35rem;
}
.home .image .img-wrapper::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    right: -8px; bottom: -8px;
    background: var(--gradient-1);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    filter: blur(2px);
}
.home .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
}
