#hero {
    background-color: rgb(248, 249, 250);
    width: 100%;
    height: 100vh;
    position: relative;
    border-bottom: 2px solid rgb(233, 236, 239);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#hero img#mtimg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    display: block;
    z-index: 500;
}

#hero h2 {
    color: #1a2547;
    font-size: 80px;
    text-align: center;
    padding-top: 170px;
    margin: 0 20px;
    font-family: "Sora-Variable", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media (max-width: 960px) {
    #hero img#mtimg {
        width: 400px;
        max-width: 100%;
    }

    #hero h2 {
        font-size: 60px;
        padding-top: 200px;
    }
}
.hero-scroll {
    position: absolute;
    bottom: clamp(32px, 6vh, 64px);
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.78;
    animation: heroScrollFade 2.8s ease-in-out infinite;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    z-index: 600;
}

.hero-scroll-label {
    font-weight: 500;
}

.hero-scroll-icon {
    position: relative;
    width: 18px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.hero-scroll-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ffffff;
    display: block;
    animation: heroScrollDot 2.8s ease-in-out infinite;
}

@keyframes heroScrollDot {
    0% {
        transform: translateY(6px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    60% {
        transform: translateY(18px);
        opacity: 0;
    }
    100% {
        transform: translateY(6px);
        opacity: 0;
    }
}

@keyframes heroScrollFade {
    0%, 40%, 100% {
        opacity: 0.78;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 960px) {
    .hero-scroll {
        bottom: clamp(24px, 6vh, 48px);
        font-size: 12px;
        letter-spacing: 0.24em;
    }

    .hero-scroll-icon {
        width: 16px;
        height: 28px;
    }
}

@media (max-width: 600px) {
    .hero-scroll {
        display: none;
    }
}
