/* Reset + base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: #000;
    /* color: #fff; */
    overflow-x: hidden;
}

/* header */
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.0);
    padding: 14px 40px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.logo {
    font-weight: 600;
    letter-spacing: 4px;
    opacity: .85;
}

.nav-right {
    font-size: 12px;
    opacity: .6;
    letter-spacing: 3px;
}

/* top progress thin line */
.top-progress {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 58px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.top-progress::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
    transition: width .15s linear;
}

/* full-screen screens */
.screen {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center {
    max-width: 1100px;
    text-align: center;
    padding: 0 20px;
}

.column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

/* intro */
.intro-screen {
    background: #000;
}

.intro-text {
    font-weight: 300;
    font-size: 34px;
    line-height: 1.25;
    color: #fff;
    opacity: 1;
    letter-spacing: 0.5px;
    max-width: 900px;
    margin: 0 auto;
}

/* loader */
.loader-screen {
    background: #000;
}

.loader-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: #bdbdbd;
    margin-bottom: 8px;
    opacity: .85;
}

.loader-title {
    font-weight: 300;
    font-size: 44px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #fff;
}

/* loader bar */
.loader-bar {
    width: 70%;
    max-width: 820px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    width: 0%;
    height: 100%;
    background: #fff;
    transform-origin: left center;
}

/* percent + button */
.loader-percent {
    margin-top: 10px;
    color: #ddd;
    font-size: 14px;
}

.enter-btn {
    margin-top: 26px;
    padding: 10px 22px;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

/* helper classes */
.hidden {
    display: none;
}

.center.block {
    text-align: center;
}

/* hero after entering */
main.hidden {
    display: none;
}

main {
    display: block;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .95;
}

.hero .hero-overlay {
    position: relative;
    z-index: 2;
    height: 100vh;
    /* display: flex;
    align-items: center; */
}

.hero .hero-left {
    position: absolute;
    bottom: 30%;
    width: 50%;
    padding-left: 20px;
    color: #fff;
}

.hero .hero-title {
    font-weight: 300;
    font-size: 64px;
    line-height: 1.02;
    margin-bottom: 24px;
}

/* action row */
.hero .hero-actions {
    position: absolute;
    bottom: 5%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #fff;
}

.btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.watch-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}




/* .home_para {
  height: 500vh;       
  background: #fff;
}

.home_para_stk {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home_para_t {
  position: absolute;
  opacity: 0;
  font-size: 40px;
  line-height: 50px;
  max-width: 70%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
} */




.home_para {
    height: 200vh;
    /* enough scroll space */
    /* background: #fff; */
    background: linear-gradient(to bottom, #862A41, #541829);
}

.home_para_stk {
    position: relative;
    height: 70vh;
}

.home_para_t {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    /* max-width: 900px; */
    text-align: center;

    font-size: 25px;
    line-height: 35px;
    color: #fff;
    opacity: 0;
}

.home_para_word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.35em;
    /* ← this replaces &nbsp; */
}

.home_para_word:last-child {
    margin-right: 0;
}

.home_para_word span {
    display: inline-block;
    transform: translateY(120%);
    opacity: 0;
}

.vision {
    height: calc(100vh * 5);
    background: #0d0f1a;
    color: white;
}

.vision-pin {
    position: sticky;
    top: 0;
    height: 100vh;
}



.slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding-left: 8vw; */
    opacity: 0;
    transform: translateY(40px);
}

.slide h2 {
    font-size: 64px;
    margin: 0;
}

.slide p {
    font-size: 18px;
    /* max-width: 420px; */
    /* opacity: 0.7; */
}

.slide.active {
    opacity: 1;
    /* transform: translateY(0); */
}

.slide a {
    background: linear-gradient(to bottom, #862A41, #541829);
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.slide a:hover {
    background: #ffffffdd;
    color: #862A41;
}

.slide .content {
    position: absolute;
    z-index: 1;
    left: 8vw;
}

.slide .hero-video {
    opacity: 0.7;
}

/* Progress bar */
.progress {
    position: absolute;
    bottom: 40px;
    left: 8vw;
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: white;
}

@media (min-width: 320px) and (max-width: 767px) {

    .intro-text,
    .loader-title {
        font-size: 28px;
        line-height: 38px;
    }

    .site-header {
        padding: 14px 20px;
    }

    .logo {
        letter-spacing: 1px;
        font-size: 15px;
    }

    .nav-right {
        font-size: 11px;
        letter-spacing: .5px;
    }

    .top-progress {
        left: 20px;
        right: 20px;
    }

    .home_para {
        height: 210vh;
    }

    .home_para_t {
        top: 25%;
        left: 0;
        right: 0;
        transform: none;
        margin: auto;
        width: 100%;
        font-size: 15px;
        line-height: 22px;
        font-weight: 500;
    }

    .slide {
        justify-content: flex-start;
        padding-top: 50px;
    }

    .slide .content {
        position: unset;
        padding: 20px;
        text-align: center;
    }

    .slide h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    }

    .slide p {
        font-size: 16px;
        line-height: 28px;
    }

    .slide a {
        font-size: 15px;
        padding: 8px 30px;
    }

    .progress {
        left: 0;
        right: 0;
        margin: auto;
        width: 90%;
    }

}