/* ===================================================
   GANA SYNC
   Landing Page
   Light Neumorphism UI
=================================================== */

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

:root{

    --bg:#eef2f7;

    --card:#eef2f7;

    --text:#1f2937;

    --muted:#6b7280;

    --primary:#4f7cff;

    --primary-dark:#3569ff;

    --white:#ffffff;

    --radius:22px;

    --shadow-dark:
        12px 12px 24px rgba(163,177,198,.45);

    --shadow-light:
       -12px -12px 24px rgba(255,255,255,.95);

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

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

    overflow-x:hidden;

}

/* =====================================
Container
===================================== */

.container{

    width:min(1180px,92%);

    margin:auto;

}

/* =====================================
Links
===================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* =====================================
Buttons
===================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:16px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:linear-gradient(
        135deg,
        #4f7cff,
        #6d95ff
    );

    color:#fff;

    box-shadow:

        10px 10px 24px rgba(79,124,255,.28);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-light{

    background:var(--bg);

    color:var(--text);

    box-shadow:

        var(--shadow-dark),

        var(--shadow-light);

}

.btn-light:hover{

    transform:translateY(-4px);

}

/* =====================================
Header
===================================== */

.header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(238,242,247,.92);

    backdrop-filter:blur(18px);

    padding:18px 0;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:28px;

    font-weight:700;

}

.logo i{

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    color:var(--primary);

    background:var(--bg);

    box-shadow:

        var(--shadow-dark),

        var(--shadow-light);

}

.nav{

    display:flex;

    gap:35px;

}

.nav a{

    font-weight:500;

    color:var(--muted);

    transition:.3s;

}

.nav a:hover{

    color:var(--primary);

}

.header-buttons{

    display:flex;

    gap:16px;

}
/* =====================================
Hero Section
===================================== */

.hero{

    padding:90px 0 110px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:var(--bg);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;

    box-shadow:

        var(--shadow-dark),

        var(--shadow-light);

}

.hero-content h1{

    font-size:64px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

    color:var(--text);

}

.hero-content p{

    font-size:18px;

    line-height:34px;

    color:var(--muted);

    max-width:620px;

    margin-bottom:38px;

}

.hero-buttons{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

}

/* =====================================
Hero Player Card
===================================== */

.hero-card{

    display:flex;

    justify-content:center;

}

.player-card{

    width:380px;

    background:var(--bg);

    border-radius:32px;

    padding:45px;

    text-align:center;

    box-shadow:

        var(--shadow-dark),

        var(--shadow-light);

}

.disc{

    width:150px;

    height:150px;

    margin:auto;

    margin-bottom:30px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #4f7cff,
        #6d95ff
    );

    color:#fff;

    font-size:56px;

    animation:rotateDisc 8s linear infinite;

    box-shadow:

        12px 12px 28px rgba(79,124,255,.28);

}

.player-card h3{

    font-size:28px;

    margin-bottom:10px;

}

.player-card p{

    color:var(--muted);

    margin-bottom:35px;

}

/* =====================================
Wave Animation
===================================== */

.wave{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    gap:8px;

    height:55px;

}

.wave span{

    width:8px;

    border-radius:20px;

    background:var(--primary);

    animation:wave 1s infinite ease-in-out;

}

.wave span:nth-child(1){

    height:18px;

    animation-delay:.1s;

}

.wave span:nth-child(2){

    height:35px;

    animation-delay:.2s;

}

.wave span:nth-child(3){

    height:50px;

    animation-delay:.3s;

}

.wave span:nth-child(4){

    height:32px;

    animation-delay:.4s;

}

.wave span:nth-child(5){

    height:18px;

    animation-delay:.5s;

}

/* =====================================
Animations
===================================== */

@keyframes rotateDisc{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes wave{

    0%,100%{

        transform:scaleY(.6);

    }

    50%{

        transform:scaleY(1.3);

    }

}
/* =====================================
Section Title
===================================== */

.section-title{

    text-align:center;

    margin-bottom:65px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:var(--text);

    margin-bottom:18px;

}

.section-title p{

    font-size:17px;

    color:var(--muted);

}

/* =====================================
Features
===================================== */

.features{

    padding:90px 0;

}

.feature-grid{

    display:grid;

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

    gap:30px;

}

.feature-card{

    background:var(--bg);

    border-radius:28px;

    padding:40px 28px;

    text-align:center;

    transition:.35s;

    box-shadow:

        var(--shadow-dark),

        var(--shadow-light);

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:28px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:36px;

    color:#fff;

    background:linear-gradient(
        135deg,
        #4f7cff,
        #6d95ff
    );

    box-shadow:

        12px 12px 24px rgba(79,124,255,.25);

}

.feature-card h3{

    font-size:24px;

    margin-bottom:14px;

    color:var(--text);

}

.feature-card p{

    color:var(--muted);

    line-height:28px;

    font-size:15px;

}

/* =====================================
How It Works
===================================== */

.how{

    padding:90px 0;

}

.steps{

    display:grid;

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

    gap:30px;

}

.step{

    text-align:center;

    background:var(--bg);

    padding:38px 25px;

    border-radius:28px;

    box-shadow:

        var(--shadow-dark),

        var(--shadow-light);

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

}

.step-number{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#fff;

    font-size:28px;

    font-weight:700;

    background:linear-gradient(
        135deg,
        #4f7cff,
        #6d95ff
    );

}

.step h3{

    font-size:22px;

    margin-bottom:12px;

}

.step p{

    color:var(--muted);

    line-height:28px;

}
/* =====================================
Call To Action
===================================== */

.cta{

    padding:90px 0;

}

.cta-box{

    background:var(--bg);

    border-radius:36px;

    padding:70px 40px;

    text-align:center;

    box-shadow:

        var(--shadow-dark),

        var(--shadow-light);

}

.cta-box h2{

    font-size:42px;

    margin-bottom:20px;

    color:var(--text);

}

.cta-box p{

    color:var(--muted);

    font-size:18px;

    line-height:32px;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* =====================================
Footer
===================================== */

.footer{

    padding:70px 0 30px;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.footer-content h3{

    font-size:30px;

    margin-bottom:12px;

}

.footer-content p{

    color:var(--muted);

    line-height:30px;

}

.footer-links{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.footer-links a{

    color:var(--muted);

    font-weight:500;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

}

.copyright{

    text-align:center;

    color:var(--muted);

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

    padding-top:25px;

    font-size:15px;

}

/* =====================================
Responsive
===================================== */

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-content p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.feature-grid{

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

}

.steps{

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

}

}

@media(max-width:768px){

.header .container{

flex-direction:column;

gap:20px;

}

.nav{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.header-buttons{

flex-wrap:wrap;

justify-content:center;

}

.hero-content h1{

font-size:44px;

}

.section-title h2{

font-size:34px;

}

.feature-grid{

grid-template-columns:1fr;

}

.steps{

grid-template-columns:1fr;

}

.player-card{

width:100%;

}

.footer-content{

flex-direction:column;

text-align:center;

}

}

@media(max-width:500px){

.hero{

padding:60px 0;

}

.hero-content h1{

font-size:36px;

}

.btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.cta-box{

padding:45px 25px;

}

.cta-box h2{

font-size:30px;

}

}

/* =====================================
Scrollbar
===================================== */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:#b7c3d3;

border-radius:50px;

}

::-webkit-scrollbar-track{

background:#eef2f7;

}