.pb-hero-container-4a53afa2 {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Gentle parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Archivo', sans-serif;
}

.pb-hero-4a53afa2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 10%;
    z-index: 1;
}

.pb-hero-4a53afa2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, 0.75);
    z-index: -1;
}

.pb-hero-content {
    max-width: 800px;
    z-index: 2;
    opacity: 0; /* Handled by JS/CSS animation */
    transform: translateY(30px);
}

.pb-hero-headline {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.pb-hero-subheading {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 40px;
    color: #E0E0E0;
    max-width: 90%;
}

.pb-hero-btn {
    display: inline-block;
    padding: 18px 36px;
    background-color: #9EC141;
    color: #0A0A0A;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 0; /* Sharp corners */
    transition: all 0.3s ease;
    cursor: pointer;
}

.pb-hero-btn:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #0A0A0A;
}

/* Animation class added by JS on load */
.pb-fade-up.pb-animate {
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .pb-hero-4a53afa2 {
        padding: 0 5%;
    }
    .pb-hero-btn {
        padding: 16px 28px;
        width: 100%;
        text-align: center;
    }
}