

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

:root{
    --bg:#f7f9fc;
    --surface:#ffffff;
    --surface-soft:#f9fbff;
    --text:#101828;
    --heading:#07111f;
    --muted:#667085;
    --muted-2:#98a2b3;
    --border:#e5e7eb;
    --border-strong:#d0d5dd;

    --blue:#1f6fff;
    --blue-dark:#1557d8;
    --blue-soft:#eef5ff;

    --green:#12b76a;
    --green-dark:#079455;
    --green-soft:#ecfdf3;

    --red:#f04438;
    --gold:#f5b544;

    --shadow-xs:0 4px 12px rgba(16,24,40,.05);
    --shadow-sm:0 10px 28px rgba(16,24,40,.07);
    --shadow-md:0 18px 48px rgba(16,24,40,.10);
    --shadow-lg:0 28px 76px rgba(16,24,40,.13);

    --radius-sm:14px;
    --radius-md:20px;
    --radius-lg:28px;
    --radius-xl:34px;

    --container:1220px;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at 12% 2%, rgba(31,111,255,.07), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(18,183,106,.07), transparent 26%),
        linear-gradient(180deg,#ffffff 0%,#f7f9fc 42%,#ffffff 100%);
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    line-height:1.6;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-2;
    background-image:
        linear-gradient(rgba(31,111,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,111,255,.035) 1px, transparent 1px);
    background-size:48px 48px;
    opacity:.45;
    mask-image:linear-gradient(to bottom,#000 0%,transparent 72%);
}

::selection{
    background:rgba(31,111,255,.16);
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

button,
input{
    font:inherit;
}

.site-header,
main,
footer{
    position:relative;
    z-index:2;
}

/* ---------- ACCESSIBILITY ---------- */
.skip-link{
    position:fixed;
    top:12px;
    left:12px;
    z-index:100000;
    transform:translateY(-145%);
    background:#101828;
    color:#ffffff;
    padding:10px 14px;
    border-radius:12px;
    font-weight:800;
    box-shadow:var(--shadow-md);
    transition:transform .25s ease;
}

.skip-link:focus{
    transform:translateY(0);
}

/* ---------- BACKGROUND BLOBS ---------- */
.bg{
    position:fixed;
    width:600px;
    height:600px;
    border-radius:50%;
    filter:blur(140px);
    opacity:.10;
    z-index:-1;
    pointer-events:none;
    animation:softFloat 8s ease-in-out infinite;
}

.bg.left{
    background:var(--blue);
    top:-220px;
    left:-220px;
}

.bg.right{
    background:var(--green);
    bottom:-220px;
    right:-220px;
    animation-delay:1.5s;
}

.candlestick-bg{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:1;
    overflow:hidden;
    opacity:.045;
    mix-blend-mode:multiply;
}

.candlestick-bg span{
    position:absolute;
    width:4px;
    border-radius:999px;
    background:var(--green);
    filter:blur(.15px);
    animation:marketFloat 12s ease-in-out infinite;
}

.candlestick-bg span::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:1px;
    background:inherit;
    opacity:.75;
}

.candlestick-bg span:nth-child(1){left:4%; top:12%; height:80px;}
.candlestick-bg span:nth-child(1)::before{height:130px; top:-25px;}
.candlestick-bg span:nth-child(2){left:12%; top:58%; height:55px; background:var(--red);}
.candlestick-bg span:nth-child(2)::before{height:100px; top:-22px;}
.candlestick-bg span:nth-child(3){left:21%; top:24%; height:95px; animation-delay:1.1s;}
.candlestick-bg span:nth-child(3)::before{height:150px; top:-28px;}
.candlestick-bg span:nth-child(4){left:31%; top:74%; height:60px; background:var(--red); animation-delay:1.8s;}
.candlestick-bg span:nth-child(4)::before{height:110px; top:-22px;}
.candlestick-bg span:nth-child(5){left:43%; top:18%; height:120px; animation-delay:.5s;}
.candlestick-bg span:nth-child(5)::before{height:180px; top:-30px;}
.candlestick-bg span:nth-child(6){left:57%; top:66%; height:70px; background:var(--red); animation-delay:2.2s;}
.candlestick-bg span:nth-child(6)::before{height:120px; top:-24px;}
.candlestick-bg span:nth-child(7){left:69%; top:16%; height:110px; animation-delay:1.4s;}
.candlestick-bg span:nth-child(7)::before{height:170px; top:-32px;}
.candlestick-bg span:nth-child(8){left:81%; top:72%; height:65px; animation-delay:.8s;}
.candlestick-bg span:nth-child(8)::before{height:120px; top:-25px;}
.candlestick-bg span:nth-child(9){left:91%; top:28%; height:90px; animation-delay:2.8s;}
.candlestick-bg span:nth-child(9)::before{height:145px; top:-28px;}
.candlestick-bg span:nth-child(10){left:96%; top:82%; height:48px; background:var(--red); animation-delay:3.2s;}
.candlestick-bg span:nth-child(10)::before{height:95px; top:-20px;}

/* =========================================================
   NAVBAR (layout in brand.css)
========================================================= */

.mobile-menu-btn,
.menu-btn{
    display:none;
    width:44px;
    height:44px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#ffffff;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    z-index:1001;
    box-shadow:var(--shadow-xs);
}

.mobile-menu-btn span,
.menu-btn span{
    width:22px;
    height:2px;
    background:#1d2939;
    border-radius:99px;
    transition:.3s ease;
}

.mobile-menu-btn.active span:nth-child(1),
.menu-btn.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2),
.menu-btn.active span:nth-child(2){
    opacity:0;
}

.mobile-menu-btn.active span:nth-child(3),
.menu-btn.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn,
.btn-outline,
.telegram-btn,
.card-link,
.founder-link{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    font-weight:850;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn{
    background:linear-gradient(135deg,var(--blue),#4f8cff);
    color:#ffffff;
    padding:14px 24px;
    box-shadow:0 14px 32px rgba(31,111,255,.24);
}

.btn::after,
.telegram-btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-90%;
    width:55%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
    transform:skewX(-18deg);
    transition:.65s ease;
    z-index:-1;
}

.btn:hover,
.telegram-btn:hover{
    transform:translateY(-3px);
}

.btn:hover{
    box-shadow:0 18px 42px rgba(31,111,255,.30);
}

.btn:hover::after,
.telegram-btn:hover::after{
    left:130%;
}

.btn-outline{
    color:#1d2939;
    border:1px solid #d0d5dd;
    padding:14px 24px;
    background:#ffffff;
    box-shadow:0 10px 25px rgba(16,24,40,.05);
}

.btn-outline:hover{
    border-color:rgba(31,111,255,.42);
    color:var(--blue);
    box-shadow:0 16px 36px rgba(16,24,40,.09);
    transform:translateY(-3px);
}

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

.hero,
.insight-hero{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    padding:96px 20px 104px;
    background:
        linear-gradient(115deg, rgba(255,255,255,.98) 0%, rgba(246,250,255,.98) 58%, rgba(240,255,248,.80) 100%);
}

.hero::before,
.insight-hero::before{
    content:"";
    position:absolute;
    top:64px;
    right:-150px;
    width:620px;
    height:620px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(31,111,255,.12), transparent 66%);
    z-index:0;
    animation:softPulse 5.4s ease-in-out infinite;
}

.hero::after,
.insight-hero::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-40px;
    width:480px;
    height:280px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(18,183,106,.12), transparent 68%);
    z-index:0;
    opacity:.28;
    filter:blur(45px);
}

.market-grid-bg,
.hero-grid-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:0;
    background-image:
        linear-gradient(rgba(31,111,255,.045) 1px, transparent 1px),
        linear-gradient(90deg,rgba(31,111,255,.045) 1px,transparent 1px);
    background-size:56px 56px;
    opacity:.45;
    mask-image:linear-gradient(180deg,#000 0%,rgba(0,0,0,.7) 48%,transparent 100%);
}

.hero-container{
    max-width:var(--container);
    margin:0 auto;
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.06fr .94fr;
    gap:86px;
    align-items:center;
}

.hero-content{
    max-width:650px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 16px;
    margin-bottom:18px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid rgba(31,111,255,.16);
    color:var(--blue);
    font-weight:850;
    font-size:14px;
    box-shadow:0 10px 28px rgba(31,111,255,.07);
}

.badge::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 0 6px rgba(18,183,106,.12);
}

.hero h1,
.insight-hero h1{
    font-family:'Poppins',sans-serif;
    font-size:60px;
    line-height:1.06;
    font-weight:800;
    letter-spacing:-.055em;
    color:var(--heading);
    text-wrap:balance;
}

.hero h1 span,
.insight-hero h1 span,
.section-title h2 span,
.trader-section h2 span,
.telegram-box h2 span,
.founder-content h2 span{
    background:linear-gradient(90deg,var(--blue),var(--green));
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p,
.insight-hero p{
    margin-top:22px;
    color:var(--muted);
    font-size:18px;
    line-height:1.82;
    max-width:630px;
    text-wrap:pretty;
}

.hero-actions,
.hero-buttons{
    margin-top:34px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-trust-strip,
.hero-trust,
.trust-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
    color:#475467;
    font-weight:750;
    font-size:14px;
}

.hero-trust-strip span,
.hero-trust span,
.trust-row span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid rgba(228,231,236,.95);
    box-shadow:0 8px 18px rgba(16,24,40,.04);
}

/* ---------- HERO DASHBOARD ---------- */
.market-widget-box,
.insight-widget{
    position:relative;
    background:#ffffff;
    border:1px solid rgba(228,231,236,.95);
    border-radius:32px;
    padding:18px;
    box-shadow:var(--shadow-lg);
    animation:fadeUp .75s .08s ease both;
}

.widget-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:14px;
    padding:0 4px;
}

.widget-heading span{
    color:var(--blue);
    font-size:13px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.widget-heading strong{
    color:var(--heading);
    font-size:15px;
    font-weight:900;
}

.insight-dashboard{
    border:1px solid rgba(228,231,236,.95);
    border-radius:26px;
    padding:24px;
    background:
        radial-gradient(circle at 20% 0%, rgba(31,111,255,.12), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(18,183,106,.12), transparent 30%),
        linear-gradient(180deg,#ffffff,#f5f8ff);
    overflow:hidden;
}

.dashboard-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.dashboard-top small{
    display:block;
    color:var(--muted-2);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:5px;
}

.dashboard-top strong{
    color:var(--heading);
    font-size:20px;
    font-weight:900;
    letter-spacing:-.035em;
}

.status-pill,
.team-role,
.founder-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 13px;
    border-radius:999px;
    background:var(--green-soft);
    color:var(--green-dark);
    font-size:13px;
    font-weight:900;
    border:1px solid rgba(18,183,106,.18);
}

.status-pill::before,
.founder-badge::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:currentColor;
    box-shadow:0 0 0 5px rgba(18,183,106,.12);
}

.mini-chart{
    height:145px;
    margin-top:18px;
    display:flex;
    align-items:flex-end;
    gap:10px;
    background:linear-gradient(180deg,#ffffff,#f5f8ff);
    padding:18px;
    border-radius:18px;
    border:1px solid rgba(228,231,236,.92);
}

.mini-chart span{
    flex:1;
    min-height:24px;
    border-radius:9px 9px 4px 4px;
    background:linear-gradient(180deg,#4f8cff,var(--green));
    box-shadow:0 8px 18px rgba(18,183,106,.18);
    animation:barFloat 2.6s ease-in-out infinite;
}

.mini-chart span:nth-child(2){animation-delay:.15s;}
.mini-chart span:nth-child(3){animation-delay:.3s;}
.mini-chart span:nth-child(4){animation-delay:.45s;}
.mini-chart span:nth-child(5){animation-delay:.6s;}
.mini-chart span:nth-child(6){animation-delay:.75s;}

.market-lines{
    margin-top:18px;
    display:grid;
    gap:12px;
}

.market-line{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    background:#ffffff;
    padding:14px;
    border-radius:16px;
    border:1px solid rgba(228,231,236,.9);
    box-shadow:0 8px 18px rgba(16,24,40,.04);
}

.market-line span{
    color:#344054;
    font-weight:800;
}

.market-line b,
.green{
    color:var(--green-dark);
    font-weight:900;
}

/* =========================================================
   COMMON SECTIONS
========================================================= */
.section,
.broker-tools,
.categories-section,
.founder-section{
    max-width:var(--container);
    margin:0 auto;
    padding:88px 20px;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto;
}

.section-title h2,
.trader-section h2,
.telegram-box h2,
.cta h2,
.founder-content h2{
    font-family:'Poppins',sans-serif;
    letter-spacing:-.045em;
    line-height:1.15;
    color:var(--heading);
    text-wrap:balance;
}

.section-title h2{
    font-size:46px;
}

.section-title p{
    color:var(--muted);
    line-height:1.82;
    margin-top:14px;
    text-wrap:pretty;
}

/* ---------- STATS ---------- */
.stats-section{
    position:relative;
    z-index:20;
}

.stats-grid{
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    transform:translateY(-42px);
}

.stat-card{
    background:#ffffff;
    padding:28px;
    border-radius:24px;
    border:1px solid rgba(228,231,236,.94);
    box-shadow:var(--shadow-sm);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    position:relative;
    overflow:hidden;
}

.stat-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--blue),var(--green));
    transform:scaleX(.35);
    transform-origin:left;
    transition:.3s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
    border-color:rgba(31,111,255,.18);
}

.stat-card:hover::before{
    transform:scaleX(1);
}

.stat-card h3{
    font-size:34px;
    color:var(--heading);
    margin-bottom:8px;
    font-weight:900;
    letter-spacing:-.04em;
}

.stat-card p{
    color:var(--muted);
    font-weight:750;
    font-size:16px;
}

/* ---------- INSIGHT CARDS ---------- */
.tools-grid,
.insight-grid,
.grid,
.categories-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.categories-grid{
    grid-template-columns:repeat(4,1fr);
}

.tool-card,
.card,
.insight-card,
.category-card{
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,251,255,.98));
    border:1px solid rgba(228,231,236,.95);
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow-sm);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    min-height:280px;
    position:relative;
    overflow:hidden;
    transform-style:preserve-3d;
}

.tool-card::before,
.card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--green),var(--blue));
    opacity:.75;
}

.tool-card::after,
.card::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:0;
    background:radial-gradient(circle at 30% 0%, rgba(31,111,255,.10), transparent 42%);
    transition:opacity .28s ease;
}

.tool-card:hover,
.card:hover{
    transform:translateY(-10px) perspective(900px) rotateX(3deg) rotateY(-3deg);
    box-shadow:0 28px 70px rgba(16,24,40,.14);
    border-color:rgba(31,111,255,.20);
}

.tool-card:hover::after,
.card:hover::after{
    opacity:1;
}

.tool-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.tool-top span{
    background:var(--blue-soft);
    color:var(--blue);
    padding:7px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
}

.tool-icon,
.icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(145deg,#ffffff,#f0f6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(228,231,236,.95);
    box-shadow:0 12px 24px rgba(16,24,40,.07);
    color:var(--green-dark);
    font-size:28px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.tool-card h3,
.card h3{
    font-size:24px;
    margin-bottom:12px;
    color:var(--heading);
    letter-spacing:-.025em;
    position:relative;
    z-index:2;
}

.tool-card p,
.card p{
    color:var(--muted);
    line-height:1.82;
    text-wrap:pretty;
    position:relative;
    z-index:2;
}

.highlight-card{
    background:linear-gradient(135deg,#ffffff 0%,#f0f6ff 100%);
    border-color:rgba(31,111,255,.22);
}

.card-link{
    margin-top:22px;
    color:var(--blue);
    font-size:14px;
    font-weight:900;
    position:relative;
    z-index:2;
}

.card-link:hover{
    color:var(--green-dark);
    transform:translateX(4px);
}

/* =========================================================
   TRADER / PRACTICAL SECTION
========================================================= */
.trader-section,
.insight-section{
    position:relative;
    overflow:hidden;
    padding:92px 20px;
    background:
        linear-gradient(135deg,rgba(238,246,255,.92),rgba(236,253,243,.74)),
        #ffffff;
    border-top:1px solid rgba(228,231,236,.75);
    border-bottom:1px solid rgba(228,231,236,.75);
}

.trader-section::before{
    content:"";
    position:absolute;
    right:8%;
    top:12%;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(31,111,255,.09);
    filter:blur(26px);
}

.trader-container{
    max-width:var(--container);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    position:relative;
    z-index:2;
}

.trader-section h2{
    font-size:46px;
}

.trader-section p{
    color:var(--muted);
    line-height:1.9;
    margin:18px 0 28px;
    font-size:17px;
    text-wrap:pretty;
}

.trader-list{
    display:grid;
    gap:16px;
}

.trader-list div{
    display:flex;
    align-items:center;
    gap:10px;
    background:#ffffff;
    border:1px solid rgba(228,231,236,.95);
    padding:18px;
    border-radius:18px;
    font-weight:800;
    color:#344054;
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.trader-list div:hover{
    transform:translateX(8px) perspective(900px) rotateY(-2deg);
    box-shadow:0 18px 42px rgba(16,24,40,.10);
    border-color:rgba(18,183,106,.25);
}

/* =========================================================
   LEADERSHIP / FOUNDER SECTION
========================================================= */
.founder-section{
    padding-top:96px;
    padding-bottom:96px;
}

.founder-card,
.leadership-card{
    margin-top:48px;
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:44px;
    align-items:center;
    padding:38px;
    border-radius:34px;
    border:1px solid rgba(228,231,236,.95);
    background:
        radial-gradient(circle at 0% 0%, rgba(31,111,255,.12), transparent 30%),
        radial-gradient(circle at 100% 8%, rgba(18,183,106,.12), transparent 28%),
        linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,251,255,.96));
    box-shadow:var(--shadow-md);
    position:relative;
    overflow:hidden;
}

.founder-card::before,
.leadership-card::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(31,111,255,.035) 1px, transparent 1px),
        linear-gradient(90deg,rgba(31,111,255,.035) 1px,transparent 1px);
    background-size:38px 38px;
    opacity:.7;
}

.founder-photo-wrap,
.leadership-photo,
.avatar{
    position:relative;
    z-index:2;
}

.founder-photo,
.leadership-photo img,
.avatar img{
    width:100%;
    max-width:360px;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:50%;
    border:10px solid #ffffff;
    box-shadow:0 24px 58px rgba(16,24,40,.16);
    margin:0 auto;
}

.founder-photo-wrap::before,
.leadership-photo::before,
.avatar::before{
    content:"";
    position:absolute;
    inset:50% auto auto 50%;
    width:min(380px,90%);
    aspect-ratio:1/1;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:linear-gradient(135deg,rgba(31,111,255,.22),rgba(18,183,106,.20));
    filter:blur(24px);
    z-index:-1;
}

.founder-content,
.leadership-content{
    position:relative;
    z-index:2;
}

.founder-content h2,
.leadership-content h2{
    font-size:44px;
    margin:14px 0 14px;
}

.founder-content h3,
.leadership-content h3{
    color:var(--heading);
    font-size:28px;
    font-weight:900;
    letter-spacing:-.035em;
    margin-top:14px;
}

.team-role{
    margin:12px 0 0;
    background:var(--blue-soft);
    color:var(--blue);
    border-color:rgba(31,111,255,.16);
}

.founder-content p,
.leadership-content p{
    color:var(--muted);
    line-height:1.9;
    margin-top:18px;
    max-width:660px;
    text-wrap:pretty;
}

.founder-stats{
    margin-top:24px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.founder-stat{
    background:#ffffff;
    border:1px solid rgba(228,231,236,.92);
    border-radius:18px;
    padding:16px;
    box-shadow:0 8px 18px rgba(16,24,40,.04);
}

.founder-stat strong{
    display:block;
    color:var(--heading);
    font-size:22px;
    font-weight:900;
    letter-spacing:-.035em;
}

.founder-stat span{
    display:block;
    color:var(--muted);
    font-size:13px;
    font-weight:750;
    margin-top:4px;
}

.founder-actions{
    margin-top:28px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.founder-link{
    padding:12px 18px;
    background:#ffffff;
    border:1px solid var(--border);
    color:#344054;
    box-shadow:0 8px 18px rgba(16,24,40,.04);
}

.founder-link:hover{
    background:var(--blue-soft);
    color:var(--blue);
    border-color:rgba(31,111,255,.22);
    transform:translateY(-2px);
}

/* =========================================================
   TELEGRAM / NEWSLETTER
========================================================= */
.telegram-section,
.newsletter-section{
    max-width:var(--container);
    margin:0 auto;
    padding:96px 20px;
}

.telegram-box{
    background:
        radial-gradient(circle at 88% 0%, rgba(18,183,106,.14), transparent 28%),
        linear-gradient(135deg,#ffffff 0%,#eef6ff 100%);
    border:1px solid rgba(31,111,255,.16);
    border-radius:34px;
    padding:60px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
    color:var(--heading);
    box-shadow:var(--shadow-md);
    position:relative;
    overflow:hidden;
}

.telegram-box::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(31,111,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,111,255,.035) 1px, transparent 1px);
    background-size:34px 34px;
    opacity:.65;
}

.telegram-box > *{
    position:relative;
    z-index:2;
}

.telegram-box h2{
    font-size:44px;
}

.telegram-box p{
    color:var(--muted);
    line-height:1.82;
    margin-top:18px;
    text-wrap:pretty;
}

.telegram-features{
    margin-top:26px;
    display:grid;
    gap:12px;
    color:#344054;
    font-weight:750;
}

.telegram-features div{
    display:flex;
    align-items:center;
    gap:10px;
}

.telegram-btn{
    margin-top:30px;
    background:linear-gradient(135deg,#229ed9,#4f8cff);
    color:#ffffff;
    padding:15px 26px;
    box-shadow:0 16px 36px rgba(34,158,217,.24);
}

.telegram-card{
    background:#ffffff;
    border:1px solid rgba(228,231,236,.95);
    border-radius:28px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.telegram-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-md);
}

.telegram-icon{
    width:86px;
    height:86px;
    margin:0 auto 22px;
    border-radius:50%;
    background:linear-gradient(135deg,#229ed9,#4f8cff);
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 18px 34px rgba(34,158,217,.25);
    font-size:36px;
}

.telegram-card h3{
    color:var(--heading);
    margin-bottom:10px;
}

.telegram-card p{
    margin-top:0;
}

/* =========================================================
   CTA
========================================================= */
.cta{
    max-width:var(--container);
    margin:30px auto 80px;
    padding:64px 20px;
    border-radius:32px;
    text-align:center;
    background:
        radial-gradient(circle at 15% 10%, rgba(18,183,106,.18), transparent 30%),
        linear-gradient(135deg,var(--blue),var(--blue-dark));
    color:#ffffff;
    box-shadow:0 24px 70px rgba(31,111,255,.24);
    position:relative;
    overflow:hidden;
}

.cta::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
    background-size:42px 42px;
    opacity:.28;
}

.cta > *{
    position:relative;
    z-index:2;
}

.cta h2{
    font-size:42px;
    color:#ffffff;
}

.cta p{
    color:#eaf2ff;
    margin:16px auto 28px;
    max-width:680px;
    line-height:1.8;
    text-wrap:pretty;
}

.cta .btn{
    background:#ffffff;
    color:var(--blue);
    box-shadow:0 14px 32px rgba(16,24,40,.16);
}

/* =========================================================
   FOOTER
========================================================= */
footer{
    position:relative;
    overflow:hidden;
    padding:82px 20px 28px;
    background:
        radial-gradient(circle at 10% -10%, rgba(31,111,255,.12), transparent 30%),
        radial-gradient(circle at 86% 0%, rgba(18,183,106,.12), transparent 26%),
        linear-gradient(180deg,#ffffff 0%,#f4f8ff 100%);
    border-top:1px solid var(--border);
}

footer::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.48;
    background-image:
        linear-gradient(rgba(31,111,255,.035) 1px, transparent 1px),
        linear-gradient(90deg,rgba(31,111,255,.035) 1px,transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(180deg,transparent,#000 35%,#000 100%);
}

footer > *{
    position:relative;
    z-index:2;
}

.footer-grid{
    max-width:var(--container);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.45fr .9fr .9fr .9fr;
    gap:42px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(228,231,236,.95);
    border-radius:30px;
    padding:34px;
    box-shadow:0 24px 70px rgba(16,24,40,.08);
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.footer-logo img{
    width:52px;
    height:52px;
    object-fit:contain;
    filter:drop-shadow(0 7px 14px rgba(16,24,40,.08));
}

.footer-logo-text{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    font-weight:800;
    letter-spacing:-.04em;
    color:var(--heading);
}

.footer-logo-text span{
    color:var(--blue);
}

footer h3{
    margin-bottom:16px;
    padding-bottom:10px;
    font-size:18px;
    color:var(--heading);
    letter-spacing:-.015em;
    position:relative;
}

footer h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:34px;
    height:3px;
    border-radius:99px;
    background:linear-gradient(90deg,var(--blue),var(--green));
}

footer p{
    color:var(--muted);
    line-height:1.82;
    max-width:390px;
    text-wrap:pretty;
}

footer a{
    display:block;
    width:max-content;
    color:var(--muted);
    margin-top:9px;
    line-height:1.7;
    transition:color .22s ease, transform .22s ease;
}

footer a:hover{
    color:var(--blue);
    transform:translateX(3px);
}

.market-disclaimer,
.risk-disclaimer,
.footer-disclaimer{
    max-width:var(--container);
    margin:34px auto 0;
    padding:18px 20px;
    border:1px solid rgba(245,181,68,.32);
    background:linear-gradient(135deg,#fffaf0,#ffffff);
    color:#7a4b00;
    border-radius:18px;
    font-size:13px;
    line-height:1.75;
}

.market-disclaimer strong,
.risk-disclaimer strong,
.footer-disclaimer strong{
    color:#633b00;
}

.copy{
    max-width:var(--container);
    margin:38px auto 0;
    justify-content:center;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px 20px;
    box-shadow:0 12px 28px rgba(16,24,40,.05);
    color:var(--muted-2);
    display:flex;
    align-items:center;
    gap:14px;
    font-size:14px;
    text-align:center;
}

/* ---------- WHATSAPP ---------- */
.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    background:#25d366;
    color:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 30px rgba(37,211,102,.35);
    z-index:9999;
    transition:transform .3s ease, box-shadow .3s ease;
    -webkit-tap-highlight-color:transparent;
    animation:whatsappPulse 2.8s ease-in-out infinite;
    font-size:27px;
    font-weight:900;
}

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 16px 35px rgba(37,211,102,.45);
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */
[data-animate],
.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .68s ease, transform .68s ease;
}

[data-animate].is-visible,
.reveal.show,
.reveal.is-visible{
    opacity:1;
    transform:translateY(0);
}

[data-animate="fade-left"]{transform:translateX(34px);}
[data-animate="fade-right"]{transform:translateX(-34px);}
[data-animate="zoom-in"]{transform:scale(.96);}

[data-animate="fade-left"].is-visible,
[data-animate="fade-right"].is-visible,
[data-animate="zoom-in"].is-visible{
    transform:none;
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(26px);}
    to{opacity:1; transform:translateY(0);}
}

@keyframes softPulse{
    0%,100%{transform:scale(1); opacity:.78;}
    50%{transform:scale(1.06); opacity:1;}
}

@keyframes softFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(24px);}
}

@keyframes barFloat{
    0%,100%{transform:scaleY(1); opacity:.92;}
    50%{transform:scaleY(.86); opacity:1;}
}

@keyframes marketFloat{
    0%,100%{transform:translateY(0); opacity:.45;}
    50%{transform:translateY(-16px); opacity:.9;}
}

@keyframes whatsappPulse{
    0%,100%{
        box-shadow:0 12px 30px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.20);
    }
    50%{
        box-shadow:0 12px 30px rgba(37,211,102,.35), 0 0 0 12px rgba(37,211,102,0);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:1050px){
    .hero-container{
        gap:50px;
    }

    .categories-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:950px){
    .tools-grid,
    .insight-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,
    .founder-card,
    .leadership-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content{
        margin:0 auto;
    }

    .hero p,
    .insight-hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions,
    .hero-buttons,
    .hero-trust-strip,
    .founder-actions{
        justify-content:center;
    }

    .stats-grid{
        transform:none;
        margin-top:32px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        padding:28px;
    }

    footer h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    footer p,
    footer a{
        margin-left:auto;
        margin-right:auto;
    }

    .trader-list div:hover,
    footer a:hover{
        transform:none;
    }
}

@media(max-width:768px){
    .mobile-menu-btn,
    .menu-btn{
        display:flex;
    }

    .nav-container{
        padding:12px 16px;
    }

    .nav-menu{
        position:absolute;
        top:var(--nav-height);
        left:14px;
        right:14px;
        width:auto;
        background:#ffffff;
        flex-direction:column;
        align-items:center;
        gap:0;
        padding:14px;
        border-radius:0 0 22px 22px;
        border:1px solid var(--border);
        box-shadow:var(--shadow-md);
        opacity:0;
        visibility:hidden;
        transform:translateY(-12px);
        transition:.3s ease;
        z-index:1000;
    }

    .nav-menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-menu li{
        width:100%;
        text-align:center;
    }

    .nav-menu a{
        display:flex;
        width:100%;
        padding:14px 10px;
        border-radius:12px;
    }

    .nav-menu a::after{
        display:none;
    }

    .hero,
    .insight-hero{
        padding:64px 20px 84px;
    }

    .hero h1,
    .insight-hero h1{
        font-size:42px;
        letter-spacing:-.045em;
    }

    .hero p,
    .insight-hero p{
        font-size:16px;
    }

    .section,
    .broker-tools,
    .categories-section,
    .founder-section,
    .telegram-section,
    .newsletter-section{
        padding-top:64px;
        padding-bottom:64px;
    }

    .section-title h2,
    .cta h2,
    .telegram-box h2,
    .trader-section h2,
    .founder-content h2{
        font-size:34px;
    }

    .tools-grid,
    .insight-grid,
    .grid,
    .categories-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .market-widget-box,
    .insight-widget{
        padding:14px;
        border-radius:26px;
    }

    .dashboard-top,
    .widget-heading{
        flex-direction:column;
        align-items:flex-start;
    }

    .telegram-box{
        padding:40px 26px;
    }

    .founder-card,
    .leadership-card{
        padding:28px;
    }

    .founder-stats{
        grid-template-columns:1fr;
    }

    .whatsapp-float{
        right:16px;
        bottom:16px;
        width:54px;
        height:54px;
    }
}

@media(max-width:600px){
    .hero-actions a,
    .hero-buttons a,
    .founder-actions a,
    .btn,
    .btn-outline{
        width:100%;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
        padding:24px 18px;
    }

    .footer-logo{
        justify-content:center;
    }

    .risk-disclaimer,
    .market-disclaimer,
    .footer-disclaimer{
        text-align:left;
    }

    .copy{
        flex-direction:column;
        text-align:center;
    }

    .hero h1,
    .insight-hero h1{
        font-size:36px;
    }

    .tool-card,
    .card{
        min-height:auto;
        padding:26px;
    }

    .founder-photo,
    .leadership-photo img,
    .avatar img{
        max-width:260px;
        border-width:8px;
    }
}

@media (prefers-reduced-motion: reduce){
    *,*::before,*::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
    }
}
