@import url('https://fonts.cdnfonts.com/css/satoshi');

body {
    padding: 0;
    margin: 0;
    font-family: Satoshi;
    background-color: #030303;
    color: white;
}

@keyframes ui-in {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes ui-out {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

.navbar {
    z-index: 9999;
    background-color:#00000060;
    margin-top: 1vmin;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 85vw;
    border-radius: 2vmin;
    padding: 2vmin;
    color: white;
    backdrop-filter: blur(25px);
    outline: 1px solid rgba(255, 255, 255, 0.089);
    font-weight: 400;
    font-size: 1.25em;
}

.fp-desc {
    position: absolute;
    bottom: 5%;
    left: 7.5%;
    display: inline-grid;
    grid-template-rows: auto auto auto;
    gap: 1vmin;
    width: 45vw;
    color: white;
}

.fp-desc-title {
    font-size: 8vmin;
    font-weight: 600;
    white-space: nowrap;
}

.fp-desc-info {
    font-size: 4vmin;
}

.fp-desc-btn {
    outline: 2px solid white;
    font-size: 3vmin;
    padding: 2vmin;
    border-radius: 2vmin;
    font-weight: 500;
}

.fp-desc-btn:hover {
    background-color: white;
    color: black;
    font-size: 3vmin;
    padding: 2vmin;
    border-radius: 2vmin;
    transition: 500ms cubic-bezier(0.46,0.01,0.18,1);
}


.fp-now-phone {
    background-image: linear-gradient(#00000000 50%, #000000cc); 
    position: relative;
    width: 100vw;
    height: 100vh;
}

.fp-now-powerhouse {
    background-image: linear-gradient(#00000000 50%, #000000cc); 

    position: relative;
    width: 100vw;
    height: 100vh;
}

.product-container {
    width: 80%;
    position:absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
}

.product-header {
    display: grid; 
    grid-template-columns: auto auto; 
}

.hover-line {
    width: 100%;
    height: 1px;
    background-color: white;
    animation: 0.5s hover-line-active cubic-bezier(0.94,0.16,0.31,0.94);
}

.inactive {
    background-color: rgba(255, 255, 255, 0.301);
}

.inactive-text {
    color: rgba(255, 255, 255, 0.301);

}

@keyframes hover-line-active {
    0% { width: 0%; }
    100% { width: 100%;}
}

.product-title {
    font-size: 5em;
    line-height: 70px;

}

.phone-image {
    transition: 0.5s cubic-bezier(0.18,0.89,0.32,1.27);
    user-select: none;
}

.phone-image:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.phone-image:active {
    transform: translate(-50%, -50%) scale(1);

}

.phone-image-data {
    display: grid; 
    grid-template-columns: auto auto; 
    color: black;
    position: relative;
    top: 97%;
}

.phone-showcase {
    background-color: white;
    padding: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 500px;
    border-radius: 15px;
}

.features {
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    gap: 25px;
}

.product-feature {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 103.5%;
    border-radius: 25px;
}

.specs-container {
    background-color: white;
    color: black;
    padding: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 97%;
    border-radius: 15px;
}

.feature-desc {
    position: absolute;
    width: 35%;
    transform: translateX(15%);
    bottom: 10%;
}

.center {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    position: absolute;
}

.center-x {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
}

.center-y {
    transform: translateY(-50%);
    top:50%;
    position: absolute;
}

.video-bg {
    position: fixed;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(15px);
    width: 100%;
    height: 100%;
}

.video {
    position: fixed;
    z-index: 999999;
    top: 50%;
    left: 50%;
    aspect-ratio: 16 / 9;
    width: 80vw;
    transform: translate(-50%, -50%);
    border-radius: 25px;
}

.video-visible {
    display: contents;
}

.video-invisible {
    display: none;
}

.preload {
    display: none;
}

.play-video-btn {
    padding: 2vmin 4vmin 2vmin 4vmin;
    background-color: white;
    color: black;
    font-size: 3vmin;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: 200ms cubic-bezier(0.18,0.89,0.32,1.27);
    user-select: none;
    cursor:pointer;
}

.play-video-btn:hover {
    font-size: 3.2vmin;
}

.play-video-btn:active {
    font-size: 2.5vmin;
}

.point {
    color: white;
    padding: 10px;
    background-color: #101010;
    border-radius: 10px;
    width: fit-content;
    float: right;
    justify-self: end;
    font-weight: 600;
    font-size: 0.8em;
    user-select: none;
    margin: 4px;
}

.point:hover {
    background-color: #151515;
}

@media screen and (max-width: 800px) {
    .navbar {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: 92vw;
        font-size: 1em;
    }  

    .product-header {
        grid-template-columns: auto; 
        gap: 10px;
        grid-template-rows: auto auto;
    }

    .product-title {
    }
    

    .product-bar {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: 92vw;
        font-size: 1em;
    }  

    .fp-desc {
        bottom: 5%;
        left: 3%;
        width: 94vw;
    }

    .fp-desc-btn {
        outline: 1px solid white;
    }
}

@media screen and (max-width: 1200px) {

}

a {
    text-decoration: none;
    color: white;
}

/* { outline: 1px solid black;}