.home-landing-page {
    margin: 0;
    min-height: 100vh;
    background-color: #080b12;
}

.home-landing {
    position: relative;
    min-height: 100vh;
    color: #fff;
    background-color: #080b12;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-landing__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(8, 11, 18, 0.4));
}

.home-landing__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 5vh 1rem 2rem;
}

.home-landing__signature {
    width: 50vw;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0.6rem 1.4rem rgba(0, 0, 0, 0.45));
}

.home-landing__photo-placeholder {
    width: min(100%, 28rem);
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.45);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.home-landing__photo-placeholder-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.home-landing__photo-placeholder-cta {
    font-weight: 600;
}

.home-landing__title {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 2.7rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.5);
}

.home-landing__webcv-link {
    margin-top: 1.4rem;
    border-radius: 999px;
    padding: 0.72rem 2.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.88);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 0.45rem 1.3rem rgba(0, 0, 0, 0.25);
    transition: all 180ms ease-in-out;
}

.home-landing__webcv-link:hover,
.home-landing__webcv-link:focus,
.home-landing__webcv-link:focus-visible {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .home-landing__signature {
        width: 75vw;
    }
}

@media (max-width: 767.98px) {
    .home-landing__signature {
        width: 90vw;
    }
}

@media (max-width: 576px) {
    .home-landing__content {
        padding: 3.5vh 1rem 1.25rem;
    }

    .home-landing__signature {
        margin-bottom: 0.9rem;
    }
}
