/* ==========================================================================
   Hero — On the World Stage (rotating background + logo marquee)
   ========================================================================== */
.hero {
    background: #0b1f33;
}

/* full-bleed background fade slider */
.world-stage__bg-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.world-stage__bg-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* darken the busy painting so the text stays readable */
.hero::after {
    top: 0;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.5) 100%);
}

/* --- bottom content: centred column anchored near the bottom --- */
.hero__bottom {
    bottom: 40px;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.world-stage__title {
    margin-bottom: 44px;
    font-weight: 400;
    font-size: 120px;
    line-height: 78%;
    color: #fff;
}

.world-stage__desc {
    border-top: 1px dashed rgba(255, 255, 255, 0.45);
    padding-top: 10px;
    width: 100%;
    margin-bottom: 250px;
    font-weight: 500;
    font-size: 23px;
    line-height: 87%;
    color: #fff;
}

/* --- looped logo marquee --- */
.world-stage__logos {
    width: calc(100% - 220px); /* 110px of breathing room on each side */
    margin-bottom: 60px;
    overflow: hidden;
}

/* constant-speed, never-stopping marquee */
.world-stage__logos .swiper-wrapper {
    transition-timing-function: linear !important;
}

.world-stage__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 307px;
    height: 169px;
    border: 4px solid #fff;
    border-radius: 8px;
    background: #edf2f2;
}

.world-stage__logo img {
    max-width: 200px;
    max-height: 100px;
}

/* --- progress bars for the background rotation --- */
.world-stage__bars {
    display: flex;
    gap: 20px;
    width: 100%;
}

.world-stage__bar {
    position: relative;
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.world-stage__bar-fill {
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: #fff;
}

/* footer */
.footer {
    margin-top: 150px;
}