#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Ambient glow blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    /* GSAP fades these in */
    filter: blur(80px);
}

.blob-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05), transparent 68%);
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -60px;
    left: -180px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.04), transparent 68%);
}

/* Hero Content Layout */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(2rem, 5vw, 6rem);
    position: relative;
    z-index: 1;
}

/* Main name */
.hero-name {
    font-family: var(--font-d);
    font-size: clamp(5rem, 19.5vw, 21rem);
    line-height: 0.84;
    user-select: none;
}

.hero-photo {
    width: clamp(180px, 24vw, 420px);
    flex-shrink: 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(40px);
}

.hero-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-line {
    display: block;
    overflow: hidden;
    /* Clips chars animating up */
}

.hero-char {
    display: inline-block;
    will-change: transform, opacity;
}

/* Bottom bar */
.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    opacity: 0;
    /* GSAP fades in */
}

.hero-role {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-hi);
    font-weight: 700;
}

.hero-globe {
    width: 52px;
    height: 52px;
    opacity: 0.5;
    animation: globe-spin 28s linear infinite;
    flex-shrink: 0;
}

@keyframes globe-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-cue {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-lo);
    font-weight: 600;
}