*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Outfit',sans-serif;
    background:#030712;
    overflow-x:hidden;
    overflow-y:auto;
    color:#ffffff;
    min-height:100vh;
    position:relative;
}

/* ========================================
   BACKGROUND
======================================== */

.gradient-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:0;
}

.gradient-bg::before,
.gradient-bg::after{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    filter:blur(120px);
    opacity:.42;
    animation:move 12s infinite alternate ease-in-out;
}

.gradient-bg::before{
    background:#8bc53f;
    top:-250px;
    left:-150px;
}

.gradient-bg::after{
    background:#36c2d9;
    bottom:-300px;
    right:-150px;
    animation-delay:3s;
}

.hero-bg-image{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(3,7,18,0.58),
        rgba(3,7,18,0.68)
    ),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1974&auto=format&fit=crop')
    center center/cover no-repeat;

    opacity:.82;
    z-index:0;
}

.grid-overlay{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size:50px 50px;

    mask-image:
    radial-gradient(circle at center, black 40%, transparent 90%);

    z-index:0;
}

/* ========================================
   MAIN WRAPPER
======================================== */

.main-wrapper{
    position:relative;
    z-index:2;
    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;
}

.coming-container{
    width:100%;
    max-width:1350px;

    border-radius:40px;

    padding:55px 60px;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 0 80px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.03);

    position:relative;
    overflow:hidden;
}

.coming-container::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        120deg,
        rgba(255,255,255,0.05),
        transparent 50%
    );

    pointer-events:none;
}

/* ========================================
   LOGO
======================================== */

.logo img{
    width:320px;
    margin-bottom:45px;
    animation:fadeUp 1s ease forwards;
}

/* ========================================
   TOP BADGE
======================================== */

.top-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 24px;

    border-radius:80px;

    background:rgba(255,255,255,0.07);

    border:1px solid rgba(255,255,255,0.1);

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#9fe7ff;

    margin-bottom:35px;

    animation:fadeUp 1.2s ease forwards;
}

.top-badge span{
    width:10px;
    height:10px;

    background:#8bc53f;

    border-radius:50%;

    box-shadow:0 0 15px #8bc53f;
}

/* ========================================
   HERO TITLE
======================================== */

.hero-title{
    font-size:88px;
    line-height:1.15;
    font-weight:400;
    letter-spacing:-3px;

    margin-bottom:35px;

    background:
    linear-gradient(to right,#ffffff,#b7df5f);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:fadeUp 1.4s ease forwards;
}

.hero-title span{
    display:block;

    background:
    linear-gradient(
        90deg,
        #8bc53f,
        #36c2d9
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ========================================
   DESCRIPTION
======================================== */

.description{
    max-width:780px;

    color:rgba(255,255,255,0.72);

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

    animation:fadeUp 1.6s ease forwards;
}

/* ========================================
   COUNTER
======================================== */

.counter-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-bottom:40px;

    animation:fadeUp 1.8s ease forwards;
}

.counter-box{
    position:relative;

    border-radius:28px;

    padding:30px 18px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.09),
        rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,255,255,0.08);

    overflow:hidden;

    transition:0.35s ease;

    backdrop-filter:blur(12px);
}

.counter-box:hover{
    transform:translateY(-8px);

    border-color:rgba(139,197,63,0.45);

    box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.counter-box::before{
    content:'';

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(139,197,63,0.10);

    border-radius:50%;

    top:-80px;
    right:-80px;
}

.counter-box h2{
    font-size:72px;
    line-height:1;
    font-weight:800;

    margin-bottom:12px;

    color:#ffffff;

    position:relative;
    z-index:2;
}

.counter-box p{
    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    color:rgba(255,255,255,0.65);

    position:relative;
    z-index:2;
}

/* ========================================
   DOWNLOAD BUTTON
======================================== */

.cta-wrapper{

    margin-bottom:45px;

    animation:
    fadeUp 2.2s ease forwards;
}

/* BUTTON */

.download-btn{

    width:fit-content;

    display:flex;
    align-items:center;
    gap:16px;

    padding:16px 24px;

    border-radius:20px;

    text-decoration:none;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(139,197,63,0.16),
        rgba(54,194,217,0.16)
    );

    border:1px solid rgba(255,255,255,0.10);

    backdrop-filter:blur(14px);

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

/* SHINE EFFECT */

.download-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:80%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.20),
        transparent
    );

    transform:skewX(-20deg);

    transition:.75s ease;
}

/* BUTTON HOVER */

.download-btn:hover::before{
    left:140%;
}

.download-btn:hover{

    transform:
    translateY(-5px)
    scale(1.03);

    border-color:
    rgba(139,197,63,0.35);

    box-shadow:
    0 18px 45px rgba(54,194,217,0.18);
}

/* TEXT */

.download-btn span{

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    letter-spacing:0.5px;

    position:relative;
    z-index:2;
}

/* ICON */

.download-icon{

    width:42px;
    height:42px;

    min-width:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    background:
    linear-gradient(
        135deg,
        #8bc53f,
        #36c2d9
    );

    color:#ffffff;

    position:relative;
    z-index:2;

    transition:
    transform .35s ease,
    box-shadow .35s ease;
}

/* SVG ICON */

.download-icon svg{

    width:18px;
    height:18px;

    stroke:#ffffff;
}

/* ICON HOVER */

.download-btn:hover .download-icon{

    transform:
    translateX(4px)
    rotate(-8deg);

    box-shadow:
    0 8px 20px rgba(54,194,217,0.35);
}

/* ACTIVE */

.download-btn:active{

    transform:scale(.98);
}

/* MOBILE */

@media(max-width:767px){

    .download-btn{

        width:100%;

        justify-content:space-between;

        padding:15px 18px;
    }

    .download-btn span{

        font-size:14px;
    }

    .download-icon{

        width:38px;
        height:38px;
    }

}
/* ========================================
   FOOTER
======================================== */

.bottom-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;

    animation:fadeUp 2s ease forwards;
}

.launch-text{
    color:rgba(255,255,255,.55);
    font-size:16px;
    letter-spacing:1px;
}

/* ========================================
   SOCIAL ICONS
======================================== */

.social-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.social-icons a{
    width:56px;
    height:56px;

    border-radius:16px;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s ease;

    backdrop-filter:blur(10px);
}

.social-icons a img{
    width:24px;
    height:24px;

    object-fit:contain;

    display:block;
}

.social-icons a:hover{
    transform:translateY(-6px);

    background:
    linear-gradient(
        135deg,
        #8bc53f,
        #36c2d9
    );

    border-color:transparent;

    box-shadow:
    0 10px 30px rgba(54,194,217,.25);
}

/* ========================================
   FLOATING LINE
======================================== */

.floating-line{
    position:absolute;

    width:500px;
    height:500px;

    border:1px solid rgba(255,255,255,0.06);

    border-radius:50%;

    right:-200px;
    top:-180px;

    animation:rotate 18s linear infinite;
}

.floating-line::before{
    content:'';

    position:absolute;
    inset:35px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,0.05);
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes move{
    0%{
        transform:translate(0,0) scale(1);
    }

    100%{
        transform:translate(80px,-40px) scale(1.15);
    }
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes fadeUp{
    0%{
        opacity:0;
        transform:translateY(40px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1200px){

    .hero-title{
        font-size:72px;
    }

}

@media(max-width:991px){

    .coming-container{
        padding:50px 30px;
    }

    .hero-title{
        font-size:58px;
    }

    .counter-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .counter-box h2{
        font-size:58px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:42px;
        line-height:1.2;
        letter-spacing:-1px;
    }

    .description{
        font-size:16px;
    }

    .counter-wrapper{
        gap:18px;
    }

    .counter-box{
        padding:26px 15px;
    }

    .counter-box h2{
        font-size:46px;
    }

    .download-btn{
        width:100%;
        justify-content:space-between;
    }

}

@media(max-width:520px){

    .coming-container{
        padding:30px 18px;
    }

    .counter-wrapper{
        grid-template-columns:1fr;
    }

    .logo img{
        width:240px;
    }

}