/* =========================================
   RESET & GLOBAL
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg-dark:#03080C;
    --card-bg:#0A121C;

    /* FUND POOL BRAND COLORS */
    --primary-blue:#0A46B7;
    --secondary-blue:#1B72D8;
    --cyan:#19C7D8;
    --cyan-light:#34D9E8;

    --text-muted:#A0B3C0;
}

body{
    font-family:'Inter',sans-serif;
    background:#050B0F;
    color:#EFF6FF;
    scroll-behavior:smooth;
}

.container{
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    border-bottom:1px solid rgba(25,199,216,.25);
    position:relative;
}

.logo h1{
    font-size:1.8rem;
    font-weight:800;
    background:linear-gradient(
        135deg,
        #0A46B7,
        #1B72D8,
        #19C7D8
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.logo span{
    font-size:.8rem;
    color:#19C7D8;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:#CFE6F0;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#19C7D8;
    text-shadow:0 0 8px rgba(25,199,216,.5);
}

/* =========================================
   MOBILE MENU
========================================= */

.menu-btn{
    display:none;
    background:transparent;
    border:1.5px solid #19C7D8;
    color:#19C7D8;
    font-size:1.6rem;
    padding:6px 14px;
    border-radius:12px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    flex-direction:column;
    gap:22px;
    background:#0A121C;
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    padding:24px;
    border-radius:28px;
    border:1px solid #19C7D8;
    z-index:999;
}

.mobile-menu.show{
    display:flex;
}

.mobile-menu a{
    text-decoration:none;
    color:#EFF6FF;
    font-size:1.1rem;
    border-bottom:1px solid rgba(25,199,216,.2);
    padding-bottom:10px;
}

/* =========================================
   BUTTONS
========================================= */

.btn-neon-solid{
    background:linear-gradient(
        135deg,
        #0A46B7,
        #1B72D8,
        #19C7D8
    );
    border:none;
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-neon-solid:hover{
    transform:translateY(-2px);
}

.btn-neon-outline{
    background:transparent;
    border:1.5px solid #19C7D8;
    color:#19C7D8;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    cursor:pointer;
}

.btn-neon-green{
    background:transparent;
    border:1.5px solid #19C7D8;
    color:#19C7D8;
    padding:10px 28px;
    border-radius:40px;
    font-weight:700;
    cursor:pointer;
}

/* =========================================
   HERO SECTION
========================================= */

.hero{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    padding:60px 5%;
    overflow:hidden;
}

.hero::before,
.hero::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(180px);
    opacity:.10;
}

.hero::before{
    background:#0A46B7;
    left:-150px;
    top:-150px;
}

.hero::after{
    background:#19C7D8;
    right:-150px;
    bottom:-150px;
}

.hero-center{
    width:90%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(25,199,216,.08);
    border:1px solid rgba(25,199,216,.25);
    color:#19C7D8;
    font-weight:600;
    margin-bottom:15px;
}

.hero h1{
    font-size:4.5rem;
    font-weight:800;
    line-height:1.1;
    margin-bottom:15px;
}

.hero h1 span{
    display:block;
    background:linear-gradient(
        135deg,
        #0A46B7,
        #1B72D8,
        #19C7D8
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-desc{
    width:90%;
    margin:10px auto;
    font-size:1.1rem;
    line-height:1.8;
    color:#D3E5EF;
    text-align:justify;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.hero-stats{
    width:90%;
    margin:35px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* =========================================
   CARDS
========================================= */

.card{
    background:var(--card-bg);
    border-radius:28px;
    padding:28px;
    border:1px solid rgba(25,199,216,.12);
    transition:.3s;
}

.card:hover{
    border-color:#19C7D8;
    transform:translateY(-5px);
    box-shadow:
        0 0 20px rgba(25,199,216,.18),
        0 0 40px rgba(25,199,216,.08);
}

.stat-card{
    background:#0A121C;
    padding:22px;
    border-radius:22px;
    border:1px solid rgba(25,199,216,.15);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
    border-color:#19C7D8;
    box-shadow:
        0 0 20px rgba(25,199,216,.15);
}

.stat-card h3{
    color:#19C7D8;
    font-size:1.8rem;
    margin-bottom:8px;
}

.stat-card span{
    color:#B7CBD7;
}

/* =========================================
   ABOUT SECTION
========================================= */

#about{
    padding:80px 0;
}

.about-main{
    padding:40px;
    border-radius:30px;
    margin-bottom:40px;
}

.about-main h2{
    font-size:2.2rem;
    margin-bottom:25px;
    background:linear-gradient(
        135deg,
        #0A46B7,
        #1B72D8,
        #19C7D8
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.about-main p{
    line-height:2;
    color:#C7D7E3;
    margin-bottom:18px;
    text-align:justify;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.about-card{
    text-align:center;
    padding:35px 25px;
}

.about-card i{
    font-size:40px;
    color:#19C7D8;
    margin-bottom:15px;
}

/* =========================================
   COMMON SECTIONS
========================================= */

.section-title{
    font-size:2.2rem;
    text-align:center;
    margin-bottom:30px;
    background:linear-gradient(
        135deg,
        #0A46B7,
        #1B72D8,
        #19C7D8
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin:40px 0;
}

.mv-flex{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    margin:50px 0;
}

.mv-card{
    flex:1;
    background:#0A121C;
    border-left:5px solid #19C7D8;
    padding:28px;
    border-radius:24px;
}

/* =========================================
   FAQ
========================================= */

.faq-item{
    background:#0F1922;
    border-radius:20px;
    margin-bottom:16px;
    padding:0 20px;
    border:1px solid rgba(25,199,216,.08);
}

.faq-item.active{
    border-color:#19C7D8;
}

.faq-question{
    padding:18px 0;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
}

.faq-item.active .faq-question{
    color:#19C7D8;
}

.faq-answer{
    display:none;
    padding-bottom:20px;
    color:#B0CFE0;
}

.faq-item.active .faq-answer{
    display:block;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:#030C12;
    padding:40px 0 20px;
    margin-top:60px;
    border-top:1px solid rgba(25,199,216,.25);
}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#071019;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        #0A46B7,
        #19C7D8
    );
    border-radius:20px;
}

/* =========================================
   TEXT SELECTION
========================================= */

::selection{
    background:#19C7D8;
    color:#fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .menu-btn{
        display:block;
    }

    .hero{
        min-height:auto;
        padding:40px 15px;
    }

    .hero-center,
    .hero-desc,
    .hero-stats{
        width:100%;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero-desc{
        font-size:.95rem;
        text-align:left;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .about-main{
        padding:25px;
    }

    .section-title{
        font-size:1.8rem;
    }

    .mv-card{
        width:100%;
    }
}