.hero {
    min-height: 100vh;
    padding: 130px 8% 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 12% 18%, rgba(154, 106, 122, 0.09) 0%, transparent 42%),
                radial-gradient(circle at 88% 82%, rgba(197, 140, 155, 0.08) 0%, transparent 45%),
                var(--bg);
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4.5rem;
    position: relative;
    z-index: 1;
}

/* ── Left Content Column ── */
.hero-content {
    flex: 1.25;
    max-width: 620px;
}

/* ── Status Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.95rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-sub);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.2rem;
    width: fit-content;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-dot::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.4);
    animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.6px;
    color: var(--text-title);
    margin-bottom: 0.6rem;
}

.hero-name-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.2rem;
    letter-spacing: -0.2px;
}

.hero-description {
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    max-width: 540px;
}

.hero-description strong {
    color: var(--text-title);
    font-weight: 600;
}

/* ── Tech Pills ── */
.hero-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2.2rem;
}

.tech-pill {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    background: var(--surface);
    color: var(--text-sub);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.tech-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 106, 122, 0.15);
}

/* ── Actions: Buttons & Socials ── */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.8rem;
    background: var(--btn-bg);
    color: var(--btn-text);
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(59, 36, 52, 0.2);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn:hover {
    background: var(--btn-hover);
    transform: translateY(-2.5px);
    box-shadow: 0 8px 24px rgba(138, 89, 107, 0.3);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.8rem;
    background: var(--surface);
    color: var(--text-title);
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.secondary-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--surface);
    transform: translateY(-2.5px);
    box-shadow: var(--shadow);
}

/* ── Social Strip ── */
.hero-socials {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-sub);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.hero-social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(154, 106, 122, 0.18);
}

/* ── Profile Image Presentation ── */
.hero-image-wrapper {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: var(--grad-accent);
    opacity: 0.16;
    transform: rotate(-3deg) scale(1.03);
    z-index: 0;
    transition: transform 0.4s ease;
}

.hero-image-wrapper:hover::before {
    transform: rotate(0deg) scale(1.05);
}

.hero-image-frame {
    width: 300px;
    height: 385px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 3px solid var(--surface);
    box-shadow: var(--shadow-h);
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-image-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 45px -5px rgba(59, 36, 52, 0.14);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-img {
    transform: scale(1.03);
}

/* ── Floating Info Chip ── */
.hero-floating-chip {
    position: absolute;
    bottom: -16px;
    left: -20px;
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    box-shadow: 0 10px 25px -4px rgba(59, 36, 52, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    animation: floatChip 4s ease-in-out infinite;
}

@keyframes floatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.chip-icon {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-text {
    display: flex;
    flex-direction: column;
}

.chip-text strong {
    font-size: 0.82rem;
    color: var(--text-title);
    font-weight: 700;
    line-height: 1.2;
}

.chip-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Scroll Indicator ── */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 2px;
    height: 34px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 2px;
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { opacity: 1; transform: scaleY(1) translateY(0); }
    100% { opacity: 0; transform: scaleY(0.3) translateY(12px); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero {
        padding: 130px 6% 70px;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3.5rem;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-tech-pills {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-socials {
        justify-content: center;
    }

    .hero-image-wrapper {
        flex: none;
    }

    .hero-floating-chip {
        left: 50%;
        transform: translateX(-50%);
        bottom: -18px;
        animation: none;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 550px) {
    .hero {
        padding: 110px 5% 50px;
    }

    .hero-image-frame {
        width: 250px;
        height: 320px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
