body {
    margin: 0;
    padding-top: 80px; /* reserve space for fixed header so content never scrolls under it */
    font-family: 'Lato', sans-serif;
    padding-top:80px;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100%;
}

/* LOGO */

.logo img{
    height:50px;
}

/* NAVIGATION */

.nav{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-item{
    margin-left:25px;
}

.nav-link{
    text-decoration:none;
    color:black;
    font-weight:500;
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* FIX FOR FIXED HEADER */

body{
    padding-top:80px;
}

section{
    scroll-margin-top:100px;
}

/* MOBILE */

@media (max-width: 768px){

    .menu-toggle{
        display:block;
    }

    #nav-menu{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:white;
        display:none;
        box-shadow:0 5px 10px rgba(0,0,0,0.1);
    }

    #nav-menu.active{
        display:block;
    }

    .nav{
        flex-direction:column;
        align-items:center;
    }

    .nav-item{
        margin:15px 0;
    }

}

/* STORE BUTTONS */

.store-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.store-buttons img {
    height: 55px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-buttons img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* NAV HOVER COLORS */

.nav-link {
    color: black !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:nth-child(odd) .nav-link:hover {
    color: #0072B2 !important;   
}

.nav-item:nth-child(even) .nav-link:hover {
    color: #D55E00 !important;  
}

/* HIGHLIGHT BLOCK */

.highlight-block {
    border-left: 4px solid #D55E00;
    padding: 18px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-block span {
    color: #D55E00;
    font-weight: 800;
    font-size: 20px;
}

.highlight-block p {
    font-size: 19px;
    margin: 0;
    color: #333;
}

.highlight-block:hover {
    background: rgba(213, 94, 0, 0.08);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* HERO SECTION FIXED */

.hero-section{
    position:relative;
    margin-top:80px;
    height:calc(100vh - 80px);
    overflow:hidden;
}

/* HERO VIDEO WRAPPER */

.video-wrapper{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* VIDEO SLIDER */

.video-slider{
    position:relative;
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
    min-height:100%;
    transition:transform 1s ease-in-out;
}

/* VIDEO STYLE */

.video-slider video{
    width:100%;
    height:100vh;
    object-fit:cover;
}

/* Hero GIFs (img.bg-video): stacked full-bleed; only .active is visible */
.video-slider .bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    z-index:0;
    pointer-events:none;
    transition:opacity 0.6s ease-in-out;
}

.video-slider .bg-video.active{
    opacity:1;
    z-index:1;
}

/* DESKTOP / MOBILE VISIBILITY */

.desktop-video{
    display:flex;
}

.mobile-video{
    display:none;
}

@media (max-width:768px){

    .desktop-video{
        display:none;
    }

    .mobile-video{
        display:flex;
    }

}

/* OPTIONAL: PERFORMANCE IMPROVEMENT */

.video-slider video{
    will-change:transform;
}

/* DARK OVERLAY */

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
}

/* CONTENT */

.content-wrapper{
    position:relative;
    z-index:2;
}

.hero-text{
    color:white;
    max-width:650px;
}

/* TITLE */

.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.blue{
    color:#0072B2;
}

.orange{
    color:#D55E00;
}

/* TEXT */

.hero-subtitle{
    font-size:24px;
    font-weight:600;
    color:whitesmoke;
}

.hero-desc{
    font-size:18px;
    opacity:0.85;
}

/* STORE BUTTONS */

.store-buttons img{
    margin-right:10px;
}
.what-section{
    padding:50px 0;
    background:linear-gradient(135deg, #f4faff 0%, #ffffff 100%);
    position:relative;
    overflow:hidden;
}

/* Decorative Background Shape */
.bg-shape{
    position:absolute;
    top:-150px;
    right:-150px;
    width:400px;
    height:400px;
    background:#0072B2;
    opacity:0.08;
    border-radius:50%;
}

/* Section Title */
.what-title{
    font-size:42px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:30px;
}

/* Description Text */
.what-description{
    font-size:20px;
    line-height:1.9;
    color:#333;
    margin-bottom:30px;
}

/* Highlight Blocks */
.highlight-block{
    margin-bottom:15px;
}

.highlight-block p{
    font-size:18px;
    color:#333;
}

.highlight-block span{
    font-weight:700;
    color:#0072B2;
}

/* App Image */
.app-image{
    max-height:480px;
    width:auto;
    object-fit:contain;
    transform:translateY(-10px);
    transition:0.3s ease;
}

.app-image:hover{
    transform:translateY(-10px) scale(1.08);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.platform-section{
    padding:80px 0;
    background:#000;
}

.platform-container{
    width:90%;
    margin:0 auto;
}

.platform-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:60px;
}

/* LEFT SIDE */

.platform-left{
    flex:1;
    min-width:320px;
    display:flex;
    justify-content:center;
}

.image-grid-wrapper{
    position:relative;
    width:100%;
    max-width:600px;
    background:#000;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

.image-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:220px 320px;
}

.grid-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */

.grid-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.overlay-small{
    font-size:26px;
    font-weight:600;
    letter-spacing:4px;
    margin-bottom:15px;
}

.overlay-big{
    font-size:36px;
    font-weight:800;
    margin:8px 0;
}

/* RIGHT SIDE */

.platform-right{
    flex:1;
    min-width:320px;
    background:#ffffff;
    padding:15px 15px 15px 31px;
    box-shadow:0 20px 50px rgba(0,0,0,0.5);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover pop-out effect */
.platform-right:hover{
    transform: scale(1.04);
    box-shadow:0 35px 70px rgba(0,0,0,0.6);
}

.platform-title{
    font-size:36px;
    font-weight:800;
    color:#0072B2;
    line-height:1.4;
    margin-bottom:30px;
}

.platform-list{
    list-style:none;
    padding:0;
    font-size:20px;
    line-height:1.9;
    color:#444;
}

.platform-list li{
    margin-bottom:18px;
}

.bullet{
    color:#D55E00;
    font-weight:700;
    margin-right:8px;
}

.creators-section{
    position:relative;
    padding:90px 40px;   /* added left & right padding */
    overflow:hidden;
}

/* BACKGROUNDS */

.bg-left{
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:100%;
    background:#ffffff;
    z-index:-1;
}

.bg-right{
    position:absolute;
    top:0;
    right:0;
    width:42%;
    height:100%;
    background:#0072B2;
    z-index:-1;
}

/* TITLE */

.creators-title-wrapper{
    position:absolute;
    top:30px;
    right:7%;
    z-index:2;
}

.creators-title{
    font-size:34px;
    font-weight:900;
    letter-spacing:4px;
    color:white;
    margin:0;
}

/* BLACK CONTENT BOX */

.creators-box{
    background:black;
    padding:40px 40px;
    margin-top:60px; /* space below title */
}

/* CREATOR ROW */

.creator-row{
    display:flex;
    align-items:center;
    margin-bottom:60px;
}

.creator-row:last-child{
    margin-bottom:0;
}

/* PHOTO */

.creator-photo{
    flex:0 0 220px;
    text-align:center;
}

.creator-img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:50%;
}

.blue-border{
    border:4px solid #0072B2;
}

.orange-border{
    border:4px solid #D55E00;
}

/* TEXT */

.creator-text{
    flex:1;
    padding-left:50px;
    color:white;
}

.creator-name{
    font-weight:700;
    font-size:28px;
    margin-bottom:10px;
}

.blue-text{
    color:#0072B2;
}

.orange-text{
    color:#D55E00;
}

.creator-desc{
    line-height:1.9;
    font-size:19px;
    color:#cccccc;
}

/* TABLET */

@media (max-width:991px){

    .bg-left{
        width:100%;
    }

    .bg-right{
        width:100%;
        height:120px;
        top:0;
        right:0;
    }

    .creators-title-wrapper{
        position:relative;
        top:auto;
        right:auto;
        text-align:center;
        margin-bottom:30px;
    }

    .creators-title{
        color:white;
    }

    .creator-text{
        padding-left:30px;
    }

}

/* MOBILE */

@media (max-width:768px){

    .creators-section{
        padding:70px 20px;
    }

    .creator-row{
        flex-direction:column;
        text-align:center;
    }
    
    .creator-text{
        padding-left:0;
        margin-top:20px;
    }

    .creator-img{
        width:150px;
        height:150px;
    }

    .creator-name{
        font-size:22px;
    }

    .creator-desc{
        font-size:16px;
        line-height:1.7;
    }

}






.faq-section{
    padding:50px 0;
}

/* LEFT SIDE */

.faq-left{
    background:#ffffff;
    padding:70px;
}

.faq-title{
    font-size:32px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:40px;
}

.faq-item{
    border:1px solid #e5e5e5;
    margin-bottom:15px;
}

.faq-button{
    font-weight:700;
    font-size:18px;
}

/* RIGHT SIDE */

.faq-right{
    background:#0072B2;
    padding:100px 60px;
    color:white;
}

.faq-small-title{
    font-size:16px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.faq-big-title{
    font-size:48px;
    font-weight:900;
    line-height:1.2;
}

/* Stack FAQ intro (blue) above accordion on narrow viewports; DOM order keeps side-by-side on lg+ */
@media (max-width: 991.98px) {
    .faq-section .row > .faq-right {
        order: -1;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .faq-section .row > .faq-right {
        margin-top: 20px;
    }
}

/* LOGO SECTION */

.logo-section{
    padding:70px 0;
    background:#ffffff;
    overflow:hidden;
}

/* wrapper hides overflow */
.logo-wrapper{
    overflow:hidden;
    width:100%;
}

/* scrolling container */
.logo-grid{
    display:flex;
    align-items:center;
    gap:50px;
    width:max-content;
    animation: logoScroll 25s linear infinite;
}

/* logo style */
.logo-img{
    max-height:80px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* hover */
.logo-img:hover{
    transform:scale(1.12);
    box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

/* scroll animation */
@keyframes logoScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.join-section{
    padding:50px 0;
    background:#ffffff;
}

/* LEFT CONTENT */

.join-title{
    font-size:32px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:20px;
}

.join-text{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

.join-text-space{
    margin-top:15px;
}

.email-highlight{
    color:#D55E00;
}

.contact-title{
    font-size:24px;
    font-weight:800;
    color:#0072B2;
    margin-bottom:40px;
}

/* STORE BUTTONS */

.store-buttons{
    display:flex;
    gap:20px;
}

.store-img{
    height:60px;
    cursor:pointer;
}

/* FORM */

.form-box{
    border-radius:12px;
}

.form-group{
    margin-bottom:15px;
}

.form-input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
}

.submit-btn{
    background:#0072B2;
    color:white;
    border:none;
    padding:12px 30px;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
}

.site-footer{
    background:#f5f5f5;
    padding:10px 0;
    border-top:1px solid #e5e5e5;
}

.footer-container{
    width:90%;
    margin:auto;
    text-align:center;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

.footer-link{
    margin:8px 20px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.footer-link:hover{
    text-decoration:underline;
}

/* Tablet */
@media (max-width:768px){
    .footer-link{
        margin:8px 15px;
        font-size:13px;
    }
}

/* Mobile */
@media (max-width:480px){
    .footer-container{
        flex-direction:column;
        gap:8px;
    }

    .footer-link{
        margin:5px 0;
    }
}