/* Hero Section */
.hero {
    background-color: var(--bg-black);
    position: relative;
    overflow: hidden;
    padding-top: 10rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    color: #fff;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    padding-left: 1.5rem;
    position: relative;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 3px;
    background-color: var(--brand-green);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-exclusivity {
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted) !important;
}

.highlight-green {
    color: var(--brand-green);
}

/* Orb & Image */
.hero-visuals {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.orb-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--brand-green-glow) 0%, transparent 60%);
    border-radius: 50%;
    top: 50%;
    left: 30%; /* Behind image and text */
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(60px);
}

.hero-profile-img {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 85%;
    width: auto;
    object-fit: contain;
    z-index: 2;
    filter: grayscale(80%) contrast(1.2); /* Match Finch's desaturated look */
    mix-blend-mode: lighten; /* Makes solid black natively transparent over the glow */
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 8rem;
        text-align: center;
    }
    .hero-visuals {
        position: relative;
        width: 100%;
        height: 50vh;
        margin-top: 2rem;
    }
    .hero-profile-img {
        right: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Phones */
@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 0rem; /* Remove bottom padding to let image crash cleanly */
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-tag {
        font-size: 0.8rem;
    }
    /* Let the visual container hold the full image organically */
    .hero-visuals {
        height: auto;
        min-height: auto;
        margin-top: 3rem;
        width: 100vw;
        margin-left: -5%; /* Break out of 5% page padding to allow edge-to-edge glow if needed */
        display: flex;
        justify-content: center;
        align-items: flex-end; /* Flush to bottom */
    }
    .orb-glow {
        width: 450px;
        height: 450px;
        left: 50%;
        top: 60%;
    }
    /* Reverting from absolute to relative structure to force viewport height accurately */
    .hero-profile-img {
        position: relative;
        width: 100%;
        max-width: 450px; /* Don't get absurdly large on landscape phones */
        height: auto;
        right: auto;
        transform: none;
        left: auto;
        margin: 0 auto;
        display: block;
    }
}
