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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f6f8fc;
    color:#1f2937;
    line-height:1.7;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

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

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:42px;
}

.logo span{
    font-size:22px;
    font-weight:700;
    color:#0B1F4D;
}

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

nav a{
    color:#4b5563;
    font-size:15px;
    transition:.3s;
}

nav a:hover{
    color:#0B1F4D;
}

.login-btn{
    background:#0B1F4D;
    color:#fff;
    padding:12px 26px;
    border-radius:30px;
}

/* HERO */

.hero{
    padding:140px 0 90px;
}

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

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#eef4ff;
    color:#0B1F4D;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;
}

.hero h1{
    font-size:54px;
    line-height:1.15;
    color:#0B1F4D;
    margin-bottom:25px;
}

.hero p{
    color:#6b7280;
    font-size:18px;
    max-width:550px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.btn-primary{
    background:#D4AF37;
    color:#fff;
    padding:16px 32px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

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

.btn-outline{
    border:2px solid #0B1F4D;
    color:#0B1F4D;
    padding:14px 30px;
    border-radius:40px;
}

.stats{
    display:flex;
    gap:20px;
    margin-top:50px;
}

.stats div{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.stats h2{
    color:#0B1F4D;
    font-size:34px;
}

.stats span{
    color:#6b7280;
    font-size:14px;
}

.coin-card{
    background:linear-gradient(135deg,#0B1F4D,#214BA8);
    color:#fff;
    border-radius:30px;
    padding:80px 40px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.coin-card i{
    font-size:80px;
    color:#FFD44D;
    margin-bottom:25px;
}

.coin-card h3{
    font-size:34px;
    margin-bottom:15px;
}

.coin-card p{
    color:#e8eefc;
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:#0B1F4D;
    margin-bottom:15px;
}

.section-title p{
    color:#6b7280;
    max-width:700px;
    margin:auto;
}
/* ===========================
   BENEFITS
=========================== */

.benefits{
    padding:90px 0;
}

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

.card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.card i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#eef4ff;
    color:#0B1F4D;
    font-size:28px;
    margin-bottom:20px;
}

.card h3{
    color:#0B1F4D;
    margin-bottom:12px;
    font-size:22px;
}

.card p{
    color:#6b7280;
    font-size:15px;
}


/* ===========================
   HOW
=========================== */

.how{
    padding:90px 0;
    background:#fff;
}

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

.step{
    background:#f7f9fd;
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.number{
    width:55px;
    height:55px;
    line-height:55px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    font-weight:700;
    font-size:20px;
}

.step h3{
    color:#0B1F4D;
    margin-bottom:10px;
}

.step p{
    color:#6b7280;
}


/* ===========================
   REWARD INFO
=========================== */

.reward-info{
    padding:90px 0;
}

.reward-box{
    background:linear-gradient(135deg,#0B1F4D,#214BA8);
    color:#fff;
    border-radius:28px;
    padding:45px;
    display:flex;
    align-items:center;
    gap:35px;
}

.reward-icon{
    width:110px;
    height:110px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:50px;
}

.reward-text span{
    color:#FFD44D;
    font-size:14px;
    letter-spacing:1px;
}

.reward-text h2{
    margin:10px 0 15px;
    font-size:38px;
}

.reward-text p{
    color:#e8eefc;
    font-size:17px;
}


/* ===========================
   PROFIT SHARING
=========================== */

.profit-sharing{
    padding:90px 0;
}

.level-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.level-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

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

.level-card span{
    color:#6b7280;
    font-size:14px;
}

.level-card h3{
    color:#D4AF37;
    font-size:42px;
    margin:15px 0;
}

.level-card p{
    color:#6b7280;
}


/* ===========================
   DAILY REWARD
=========================== */

.daily-reward{
    padding:90px 0;
    background:#fff;
}

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

.reward-card{
    background:#f8fafc;
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.reward-card i{
    font-size:42px;
    color:#0B1F4D;
    margin-bottom:20px;
}

.reward-card h3{
    color:#0B1F4D;
    margin-bottom:15px;
}

.reward-card p{
    color:#6b7280;
}


/* ===========================
   SPONSOR BONUS
=========================== */

.sponsor-bonus{
    padding:90px 0;
}

.bonus-box{
    background:#fff;
    border-radius:24px;
    padding:45px;
    display:flex;
    gap:40px;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.bonus-left{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:52px;
}

.bonus-right h3{
    color:#0B1F4D;
    font-size:32px;
    margin-bottom:15px;
}

.bonus-right p{
    color:#6b7280;
    margin-bottom:25px;
}
/* ===========================
   STAKING PLANS
=========================== */

.plans{
    padding:90px 0;
    background:#fff;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.plan{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
    border:1px solid #eef2f7;
}

.plan:hover{
    transform:translateY(-10px);
}

.plan.featured{
    border:2px solid #D4AF37;
    transform:scale(1.03);
}

.plan-name{
    display:inline-block;
    padding:8px 18px;
    border-radius:25px;
    background:#eef4ff;
    color:#0B1F4D;
    font-size:14px;
    margin-bottom:20px;
}

.plan h3{
    color:#0B1F4D;
    font-size:38px;
    margin-bottom:25px;
}

.plan ul{
    list-style:none;
    margin-bottom:35px;
}

.plan li{
    margin-bottom:14px;
    color:#6b7280;
}

.plan-btn{
    display:block;
    text-align:center;
    background:#0B1F4D;
    color:#fff;
    padding:16px;
    border-radius:40px;
    transition:.3s;
}

.plan-btn:hover{
    background:#D4AF37;
}


/* ===========================
   ACHIEVEMENT
=========================== */

.achievement{
    padding:90px 0;
}

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

.achievement-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
}

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

.achievement-card i{
    font-size:48px;
    color:#D4AF37;
    margin-bottom:20px;
}

.achievement-card h3{
    color:#0B1F4D;
    margin-bottom:8px;
}

.achievement-card h4{
    color:#374151;
    margin-bottom:15px;
}

.achievement-card p{
    color:#6b7280;
    margin-bottom:10px;
}

.achievement-card strong{
    color:#0B1F4D;
    font-size:24px;
}


/* ===========================
   FAQ
=========================== */

.faq{
    padding:90px 0;
    background:#fff;
}

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

.faq-item{
    background:#f8fafc;
    padding:28px;
    border-radius:18px;
    margin-bottom:20px;
}

.faq-item h3{
    color:#0B1F4D;
    margin-bottom:12px;
}

.faq-item p{
    color:#6b7280;
}


/* ===========================
   CTA
=========================== */

.cta{
    padding:100px 0;
    background:linear-gradient(135deg,#0B1F4D,#214BA8);
    color:#fff;
    text-align:center;
}

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

.cta p{
    max-width:700px;
    margin:auto;
    color:#dbe7ff;
    margin-bottom:40px;
}


/* ===========================
   FOOTER
=========================== */

.footer{
    background:#08152f;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer h3,
.footer h4{
    margin-bottom:20px;
}

.footer p{
    color:#b8c2d8;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:12px;
}

.footer a{
    color:#b8c2d8;
    transition:.3s;
}

.footer a:hover{
    color:#fff;
}

.footer hr{
    margin:40px 0 25px;
    border:none;
    height:1px;
    background:rgba(255,255,255,.1);
}

.copyright{
    text-align:center;
    color:#8ea0c6;
    font-size:14px;
}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-grid,
.reward-box,
.bonus-box{
    grid-template-columns:1fr;
    display:block;
}

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

.benefit-grid,
.steps,
.reward-grid,
.plan-grid,
.achievement-grid,
.level-grid{
    grid-template-columns:repeat(2,1fr);
}

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

nav{
    display:none;
}

}

@media(max-width:768px){

.hero{
    padding-top:120px;
}

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

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

.hero-buttons{
    flex-direction:column;
}

.stats{
    flex-direction:column;
}

.benefit-grid,
.steps,
.reward-grid,
.plan-grid,
.achievement-grid,
.level-grid{
    grid-template-columns:1fr;
}

.reward-box,
.bonus-box{
    text-align:center;
}

.reward-icon,
.bonus-left{
    margin:0 auto 25px;
}

.coin-card{
    padding:50px 25px;
}

.cta h2{
    font-size:32px;
}

.plan.featured{
    transform:none;
}

}
