

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f4f1eb;
    color: #fff
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

section {
    scroll-margin-top: 80px
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: background .4s ease, height .4s ease, backdrop-filter .4s ease
}

.header.scrolled {
    height: 80px;
    background: rgba(11, 17, 16, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.logo {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1.5px
}

.logo span {
    color: #b8ff5a
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px
}

.nav a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
    transition: .3s
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: .3s
}

.nav a:hover {
    color: #fff
}

.nav a:hover::after {
    width: 100%
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500
}

.header-cta span {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.header-cta:hover span {
    background: #b8ff5a;
    border-color: #b8ff5a;
    color: #111;
    transform: rotate(45deg)
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    cursor: pointer
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 1px;
    background: #fff;
    margin: 7px 0
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=2000&q=85") center/cover no-repeat;
    transform: scale(1.08);
    animation: bgZoom 10s ease forwards
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 12, 18, .93) 0%, rgba(6, 12, 18, .78) 48%, rgba(6, 12, 18, .3) 100%)
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .45), transparent 50%)
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 150px 12% 80px 10%;
    z-index: 2
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px
}

.hero-label span {
    width: 32px;
    height: 1px;
    background: #b8ff5a
}

.hero-label p {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, .65)
}

.hero-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(55px, 7.5vw, 78px);
    line-height: 1.3;
    letter-spacing: -2px;
    font-weight: 500;
    max-width: 1100px
}

.title-line {
    display: block;
    overflow: hidden
}

.title-line>span {
    display: block;
    transform: translateY(110%);
    animation: titleReveal 1s cubic-bezier(.76, 0, .24, 1) forwards
}

.title-line:nth-child(2)>span {
    animation-delay: .12s
}

.title-line:nth-child(3)>span {
    animation-delay: .24s
}

.hero-title em {
    font-family: Georgia, serif;
    font-weight: 400;
    color: #b8ff5a
}

.hero-bottom {
    margin-top: 55px;
    /* margin-left: 20%; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px
}

.hero-bottom p {
    max-width: 690px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .68)
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 10px;
    transition: .3s
}

.hero-btn i {
    font-style: normal;
    font-size: 18px;
    transition: .3s
}

.hero-btn:hover {
    border-color: #b8ff5a;
    color: #b8ff5a
}

.hero-btn:hover i {
    transform: translate(5px, 5px)
}

.hero-index {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    color: rgba(255, 255, 255, .5)
}

.hero-index div {
    height: 100px;
    width: 1px;
    background: linear-gradient(#b8ff5a 25%, rgba(255, 255, 255, .25) 25%)
}

/* .scroll-text {
    position: absolute;
    left: 4%;
    bottom: 45px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(-90deg);
    transform-origin: left center
}

.scroll-text span {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .5)
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, .4);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    background: #b8ff5a;
    animation: scrollMove 2s infinite
} */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s ease .7s forwards
}

@keyframes titleReveal {
    to {
        transform: translateY(0)
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bgZoom {
    to {
        transform: scale(1)
    }
}

@keyframes scrollMove {
    from {
        left: -20px
    }

    to {
        left: 50px
    }
}

@media(max-width:900px) {
    .header {
        height: 80px;
        padding: 0 6%
    }

    .nav,
    .header-cta {
        display: none
    }

    .menu-btn {
        display: block
    }

    .nav.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #081018;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 8%;
        gap: 30px
    }

    .nav.active a {
        font-size: 30px
    }

    .hero-content {
        padding: 130px 8% 80px
    }

    .hero-title {
        font-size: clamp(50px, 13vw, 85px);
        letter-spacing: -4px
    }

    .hero-bottom {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 45px
    }

    .hero-index {
        display: none
    }

    /* .scroll-text {
        display: none
    } */
}

@media(max-width:550px) {
    .hero-title {
        font-size: clamp(46px, 14vw, 70px);
        letter-spacing: -3px
    }

    .hero-label {
        margin-bottom: 25px
    }

    .hero-bottom p {
        font-size: 14px
    }
}