/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#0f172a;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid #e2e8f0;
}

.nav-container{
    max-width:1220px;
    margin:auto;
    padding:12px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-box img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.logo{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    font-weight:800;
    color:#0f172a;
}

.logo span{
    color:#2563EB;
}

.nav-menu{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-menu a{
    color:#334155;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#2563EB;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    background:#2563EB;
    color:white;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(37,99,235,0.25);
}

.btn-outline{
    display:inline-block;
    color:#0f172a;
    border:1px solid #cbd5e1;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
    background:white;
}

.btn-outline:hover{
    border-color:#2563EB;
    color:#2563EB;
}

/* =========================
   MAIN
========================= */

main{
    padding-top:82px;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    background:linear-gradient(180deg,#ffffff,#eef6ff);
    padding:80px 20px 130px;
    position:relative;
}

.hero-container{
    max-width:1220px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:50px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:8px 16px;
    background:#eaf2ff;
    color:#2563EB;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
    margin-bottom:18px;
}

.hero h1{
    font-family:'Poppins',sans-serif;
    font-size:60px;
    line-height:1.08;
    font-weight:800;
    color:#0f172a;
}

.hero h1 span{
    color:#2563EB;
}

.hero p{
    margin-top:22px;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
    max-width:620px;
}

.hero-actions{
    margin-top:34px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

/* =========================
   TRADING VIEW
========================= */

.tradingview-widget-container{
    width:100%;
    overflow:hidden;
    border-radius:24px;
    background:white;
    box-shadow:0 18px 50px rgba(15,23,42,0.08);
}

.tradingview-widget-container__widget{
    width:100%;
    height:100%;
}

/* =========================
   QUICK STATS
========================= */

.quick-stats{
    max-width:1220px;
    margin:-70px auto 0;
    padding:0 20px;
    position:relative;
    z-index:20;
}

/* ticker line */

.quick-stats .tradingview-widget-container{
    width:100%;
    border-radius:999px;
    overflow:hidden;
    background:#fff;
    padding:2px 0;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(15,23,42,0.06);
}

/* cards grid */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* stat card */

.stat-card{
    background:white;
    padding:28px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 12px 35px rgba(15,23,42,0.06);
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-card h3{
    font-size:34px;
    color:#2563EB;
    margin-bottom:8px;
    font-weight:800;
}

.stat-card p{
    color:#64748b;
    font-weight:600;
    font-size:16px;
}

/* =========================
   BROKER TOOLS
========================= */

.broker-tools{
    max-width:1220px;
    margin:auto;
    padding:90px 20px;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:auto;
}

.section-title h2{
    font-family:'Poppins',sans-serif;
    font-size:46px;
    color:#0f172a;
}

.section-title h2 span{
    color:#2563EB;
}

.tools-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.tool-card{
    background:white;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:30px;
    box-shadow:0 12px 35px rgba(15,23,42,0.06);
    transition:0.3s;
    min-height:300px;
}

.tool-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 60px rgba(15,23,42,0.12);
}

.tool-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.tool-top span{
    background:#eff6ff;
    color:#2563EB;
    padding:7px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}

.tool-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    background:#f1f5f9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.tool-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.tool-card p{
    color:#64748b;
    line-height:1.8;
}

/* highlighted card */

.highlight-card{
    background:linear-gradient(135deg,#2563EB,#1D4ED8);
    color:white;
}

.highlight-card p{
    color:#dbeafe;
}

.highlight-card .tool-top span{
    background:rgba(255,255,255,0.15);
    color:white;
}

/* charges */

.charges-list{
    margin-top:24px;
    display:grid;
    gap:14px;
}

.charges-list div{
    display:flex;
    justify-content:space-between;
    background:rgba(255,255,255,0.14);
    padding:14px;
    border-radius:16px;
}

.charges-list span{
    font-weight:800;
}

/* mini chart */

.mini-chart{
    height:120px;
    margin-top:24px;
    display:flex;
    align-items:flex-end;
    gap:10px;
    background:#f8fafc;
    padding:18px;
    border-radius:18px;
}

.mini-chart span{
    flex:1;
    border-radius:8px 8px 0 0;
    background:linear-gradient(180deg,#2563EB,#22C55E);
}

/* signal */

.signal-box,
.market-line{
    margin-top:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px;
    border-radius:16px;
    background:#f8fafc;
}

.signal-box small{
    display:block;
    color:#94a3b8;
    margin-top:4px;
}

.green{
    color:#22C55E;
}

/* portfolio */

.portfolio-ring{
    margin:28px auto 0;
    width:130px;
    height:130px;
    border-radius:50%;
    background:conic-gradient(#2563EB 68%, #e2e8f0 0);
    display:flex;
    align-items:center;
    justify-content:center;
}

.portfolio-ring div{
    width:92px;
    height:92px;
    border-radius:50%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:800;
    color:#2563EB;
}

/* checklist */

.check-list{
    margin-top:22px;
    list-style:none;
    display:grid;
    gap:12px;
    color:#334155;
}

/* dark card */

.dark-card{
    background:#0f172a;
    color:white;
}

.dark-card p{
    color:#cbd5e1;
}

.dark-card .market-line{
    background:rgba(255,255,255,0.08);
}

.dark-card .market-line b{
    color:#22C55E;
}

/* =========================
   TRADER SECTION
========================= */

.trader-section{
    background:#0f172a;
    color:white;
    padding:90px 20px;
}

.trader-container{
    max-width:1220px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.trader-section h2{
    font-family:'Poppins',sans-serif;
    font-size:46px;
    line-height:1.2;
}

.trader-section h2 span{
    color:#38bdf8;
}

.trader-section p{
    color:#cbd5e1;
    line-height:1.9;
    margin-top:18px;
}

.trader-list{
    display:grid;
    gap:16px;
}

.trader-list div{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    padding:18px;
    border-radius:18px;
    font-weight:700;
}

/* =========================
   TELEGRAM
========================= */

.telegram-section{
    max-width:1220px;
    margin:auto;
    padding:90px 20px;
}

.telegram-box{
    background:linear-gradient(135deg,#2563EB,#0f172a);
    border-radius:34px;
    padding:60px;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:40px;
    align-items:center;
    color:white;
}

.telegram-box h2{
    font-family:'Poppins',sans-serif;
    font-size:44px;
}

.telegram-box h2 span{
    color:#38bdf8;
}

.telegram-box p{
    color:#dbeafe;
    line-height:1.8;
    margin-top:18px;
}

.telegram-features{
    margin-top:26px;
    display:grid;
    gap:12px;
}

.telegram-btn{
    display:inline-block;
    margin-top:30px;
    background:#38bdf8;
    color:#0f172a;
    padding:15px 26px;
    border-radius:14px;
    font-weight:800;
}

.telegram-card{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:28px;
    padding:35px;
    text-align:center;
}

.telegram-icon{
    width:86px;
    height:86px;
    margin:0 auto 22px;
    border-radius:50%;
    background:#38bdf8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

/* =========================
   CTA
========================= */

.cta{
    max-width:1220px;
    margin:30px auto 80px;
    padding:60px 20px;
    border-radius:32px;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
}

.cta h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
}

.cta p{
    color:#cbd5e1;
    margin:16px auto 28px;
    max-width:680px;
    line-height:1.8;
}

/* =========================
   FOOTER
========================= */

footer{
    background:linear-gradient(180deg,#f8fafc,#eef4ff);
    border-top:1px solid #e2e8f0;
    padding:70px 20px 28px;
}

.footer-grid{
    max-width:1220px;
    margin:auto;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.footer-logo img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.footer-logo-text{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    font-weight:800;
}

.footer-logo-text span{
    color:#2563EB;
}

footer h3{
    margin-bottom:16px;
    font-size:20px;
}

footer p,
footer a{
    color:#64748b;
    line-height:1.8;
}

footer a{
    display:block;
    margin-top:8px;
}

footer a:hover{
    color:#2563EB;
}

.copy{
    max-width:1220px;
    margin:45px auto 0;
    padding-top:22px;
    border-top:1px solid #e2e8f0;
    color:#94a3b8;
    display:flex;
    justify-content:space-between;
    gap:12px;
    font-size:14px;
}

.copy-links{
    display:flex;
    gap:18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:950px){

    .tools-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:900px){

    .hero-container,
    .trader-container,
    .telegram-box{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .nav-menu{
        display:none;
    }

    .hero h1{
        font-size:42px;
    }

    .section-title h2,
    .cta h2,
    .telegram-box h2,
    .trader-section h2{
        font-size:34px;
    }

    .tools-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .logo-box img{
        width:48px;
        height:48px;
    }

    .logo{
        font-size:20px;
    }

    main{
        padding-top:72px;
    }
}

@media(max-width:600px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .copy{
        flex-direction:column;
        text-align:center;
    }

    .copy-links{
        justify-content:center;
    }

    .telegram-box{
        padding:35px 22px;
    }

    .hero{
        padding-bottom:110px;
    }

    .quick-stats{
        margin-top:-50px;
    }

    .stat-card{
        text-align:center;
    }
}