/* ======================================
   SOALOO LANDING PAGE
   Version 1.0
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#09111f;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.7;

}

.background-glow{

    position:fixed;

    top:-350px;
    left:50%;

    transform:translateX(-50%);

    width:900px;
    height:900px;

    background:radial-gradient(circle,#356cff55 0%,transparent 70%);

    filter:blur(90px);

    z-index:-1;

}

.container{

    width:min(1180px,92%);

    margin:auto;

}

/* ==========================
          NAVBAR
========================== */

header{

    position:fixed;

    top:0;

    width:100%;

    backdrop-filter:blur(16px);

    background:rgba(9,17,31,.55);

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:999;

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    font-size:30px;

    font-weight:800;

    letter-spacing:2px;

    color:#fff;

}

nav ul{

    display:flex;

    gap:35px;

    list-style:none;

}

nav a{

    color:#d5d9e5;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

nav a:hover{

    color:#5b86ff;

}

/* ==========================
          HERO
========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    text-align:center;

}

.hero-content{

    width:100%;

}

.hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    max-width:760px;

    margin:auto;

    color:#b8c0cf;

    font-size:20px;

    margin-bottom:45px;

}

.coming-btn{

    display:inline-block;

    padding:18px 44px;

    border-radius:60px;

    background:linear-gradient(135deg,#4b7dff,#7856ff);

    color:white;

    text-decoration:none;

    font-weight:700;

    cursor:default;

    transition:.35s;

    box-shadow:0 15px 40px rgba(72,110,255,.35);

}

.coming-btn:hover{

    transform:translateY(-4px);

}

/* ==========================
          STATS
========================== */

.stats{

    padding:30px 0 90px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.stat-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h2{

    font-size:48px;

    color:#5c86ff;

}

.stat-card span{

    color:#b8c0cf;

}

/* ==========================
        SECTION TITLE
========================== */

.section-title{

    text-align:center;

    font-size:42px;

    margin-bottom:16px;

}

.section-subtitle{

    color:#aab2c2;

    text-align:center;

    margin-bottom:60px;

}


/* ==========================
        FEATURES
========================== */

.features{

    padding:110px 0;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.feature-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#4d7dff;

    box-shadow:0 20px 45px rgba(50,90,255,.18);

}

.icon{

    font-size:40px;

    margin-bottom:18px;

}

.feature-card h3{

    margin-bottom:12px;

    font-size:22px;

}

.feature-card p{

    color:#b6bfd0;

}

/* ==========================
       APP PREVIEW
========================== */

.preview{

    padding:120px 0;

}

.phones{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.phone{

    width:260px;

    height:520px;

    margin:auto;

    background:#111827;

    border-radius:42px;

    padding:14px;

    border:2px solid rgba(255,255,255,.08);

    position:relative;

    transition:.35s;

    box-shadow:

    0 20px 60px rgba(0,0,0,.45);

}

.phone:hover{

    transform:translateY(-12px);

}

.phone::before{

    content:"";

    position:absolute;

    width:110px;

    height:26px;

    background:#000;

    border-radius:18px;

    left:50%;

    transform:translateX(-50%);

    top:12px;

}

.phone img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:32px;

}

/* ==========================
          ABOUT
========================== */

.about{

    padding:120px 0;

    text-align:center;

}

.about h2{

    font-size:42px;

    margin-bottom:25px;

}

.about p{

    color:#b7bfd0;

    max-width:820px;

    margin:auto;

    font-size:19px;

}

/* ==========================
          FOOTER
========================== */

footer{

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

    margin-top:120px;

    padding:50px 0;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    margin-bottom:18px;

}

.footer-links a{

    text-decoration:none;

    color:#d2d7e2;

    transition:.3s;

}

.footer-links a:hover{

    color:#5b84ff;

}

footer p{

    text-align:center;

    color:#98a5b8;

}

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

@media(max-width:1100px){

.hero h1{

    font-size:58px;

}

.feature-grid{

    grid-template-columns:repeat(2,1fr);

}

.phones{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

nav{

    flex-direction:column;

    height:auto;

    padding:20px 0;

}

nav ul{

    margin-top:15px;

    gap:18px;

}

.hero{

    padding-top:120px;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:18px;

}

.stats-grid{

    grid-template-columns:1fr;

}

.feature-grid{

    grid-template-columns:1fr;

}

.phones{

    grid-template-columns:1fr;

}

.phone{

    width:280px;

    height:560px;

}

.section-title{

    font-size:34px;

}

.about h2{

    font-size:34px;

}

}

@media(max-width:480px){

.hero h1{

    font-size:34px;

}

.coming-btn{

    width:100%;

}

.phone{

    width:250px;

    height:500px;

}

}
