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

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

body{
    font-family:"Inter",sans-serif;
    background:#0f172a;
    color:#fff;
}

.hero{
    min-height:100vh;

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

    background:
        radial-gradient(circle at top,#1e3a8a 0%,transparent 45%),
        linear-gradient(135deg,#0f172a,#020617);
}

    .hero-content{
        max-width:760px;
        text-align:center;
    }

        .badge{
            display:inline-block;
            margin-bottom:1.5rem;
            padding:.45rem 1rem;
            
            border:1px solid rgba(255,255,255,.15);
            border-radius:999px;

            background:rgba(255,255,255,.05);
            color:#cbd5e1;

            font-size:.9rem;
        }

    h1{
        font-size:clamp(3rem,7vw,5rem);
        font-weight:800;

        line-height:1.05;
        letter-spacing:-2px;
        
        margin-bottom:1.25rem;
    }

        .gradient{
            background:linear-gradient(90deg,#60a5fa,#22d3ee);
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
        }

    p{
        font-size:1.25rem;
        color:#cbd5e1;

        line-height:1.8;

        max-width:650px;
        margin:0 auto 2.5rem;
    }

.buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:16px 28px;
    border-radius:14px;
    font-weight:700;
    transition:.25s;
}

.primary{
    background:#3b82f6;
    color:white;
}

.primary:hover{
    background:#2563eb;
    transform:translateY(-2px);
}

.secondary{
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
    color:white;
}

.secondary:hover{
    background:rgba(255,255,255,.08);
}


.upcoming{
    padding:110px 20px;
    background:#020617;
}

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

    .section-heading{
        text-align:center;

        margin-bottom:120px;
    }

        .eyebrow{
            display:inline-block;

            color:#60a5fa;
            font-weight:700;
            text-transform:uppercase;
            letter-spacing:1px;

            margin-bottom:12px;
        }

        .section-heading h2{
            font-size:2.8rem;
            margin-bottom:18px;
        }

            .section-heading h2 span{
                color:#60a5fa;
            }

        .section-heading p{
            color:#94a3b8;
            max-width:650px;
            margin:auto;
        }



            /* Vote button */
            .vote-btn{
                width:100%;
                margin-top:24px;
                padding:12px 16px;

                background:rgba(59,130,246,.12);
                border:1px solid rgba(59,130,246,.4);
                border-radius:10px;

                color:#93c5fd;
                font-size:15px;
                font-weight:600;

                display:flex;
                align-items:center;
                justify-content:space-between;

                cursor:pointer;
                transition:.2s ease;
            }

            .vote-btn span{
                font-size:20px;
                transition:.2s ease;
            }

            .vote-btn:hover{
                background:#3b82f6;
                border-color:#3b82f6;
                color:white;
            }

            .vote-btn:hover span{
                transform:translateX(4px);
            }

    .notify-box{
        background:linear-gradient(135deg,#1d4ed8,#2563eb);
        padding:55px;
        border-radius:24px;
        text-align:center;
    }

        .notify-box h3{
            font-size:2rem;
            margin-bottom:12px;
        }

        .notify-box p{
            color:#dbeafe;
            margin-bottom:30px;
        }

        .notify-form{
            display:flex;
            justify-content:center;
            gap:14px;
            flex-wrap:wrap;
        }

            .notify-form input{
                width:340px;
                max-width:100%;
                padding:16px;

                border:none;
                border-radius:12px;

                font-size:1rem;
            }

            .notify-form button{
                padding:16px 26px;

                border:none;
                border-radius:12px;

                background:white;
                color:#2563eb;
                font-weight:700;
                
                cursor:pointer;
            }
.benefits-section{
    padding:90px 24px;
    background:#0b1120;
}

    .benefits-header{
        max-width:700px;
        margin:0 auto 50px;
        text-align:center;
    }

    .section-label{
        display:inline-block;
        margin-bottom:12px;

        color:#60a5fa;
        font-size:13px;
        font-weight:700;
        letter-spacing:1.5px;
    }

    .benefits-header h2{
        margin:0 0 14px;

        color:white;
        font-size:38px;
        line-height:1.2;
    }

    .benefits-header p{
        margin:0;

        color:#94a3b8;
        font-size:17px;
        line-height:1.6;
    }

    .benefits-grid{
        max-width:1100px;
        margin:0 auto;

        display:grid;
        grid-template-columns:repeat(4, 1fr);
        gap:18px;
    }

    .benefit-card{
        padding:28px;

        background:#0f172a;
        border:1px solid rgba(255,255,255,.08);
        border-radius:18px;

        transition:.25s ease;
    }



    .benefit-icon{
        width:44px;
        height:44px;
        margin-bottom:20px;

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

        background:rgba(59,130,246,.12);
        border:1px solid rgba(59,130,246,.2);
        border-radius:12px;

        font-size:20px;
    }

    .benefit-card h3{
        margin:0 0 10px;

        color:white;
        font-size:18px;
    }

    .benefit-card p{
        margin:0;

        color:#94a3b8;
        font-size:14px;
        line-height:1.6;
    }

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

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

        .benefits-header h2{
            font-size:30px;
        }
    }

.voting-section{
    padding:90px 24px;
    background:#0b1120;
}

.voting-header{
    max-width:700px;
    margin:0 auto 45px;
    text-align:center;
}

.voting-header h2{
    margin:0 0 12px;
    color:white;
    font-size:38px;
}

.voting-header p{
    margin:0;
    color:#94a3b8;
    font-size:16px;
}

.projects-grid{
    max-width:1000px;
    margin:0 auto;

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

    .card{
        background:#0f172a;
        border:1px solid rgba(255,255,255,.08);
        border-radius:18px;
        padding:28px;
        transition:.25s;
    }

    .status{
        display:inline-block;
        padding:6px 10px;

        background:rgba(59,130,246,.15);
        color:#60a5fa;

        border-radius:7px;
        font-size:12px;
        font-weight:600;
    }

    .card h3{
        margin:18px 0 10px;
        color:white;
    }
    .card h3:hover {
        color:#3b82f6;
    }

    .card p{
        color:#94a3b8;
        line-height:1.6;
    }

.difficulty{
    display:inline-block;
    margin-top:5px;

    color:#cbd5e1;
    font-size:13px;
}


/* Vote button */

.vote-btn{
    width:100%;
    margin-top:24px;
    padding:13px 16px;

    background:rgba(59,130,246,.12);
    border:1px solid rgba(59,130,246,.4);
    border-radius:10px;

    color:#93c5fd;
    font-size:14px;
    font-weight:600;

    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;
    transition:.2s ease;
}

.vote-btn span{
    font-size:19px;
    transition:.2s ease;
}

.vote-btn:hover{
    background:#3b82f6;
    border-color:#3b82f6;
    color:white;
}

.vote-btn:hover span{
    transform:translateX(4px);
}


/* Form */

.vote-form-container{
    max-width:700px;
    margin:25px auto 0;

    display:none;

    background:#0f172a;
    border:1px solid rgba(59,130,246,.35);
    border-radius:18px;

    overflow:hidden;
}

.vote-form-container.show{
    display:block;
    animation:expandVote .3s ease;
}

@keyframes expandVote{
    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.vote-form-content{
    position:relative;
    padding:35px;
    text-align:center;
}

.vote-form-content h3{
    margin:8px 0;
    color:white;
    font-size:24px;
}

.vote-form-content p{
    max-width:500px;
    margin:0 auto 25px;

    color:#94a3b8;
    line-height:1.6;
}

.close-vote{
    position:absolute;
    top:15px;
    right:18px;

    background:none;
    border:none;

    color:#64748b;
    font-size:25px;
    cursor:pointer;
}

.close-vote:hover{
    color:white;
}

.vote-form-input-container{
    display:flex;
    gap:10px;
    max-width:500px;
    margin:auto;
}

.vote-input{
    flex:1;
    padding:13px 15px;

    background:#020617;
    border:1px solid rgba(255,255,255,.1);
    border-radius:9px;

    color:white;
    outline:none;
}

.vote-form-content input:focus{
    border-color:#3b82f6;
}

.submit-vote{
    padding:13px 20px;

    background:#3b82f6;
    border:none;
    border-radius:9px;

    color:white;
    font-weight:600;

    cursor:pointer;
}

.submit-vote:hover{
    background:#2563eb;
}


/* Results */

.vote-results{
    max-width:700px;
    margin:35px auto 0;

    display:none;
}

.vote-results.show{
    display:block;
    animation:expandVote .3s ease;
}

.results-header{
    margin-bottom:25px;
}

.results-header h3{
    margin:8px 0 0;
    color:white;
    font-size:22px;
}

.result{
    margin-bottom:22px;
}

.result-info{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;

    color:#cbd5e1;
    font-size:14px;
}

.result-info strong{
    color:#60a5fa;
}

.progress-bar{
    height:9px;

    background:#1e293b;
    border-radius:20px;

    overflow:hidden;
}

.progress-fill{
    height:100%;
    background:#3b82f6;
    border-radius:20px;
}
.vote-progress {
    width: 100%;
    height: 12px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    appearance: none;
}

/* Background */
.vote-progress::-webkit-progress-bar {
    background: #252525;
    border-radius: 10px;
}

/* Filled portion */
.vote-progress::-webkit-progress-value {
    background: #5686EE;
    border-radius: 10px;
}


@media(max-width:700px){

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

    .vote-form-content form{
        flex-direction:column;
    }

    .voting-header h2{
        font-size:30px;
    }
}
