*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
    line-height:1.6;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:sticky;
    top:0;
    background:rgba(15,23,42,.9);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo h2{
    color:#ff5e15;
    font-size:28px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:#ff5e15;
}

.hero{
    text-align:center;
    padding:90px 20px;
}

.hero h1{
    font-size:56px;
    color:#ff5e15;
}

.hero p{
    margin:20px auto;
    max-width:700px;
    color:#d1d5db;
    font-size:18px;
}

.buttons{
    margin-top:35px;
}

.buttons a{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    background:#ff5e15;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.buttons a:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,94,21,.35);
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    padding:50px 8%;
}

.card{
    background:#1e293b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#ff5e15;
}

.card h3{
    color:#ff5e15;
    margin-bottom:10px;
}

.card p{
    font-size:26px;
    font-weight:700;
}

section{
    padding:70px 8%;
}

section h2{
    color:#ff5e15;
    margin-bottom:20px;
    font-size:34px;
}

.contract{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.contract input{
    flex:1;
    min-width:250px;
    padding:14px;
    background:#111827;
    border:1px solid #374151;
    color:#fff;
    border-radius:8px;
}

.contract button{
    padding:14px 24px;
    border:none;
    background:#ff5e15;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
}

#chartBox{
    background:#1e293b;
    border-radius:15px;
    padding:30px;
    min-height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#9ca3af;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.box{
    background:#1e293b;
    padding:40px;
    text-align:center;
    border-radius:15px;
    font-size:22px;
    transition:.3s;
}

.box:hover{
    background:#ff5e15;
}

#roadmap ul{
    list-style:none;
}

#roadmap li{
    background:#1e293b;
    padding:15px;
    margin-bottom:15px;
    border-left:4px solid #ff5e15;
    border-radius:8px;
}

footer{
    background:#111827;
    text-align:center;
    padding:40px 20px;
    color:#9ca3af;
}

footer h3{
    color:#ff5e15;
    margin-bottom:10px;
}

@media(max-width:768px){

header{
    flex-direction:column;
}

nav{
    margin-top:15px;
}

nav a{
    display:inline-block;
    margin:8px;
}

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

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

section{
    padding:50px 20px;
}
}
