/* HS- Hero (page-scoped) */
.HS-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.HS-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(44, 62, 80, 0.55),
            rgba(44, 62, 80, 0.35));
    z-index: 1;
    pointer-events: none;
}

.HS-container {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    margin: 0 auto;
}

.HS-kicker {
    display: inline-block;
    background: rgba(236, 240, 241, 0.1);
    border: 1px solid rgba(236, 240, 241, 0.25);
    color: #ecf0f1;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    -webkit-backdrop-filter: saturate(140%) blur(6px);
    backdrop-filter: saturate(140%) blur(6px);
}

.HS-title {
    font-family: "Russo One", sans-serif;
    font-size: 3.25rem;
    color: #ecf0f1;
    margin: 0 0 1.25rem;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.HS-sub {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #3498db;
    margin: 0 0 1.25rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.HS-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    color: #bdc3c7;
    margin: 0 0 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

.HS-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.HS-btnPrimary {
    background: #3498db;
    border: 2px solid #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.HS-btnPrimary:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.HS-btnGhost {
    background: transparent;
    border: 2px solid #ecf0f1;
    color: #ecf0f1;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.HS-btnGhost:hover {
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    transform: translateY(-2px);
}

.HS-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    justify-items: center;
}

.HS-stat {
    background: rgba(236, 240, 241, 0.06);
    border: 1px solid rgba(236, 240, 241, 0.18);
    padding: 0.875rem 1rem;
    border-radius: 12px;
    min-width: 140px;
    -webkit-backdrop-filter: saturate(140%) blur(6px);
    backdrop-filter: saturate(140%) blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.HS-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.HS-statValue {
    display: block;
    font-family: "Russo One", sans-serif;
    font-size: 1.35rem;
    color: #ecf0f1;
}

.HS-statLabel {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    color: #bdc3c7;
}

.HS-scroll {
    margin-top: 2rem;
    background: transparent;
    border: none;
    color: #ecf0f1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.9;
}

.HS-scroll:hover {
    opacity: 1;
}

.HS-scrollMouse {
    width: 26px;
    height: 42px;
    border: 2px solid #ecf0f1;
    border-radius: 20px;
    position: relative;
}

.HS-scrollMouse::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ecf0f1;
    border-radius: 2px;
    animation: HS-scrollDot 1.8s infinite ease-in-out;
}

.HS-scrollText {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    color: #bdc3c7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes HS-scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, -4px);
    }

    40% {
        opacity: 1;
        transform: translate(-50%, 6px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

@media (max-width: 768px) {
    .HS-hero {
        padding: 1rem 0;
    }

    .HS-container {
        padding: 0 1rem;
    }

    .HS-title {
        font-size: 2.4rem;
    }

    .HS-sub {
        font-size: 1.05rem;
    }

    .HS-desc {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .HS-actions {
        flex-direction: column;
    }

    .HS-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .HS-btnPrimary,
    .HS-btnGhost {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .HS-container {
        padding: 0 0.5rem;
    }

    .HS-title {
        font-size: 2rem;
    }

    .HS-sub {
        font-size: 1rem;
    }

    .HS-desc {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .HS-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}