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

body{
    font-family:'Poppins',sans-serif;
    background:#0b1220;
    color:#ffffff;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#111827;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo a{
    color:#fff;
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#16a34a;
}

.nav{
    display:flex;
    gap:30px;
    align-items:center;
}

.nav a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

.nav a:hover{
    color:#22c55e;
}

.login-btn{
    background:#16a34a;
    padding:12px 24px;
    border-radius:8px;
    color:#fff !important;
}

.hero{
    min-height:70vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#0b1220 0%,#111827 100%);
}

.hero-content{
    max-width:700px;
    padding:25px 0 40px;
}

.hero-badge{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:25px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero p{
    font-size:20px;
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 34px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#16a34a;
    color:#fff;
}

.btn-secondary{
    border:2px solid #16a34a;
    color:#16a34a;
}

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


.trust-strip{
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    background:#101827;
}

.trust-strip .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:30px 0;
}

.trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#fff;
    font-weight:600;
    font-size:16px;
}

.trust-item span{
    color:#d1d5db;
}

@media(max-width:900px){

.trust-strip .container{

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

}

}

@media(max-width:600px){

.trust-strip .container{

grid-template-columns:1fr;

}

}


.hero .container{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.hero-right{
    display:flex;
    justify-content:center;
}

.glass-card{
    width:100%;
    max-width:420px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    padding:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.glass-card h3{
    margin-bottom:25px;
    font-size:24px;
}

.stat-row{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.stat-row:last-child{
    border-bottom:none;
}

.stat-row span{
    color:#9ca3af;
}

.stat-row strong{
    color:#fff;
}

@media(max-width:900px){

.hero .container{
    grid-template-columns:1fr;
}

.hero-right{
    margin-top:40px;
}

}


.live-stats{
    padding:25px 0 40px;
    background:#0f172a;
}

.live-stats h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.section-subtitle{
    text-align:center;
    color:#9ca3af;
    max-width:700px;
    margin:0 auto 60px;
    line-height:1.8;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#111827;
    border-radius:18px;
    padding:35px;
    text-align:center;
}

.stat-box h3{
    color:#9ca3af;
    margin-bottom:15px;
}

.stat-box h1{
    font-size:42px;
    color:#fff;
}

@media(max-width:900px){

.stats-grid{

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

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}


.how-it-works{
    padding:25px 0 40px;
    background:#0b1220;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.step-card{
    background:#111827;
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.step-card:hover{
    transform:translateY(-8px);
}

.step-number{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#16C784;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    margin-bottom:20px;
}

.step-card h3{
    margin-bottom:15px;
}

.step-card p{
    color:#9ca3af;
    line-height:1.7;
}

@media(max-width:900px){
.steps-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.steps-grid{
grid-template-columns:1fr;
}
}


.how-it-works h2{
    text-align:center !important;
    margin-bottom:20px;
}


.investment-section{
    padding:25px 0 40px;
    background:#111827;
}

.plans-grid{
    display:flex;
    justify-content:center;
    margin-top:50px;
}

.plan-card{
    max-width:500px;
    width:100%;
    background:#0f172a;
    border:2px solid #16C784;
    border-radius:20px;
    padding:40px;
    text-align:center;
}

.plan-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.plan-card h1{
    font-size:48px;
    color:#16C784;
    margin-bottom:25px;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.plan-card li{
    padding:12px 0;
    color:#d1d5db;
}


.investment-section h2{
    text-align:center !important;
    font-size:42px;
    margin-bottom:20px;
}


.plan-card ul{
    list-style:none;
    padding:0;
    margin:30px auto;
    max-width:320px;
}

.plan-card li{
    display:flex;
    align-items:center;
    gap:10px;
    text-align:left;
    padding:12px 0;
    color:#d1d5db;
}


.earn-section{
    padding:25px 0 40px;
    background:#0b1220;
}

.earn-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.earn-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.earn-card{
    background:#111827;
    border-radius:18px;
    padding:35px;
    text-align:center;
}

.earn-card h3{
    margin-bottom:20px;
}

.earn-card p{
    color:#9ca3af;
    line-height:1.8;
}

@media(max-width:900px){

.earn-grid{
grid-template-columns:1fr;
}

}


.faq-section{
    padding:25px 0 40px;
    background:#111827;
}

.faq-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.faq-list{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#0f172a;
    border-left:4px solid #16C784;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;
}

.faq-item h3{
    margin-bottom:12px;
}

.faq-item p{
    color:#9ca3af;
    line-height:1.8;
}


.cta-section{
    padding:120px 0;
    background:linear-gradient(180deg,#0b1220,#111827);
    text-align:center;
}

.cta-section h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


.hero,
.trust-strip,
.live-stats,
.how-it-works,
.investment-section,
.earn-section,
.faq-section,
.cta-section{
    padding-top:45px;
    padding-bottom:45px;
}


.container{
    width:min(1200px,92%);
    margin:auto;
}


section h2{
    margin-bottom:18px;
}

.section-subtitle{
    margin-bottom:55px;
}


.stat-box,
.step-card,
.plan-card,
.earn-card,
.faq-item{
    transition:.35s;
}


footer{
    padding:40px 0 !important;
}

footer h3{
    margin-bottom:15px !important;
}

footer p{
    margin:8px 0 !important;
}

footer .container{
    padding-top:0 !important;
    padding-bottom:0 !important;
}


.hero{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(8,15,30,.78),rgba(8,15,30,.88)),
    radial-gradient(circle at top right,#16C78422,transparent 35%),
    radial-gradient(circle at bottom left,#2563eb22,transparent 35%);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:60px 60px;
    opacity:.25;
    pointer-events:none;
}

.hero .container{
    position:relative;
    z-index:2;
}


.hero h1{
    font-size:68px;
    line-height:1.05;
    letter-spacing:-2px;
    max-width:700px;
}

.hero p{
    max-width:620px;
    font-size:22px;
    line-height:1.8;
    color:#cbd5e1;
}

.hero-badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:999px;
    background:#16C784;
    color:#fff;
    font-weight:600;
    margin-bottom:25px;
}


.btn-primary,
.btn-secondary{

min-width:240px;
font-size:18px;
font-weight:700;
box-shadow:0 15px 40px rgba(22,199,132,.15);

}

.btn-primary:hover{

transform:translateY(-4px);
box-shadow:0 20px 45px rgba(22,199,132,.35);

}

.btn-secondary:hover{

background:#16C784;
color:#fff;

}


.hero{
    padding-top:35px !important;
}


.hero-badge{

display:inline-flex;
align-items:center;
justify-content:center;
width:auto;
padding:10px 20px;
background:#16C784;
color:#ffffff;
font-weight:700;
border-radius:999px;
box-shadow:0 8px 25px rgba(22,199,132,.35);

}


.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#22c55e !important;
    color:#052e16 !important;

    font-weight:700;
    font-size:15px;

    padding:10px 22px;
    border-radius:999px;

    border:1px solid #4ade80;
    box-shadow:0 10px 30px rgba(34,197,94,.30);
}


.btn-primary{
    text-transform:uppercase;
    letter-spacing:.8px;
}

.btn-secondary{
    text-transform:uppercase;
    letter-spacing:.8px;
}


.btn-secondary:hover{
    background:#16C784 !important;
    border-color:#16C784 !important;
    color:#ffffff !important;
}

.btn-secondary:hover *{
    color:#ffffff !important;
}


.hero{
    padding-top:45px !important;
    padding-bottom:55px !important;
}


.hero .container{
    align-items:center !important;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.glass-card{
    margin-top:-20px;
}


.glass-card{
    background:rgba(22,28,40,.78);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        0 0 25px rgba(34,197,94,.08);
}

.stat-row{
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.stat-row:last-child{
    border-bottom:none;
}


nav a{
    position:relative;
    transition:.3s;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#22c55e;
    transition:.3s;
}

nav a:hover{
    color:#22c55e;
}

nav a:hover::after{
    width:100%;
}


.login-btn,
nav .btn-primary{

    border-radius:12px;
    box-shadow:0 10px 25px rgba(34,197,94,.20);
}

.login-btn:hover,
nav .btn-primary:hover{

    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(34,197,94,.35);

}


.step-card,
.plan-card,
.earn-card,
.faq-item,
.stat-box,
.glass-card{

    transition:
        transform .30s ease,
        box-shadow .30s ease,
        border-color .30s ease;

}

.step-card:hover,
.plan-card:hover,
.earn-card:hover,
.faq-item:hover,
.stat-box:hover,
.glass-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35),
        0 0 25px rgba(34,197,94,.12);

    border-color:rgba(34,197,94,.35);

}


.hero,
.live-stats,
.how-it-works,
.investment-section,
.earn-section,
.faq-section,
.cta-section{

    animation:fadeUp .7s ease;

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(20px);

}

to{

opacity:1;
transform:translateY(0);

}

}


.stat-box{

    background:linear-gradient(180deg,#161f2f,#111827);
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:35px 25px;
    transition:.35s;

}

.stat-box h3{

    color:#9ca3af;
    font-size:18px;
    font-weight:600;
    margin-bottom:18px;

}

.stat-box h1{

    font-size:54px;
    font-weight:800;
    color:#ffffff;

}

.stat-box:hover{

    transform:translateY(-8px);
    border-color:#22c55e;
    box-shadow:
    0 18px 45px rgba(0,0,0,.35),
    0 0 30px rgba(34,197,94,.12);

}


.live-stats,
.how-it-works,
.investment-section,
.earn-section,
.faq-section{

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

}


header{

position:sticky;
top:0;
z-index:9999;

background:rgba(10,15,25,.80);

backdrop-filter:blur(16px);

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

}


header{

padding:18px 0;

}

nav{

display:flex;
align-items:center;
gap:28px;

}


.logo img{

height:56px;
width:auto;

}


.trust-strip{
    padding:30px 0 !important;
}

.trust-item{
    padding:8px 0;
}


.investment-content .btn-primary{
    transition:all .3s ease;
}

.investment-content .btn-primary:hover{
    background:#22c55e !important;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(34,197,94,.35);
}


.btn-primary,
.btn-secondary{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
}


.cta-buttons{
    margin-bottom:40px;
}


.investment-section{
    margin-top:30px !important;
}


/* ===== HERO BACKGROUND IMAGE ===== */

.hero{
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(rgba(8,15,30,.78), rgba(8,15,30,.88)),
        url("../images/robo1.png") !important;

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,15,30,.96) 0%,
        rgba(8,15,30,.85) 38%,
        rgba(8,15,30,.55) 68%,
        rgba(8,15,30,.25) 100%
    );

    pointer-events:none;
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
}


/* ===== HERO IMAGE TUNING ===== */

.hero{
    background:
        linear-gradient(rgba(8,15,30,.55), rgba(8,15,30,.70)),
        url("/images/robo1.png") !important;

    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.hero::after{
    background: linear-gradient(
        90deg,
        rgba(8,15,30,.96) 0%,
        rgba(8,15,30,.78) 35%,
        rgba(8,15,30,.35) 65%,
        rgba(8,15,30,.05) 100%
    ) !important;
}


.hero{
    background-position:130% center !important;
    background-size:contain !important;
}


/* Hero Final Layout */

.hero{
    background-position:95% center !important;
    background-size:48% auto !important;
}

.glass-card{
    margin-left:60px;
}


/* ===== REMOVE HERO BACKGROUND IMAGE ===== */

.hero{
    background:
        linear-gradient(rgba(8,15,30,.78), rgba(8,15,30,.88)),
        radial-gradient(circle at top right,#16C78422,transparent 35%),
        radial-gradient(circle at bottom left,#2563eb22,transparent 35%) !important;

    background-size:auto !important;
    background-position:center !important;
    background-repeat:no-repeat !important;
}

.hero::after{
    display:none !important;
}



/* ===== HERO ROBOT V2 ===== */

.hero-right{
    position:relative;
    min-height:520px;
}

.hero-robot{
    position:absolute;
    width:520px;
    max-width:none;

    left:-140px;
    bottom:-35px;

    z-index:1;
    pointer-events:none;
    user-select:none;
}

.glass-card{
    position:relative;
    z-index:2;
}

@media (max-width:900px){

.hero-robot{
    display:none;
}

}


.hero-right{
    position:relative;
    overflow:hidden;
}

.hero-robot{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    opacity:.95;

    z-index:1;
}

.glass-card{
    position:relative;
    z-index:2;
}


/* ===== FULL HERO IMAGE ===== */

.hero{
    position:relative;
    overflow:hidden;
}

.hero-bg-image{

    position:absolute;

    top:0;
    right:0;

    width:48%;
    height:100%;

    object-fit:cover;
    object-position:center;

    opacity:.95;

    z-index:1;

    pointer-events:none;

}

.hero .container{

    position:relative;

    z-index:2;

}

.glass-card{

    position:relative;

    z-index:3;

}


/* ===== HERO FULL BACKGROUND IMAGE ===== */

.hero{

    position:relative !important;
    overflow:hidden !important;
    min-height:85vh !important;

    background:
        linear-gradient(rgba(8,15,30,.72), rgba(8,15,30,.84)),
        url('/dev/assets/images/robo2.png') !important;

    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;

}

/* Remove old robot image if present */

.hero-robot{
    display:none !important;
}

.hero .container{
    position:relative;
    z-index:2;
}

.glass-card{
    position:relative;
    z-index:3;
}


/* ===== TRUST STRIP COMPACT ===== */

.trust-strip{
    padding:8px 0 !important;
}

.trust-strip .container{
    padding:8px 0 !important;
    gap:20px !important;
}

.trust-item{
    padding:4px 0 !important;
}


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

@media (max-width:768px){

.header .container{

    flex-direction:column;
    height:auto;
    padding:14px 0;

}

.logo{

    margin-bottom:14px;

}

.nav{

    width:100%;

    display:flex;
    flex-wrap:wrap;

    justify-content:center;
    align-items:center;

    gap:12px;

}

.nav a{

    font-size:14px;
    padding:10px 14px;

}

.login-btn{

    padding:10px 18px !important;

}

}

@media (max-width:480px){

.nav{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;

}

.nav a{

    text-align:center;

}

.login-btn{

    grid-column:1 / -1;

}

}


/* ===== LIVE MARKET TICKER ===== */

.hero-market-ticker{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:48px;
    overflow:hidden;
    z-index:5;
    display:flex;
    align-items:center;
    background:rgba(8,15,30,.72);
    border-bottom:1px solid rgba(34,197,94,.18);
    backdrop-filter:blur(8px);
}

.hero-market-track{
    display:flex;
    align-items:center;
    width:max-content;
    white-space:nowrap;
    animation:heroMarketScroll 55s linear infinite;
}

.market-item{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-right:42px;
    font-size:14px;
    font-weight:700;
}

.market-item.positive{
    color:#22c55e;
}

.market-item.negative{
    color:#ef4444;
}

.market-item.positive .market-dot{
    background:#22c55e;
    box-shadow:0 0 8px rgba(34,197,94,.7);
}

.market-item.negative .market-dot{
    background:#ef4444;
    box-shadow:0 0 8px rgba(239,68,68,.7);
}

.market-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 8px rgba(34,197,94,.7);
}

.market-loading{
    color:#94a3b8;
    font-size:14px;
    padding-left:30px;
}

hero-market-track:hover{
    animation-play-state:paused;
}

@keyframes heroMarketScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:600px){

    .hero-market-ticker{
        height:42px;
    }

    .market-item{
        font-size:12px;
        margin-right:28px;
    }

}


/* ===== TICKER FINAL OVERRIDE ===== */

.hero-market-track {
    animation: heroMarketScroll 60s linear infinite !important;
}

.hero-market-track:hover {
    animation-play-state: paused !important;
}

.hero-market-track .market-item {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    margin-right: 42px;
    font-size: 14px;
    font-weight: 700;
}

.hero-market-track .market-item.positive {
    color: #22c55e !important;
}

.hero-market-track .market-item.negative {
    color: #ef4444 !important;
}

.hero-market-track .market-item.positive .market-dot {
    background: #22c55e !important;
    box-shadow: 0 0 8px rgba(34,197,94,.7) !important;
}

.hero-market-track .market-item.negative .market-dot {
    background: #ef4444 !important;
    box-shadow: 0 0 8px rgba(239,68,68,.7) !important;
}

@keyframes heroMarketScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

