/* =========================================================
   TNT CINEMATIC HERO
========================================================= */

.tnt-hero {

    position: relative;

    height: min(760px, 78vh);

    min-height: 540px;

    overflow: hidden;

    background: #333132;

    color: #fff;

}


/* =========================================================
   SLIDES
========================================================= */

.tnt-hero-slides {

    position: absolute;

    inset: 0;

}


.tnt-hero-slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 1s ease,
        visibility 1s ease;

}


.tnt-hero-slide.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* =========================================================
   MEDIA
========================================================= */

.tnt-hero-media {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.tnt-hero-video {

    position: absolute;

    inset: -2%;

    width: 104%;

    height: 104%;

    object-fit: cover;

    transform: scale(1.02);

    filter:
        contrast(1.08)
        brightness(0.82)
        saturate(0.9);

    z-index: 1;

}


/* Fallback image */

.tnt-hero-fallback {

    position: absolute;

    inset: -2%;

    background-size: cover;

    background-position: center;

    transform: scale(1.04);

    transition:
        transform 8s ease-out;

    z-index: 0;

}


/* Subtle movement when slide becomes active */

.tnt-hero-slide.active .tnt-hero-fallback {

    transform: scale(1.10);

}


/* =========================================================
   OVERLAY
========================================================= */

.tnt-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:

        linear-gradient(
            90deg,
            rgba(30,29,30,0.88) 0%,
            rgba(30,29,30,0.67) 35%,
            rgba(30,29,30,0.30) 72%,
            rgba(30,29,30,0.48) 100%
        );

}


/* Slightly stronger bottom fade */

.tnt-hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(20,19,20,0.72) 0%,
            transparent 38%
        );

}


/* =========================================================
   CONTENT
========================================================= */

.tnt-hero-content {

    position: relative;

    z-index: 5;

    width: min(720px, 100%);

    padding-bottom: 80px;

    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.8s ease 0.15s,
        transform 0.8s ease 0.15s;

}


.tnt-hero-slide.active .tnt-hero-content {

    opacity: 1;

    transform: translateY(0);

}


/* Eyebrow */

.tnt-hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color: #BBFF00;

}


.tnt-hero-eyebrow::before {

    content: "";

    width: 34px;

    height: 2px;

    background: #BBFF00;

}


/* Headline */

.tnt-hero-content h1 {

    margin: 0;

    max-width: 800px;

    font-size: clamp(3rem, 6vw, 5.7rem);

    line-height: 0.96;

    font-weight: 800;

    letter-spacing: -0.045em;

    text-transform: uppercase;

    color: #FFFFFF;

}


.tnt-hero-content h1 span {

    color: #BBFF00;

}


/* Description */

.tnt-hero-content p {

    max-width: 610px;

    margin:

        28px

        0

        30px;

    font-size: clamp(1rem, 1.4vw, 1.2rem);

    line-height: 1.65;

    letter-spacing: 0.015em;

    color: rgba(255,255,255,0.9);

}


/* Button */

.tnt-hero-button {

    padding: 13px 27px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}


/* =========================================================
   FORTIFIED
========================================================= */

.tnt-hero-fortified .tnt-hero-overlay {

    background:

        linear-gradient(
            90deg,
            rgba(20,20,20,0.94) 0%,
            rgba(20,20,20,0.76) 42%,
            rgba(20,20,20,0.38) 100%
        );

}


.fortified-eyebrow {

    letter-spacing: 0.30em;

}


.fortified-title {

    font-size: clamp(3.5rem, 7vw, 7rem) !important;

    letter-spacing: 0.02em !important;

}


.fortified-title span {

    color: #BBFF00;

}


.fortified-description {

    max-width: 600px !important;

    font-size: clamp(1.05rem, 1.5vw, 1.3rem) !important;

}


/* =========================================================
   SLIDE NAVIGATION
========================================================= */

.tnt-hero-navigation {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 10;

    padding-bottom: 28px;

}


.tnt-hero-nav-inner {

    display: flex;

    align-items: stretch;

    justify-content: flex-start;

    gap: 8px;

}


.tnt-hero-nav-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    width: 230px;

    padding: 15px 16px 14px;

    border: 0;

    border-top: 1px solid rgba(255,255,255,0.28);

    background: transparent;

    color: rgba(255,255,255,0.62);

    text-align: left;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;

}


.tnt-hero-nav-item:hover {

    color: #fff;

    border-top-color: rgba(255,255,255,0.7);

}


.tnt-hero-nav-item.active {

    color: #fff;

    border-top-color: #BBFF00;

}


.tnt-hero-nav-number {

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    color: #BBFF00;

}


.tnt-hero-nav-label {

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

}


/* Progress bar */

.tnt-hero-progress {

    position: absolute;

    left: 0;

    right: 0;

    bottom: -1px;

    height: 2px;

    overflow: hidden;

}


.tnt-hero-progress span {

    display: block;

    width: 0;

    height: 100%;

    background: #BBFF00;

}


.tnt-hero-nav-item.active .tnt-hero-progress span {

    animation: tntHeroProgress 9s linear forwards;

}


@keyframes tntHeroProgress {

    from {

        width: 0;

    }

    to {

        width: 100%;

    }

}


/* =========================================================
   ARROWS
========================================================= */

.tnt-hero-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 50%;

    background: rgba(0,0,0,0.18);

    color: #fff;

    font-size: 2rem;

    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    opacity: 0.65;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        opacity 0.3s ease;

}


.tnt-hero-arrow:hover {

    opacity: 1;

    background: rgba(0,0,0,0.4);

    border-color: #BBFF00;

    color: #BBFF00;

}

.tnt-hero-arrow span {
    padding-bottom: 3px;
}


.tnt-hero-prev {

    left: 25px;

}


.tnt-hero-next {

    right: 25px;

}

.hero-fortified-seal img {
     width: 120px;
     margin-bottom: 1rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1271px) {

    .tnt-hero-arrow {

        display: none;

    }
}

@media (max-width: 991px) {

    .tnt-hero {

        height: 72vh;

        min-height: 560px;

    }


    .tnt-hero-content {

        padding-bottom: 100px;

    }


    .tnt-hero-content h1 {

        font-size: clamp(2.8rem, 8vw, 4.5rem);

    }


    .tnt-hero-nav-item {

        width: 200px;

    }


    

}


@media (max-width: 767px) {

    .tnt-hero {

        height: 82vh;

        min-height: 600px;

    }


    .tnt-hero-content {

        padding:

            40px

            0

            115px;

    }


    .tnt-hero-content h1 {

        font-size: clamp(2.7rem, 13vw, 4rem);

        line-height: 0.96;

    }


    .tnt-hero-content p {

        margin-top: 22px;

        font-size: 1rem;

        line-height: 1.55;

    }


    .tnt-hero-eyebrow {

        font-size: 0.7rem;

        letter-spacing: 0.18em;

    }


    /* Mobile navigation */

    .tnt-hero-navigation {

        padding-bottom: 18px;

    }


    .tnt-hero-nav-inner {

        gap: 4px;

        width: 100%;

    }


    .tnt-hero-nav-item {

        flex: 1;

        width: auto;

        min-width: 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 4px;

        padding:

            11px

            8px

            12px;

    }


    .tnt-hero-nav-number {

        font-size: 0.65rem;

    }


    .tnt-hero-nav-label {

        font-size: 0.64rem;

        letter-spacing: 0.07em;

        white-space: nowrap;

    }


    .tnt-hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(25,24,25,0.86) 0%,
                rgba(25,24,25,0.55) 100%
            );

    }


    .tnt-hero-overlay::after {

        background:

            linear-gradient(
                0deg,
                rgba(20,19,20,0.85) 0%,
                transparent 48%
            );

    }

}


@media (prefers-reduced-motion: reduce) {

    .tnt-hero-slide,
    .tnt-hero-content,
    .tnt-hero-fallback {

        transition: none;

    }


    .tnt-hero-nav-item.active .tnt-hero-progress span {

        animation: none;

        width: 100%;

    }

}