/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:
    radial-gradient(
        circle at top,
        #131d38 0%,
        #050505 40%
    );

    color:white;

    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

.page{
    width:min(1500px,95vw);
    margin:auto;
}

section{
    padding:70px 0;
}

/* ==========================
   NAVBAR
========================== */

.navbar{

    height:90px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:0 40px;
}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    position:relative;
}

.logo img{

    width:52px;
    height:52px;

    border-radius:16px;

    transition:.4s ease;

    filter:
    drop-shadow(0 0 10px rgba(37,99,235,.6))
    drop-shadow(0 0 20px rgba(168,85,247,.4));
}

.logo img:hover{

    transform:
    scale(1.08)
    rotate(-5deg);
}

.logo h2{

    font-size:34px;
    font-weight:800;
}

.logo span{

    background:
    linear-gradient(
        135deg,
        #60a5fa,
        #a855f7
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.back-btn{

    text-decoration:none;

    color:white;

    font-weight:700;

    padding:14px 24px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #8b5cf6
    );

    transition:.35s ease;
}

.back-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 0 25px rgba(59,130,246,.35);
}

/* ==========================
   HERO
========================== */

.support-hero{

    min-height:60vh;

    display:flex;

    align-items:center;
    justify-content:center;

    text-align:center;

    position:relative;

    overflow:hidden;
}

.hero-glow{

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(59,130,246,.18),
        transparent 70%
    );

    filter:blur(60px);
}

.support-content{

    max-width:850px;

    position:relative;

    z-index:2;
}

.hero-badge{

    display:inline-block;

    padding:12px 22px;

    border-radius:999px;

    margin-bottom:25px;

    color:#60a5fa;

    border:
    1px solid rgba(96,165,250,.2);

    background:
    rgba(96,165,250,.08);
}

.support-content h1{

    font-size:
    clamp(3rem,7vw,5.5rem);

    line-height:1.05;

    margin-bottom:20px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #cbd5e1,
        #60a5fa,
        #a855f7
    );

    background-size:300% 300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:
    gradientShift 6s ease infinite;
}

@keyframes gradientShift{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

.support-content p{

    max-width:700px;

    margin:auto;

    color:#cbd5e1;

    line-height:2;

    font-size:18px;
}

/* ==========================
   SECTION HEADER
========================== */

.section-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 60px;
}

.section-header span{

    display:inline-block;

    color:#60a5fa;

    margin-bottom:15px;
}

.section-header h2{

    font-size:
    clamp(2.5rem,5vw,4rem);
}

/* ==========================
   SUPPORT OPTIONS
========================== */

.support-options{

    padding-top:20px;
}

.options-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

.option-card{

    text-align:center;

    padding:40px 30px;

    border-radius:30px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s ease;
}

.option-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(59,130,246,.25);

    box-shadow:
    0 0 40px rgba(59,130,246,.12);
}

.option-card span{

    display:block;

    font-size:52px;

    margin-bottom:18px;
}

.option-card h3{

    font-size:24px;

    margin-bottom:12px;
}

.option-card p{

    color:#94a3b8;

    line-height:1.8;
}

/* ==========================
   QR SECTION
========================== */

.qr-section{

    padding-top:50px;
}

.qr-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:60px;

    border-radius:40px;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.10),
        rgba(168,85,247,.10)
    );

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.qr-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    color:#60a5fa;

    margin-bottom:20px;

    background:
    rgba(96,165,250,.08);

    border:
    1px solid rgba(96,165,250,.18);
}

.qr-card h2{

    font-size:
    clamp(2.5rem,5vw,4rem);

    margin-bottom:15px;
}

.qr-card p{

    color:#cbd5e1;

    line-height:1.9;
}

.qr-image{

    width:320px;

    margin:35px auto;

    border-radius:28px;

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 0 40px rgba(59,130,246,.15);

    transition:.4s ease;
}

.qr-image:hover{

    transform:
    scale(1.03);
}

.qr-note{

    color:#94a3b8 !important;

    margin-top:10px;
}

/* ==========================
   FOUNDER SECTION
========================== */

.founder-section{

    padding-top:60px;
}

.founder-card{

    max-width:950px;

    margin:auto;

    padding:60px;

    border-radius:40px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.08),
        rgba(168,85,247,.08)
    );

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.founder-card span{

    color:#60a5fa;

    display:block;

    margin-bottom:15px;
}

.founder-card h2{

    font-size:
    clamp(2.5rem,5vw,4rem);

    margin-bottom:25px;
}

.founder-card p{

    color:#cbd5e1;

    line-height:2;

    margin-bottom:18px;

    font-size:18px;
}

.founder-card h3{

    margin-top:25px;

    font-size:30px;
}

/* ==========================
   IMPACT SECTION
========================== */

.impact-section{

    padding-top:60px;
}

.impact-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

.impact-card{

    text-align:center;

    padding:40px 30px;

    border-radius:30px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s ease;
}

.impact-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(168,85,247,.25);

    box-shadow:
    0 0 40px rgba(168,85,247,.15);
}

.impact-card span{

    display:block;

    font-size:52px;

    margin-bottom:18px;
}

.impact-card h3{

    font-size:24px;

    margin-bottom:12px;
}

.impact-card p{

    color:#94a3b8;

    line-height:1.8;
}

/* ==========================
   COMMUNITY SECTION
========================== */

.community-section{

    padding-top:60px;
}

.community-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:60px;

    border-radius:40px;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.08),
        rgba(168,85,247,.08)
    );

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.community-card span{

    display:block;

    color:#60a5fa;

    margin-bottom:15px;
}

.community-card h2{

    font-size:
    clamp(2.5rem,5vw,4rem);

    margin-bottom:25px;
}

.community-card p{

    color:#cbd5e1;

    line-height:2;

    margin-bottom:15px;
}

/* ==========================
   THANK YOU
========================== */

.thank-you{

    padding-top:60px;
    padding-bottom:80px;
}

.thank-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px 40px;

    border-radius:40px;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.15),
        rgba(168,85,247,.15)
    );

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.thank-card span{

    display:block;

    color:#60a5fa;

    margin-bottom:15px;
}

.thank-card h2{

    font-size:
    clamp(2.8rem,6vw,4.5rem);

    margin-bottom:20px;
}

.thank-card p{

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:15px;
}

.thank-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;
}

.home-btn,
.about-btn{

    text-decoration:none;

    color:white;

    font-weight:700;

    padding:18px 30px;

    border-radius:18px;

    transition:.35s ease;
}

.home-btn{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #8b5cf6
    );
}

.about-btn{

    border:
    1px solid rgba(255,255,255,.12);

    background:
    rgba(255,255,255,.04);
}

.home-btn:hover,
.about-btn:hover{

    transform:
    translateY(-4px);
}

/* ==========================
   FOOTER
========================== */

footer{

    padding:40px 0 80px;

    text-align:center;
}

.footer-brand img{

    width:80px;

    margin:0 auto 20px;

    border-radius:22px;

    box-shadow:
    0 0 20px rgba(59,130,246,.3);
}

.footer-brand h2{

    font-size:54px;

    margin-bottom:15px;
}

.footer-brand p{

    max-width:700px;

    margin:auto;

    color:#94a3b8;

    line-height:1.9;
}

/* ==========================
   REVEAL
========================== */

.reveal{

    opacity:0;

    transform:
    translateY(80px)
    scale(.97);

    filter:blur(8px);

    transition:
    opacity .9s ease,
    transform .9s ease,
    filter .9s ease;
}

.reveal.active{

    opacity:1;

    transform:
    translateY(0)
    scale(1);

    filter:blur(0);
}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{
    width:6px;
}

::-webkit-scrollbar-track{
    background:#020617;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        180deg,
        #2563eb,
        #8b5cf6
    );

    border-radius:999px;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:900px){

    .options-grid,
    .impact-grid{

        grid-template-columns:
        1fr;
    }

    .qr-card,
    .founder-card,
    .community-card,
    .thank-card{

        padding:40px 25px;
    }
}

@media(max-width:768px){

    .navbar{
        padding:0 16px;
    }

    .logo h2{
        font-size:28px;
    }

    .logo img{
        width:42px;
        height:42px;
    }

    .support-content h1{
        font-size:48px;
    }

    .qr-image{
        width:240px;
    }

    .thank-buttons{
        flex-direction:column;
    }

    .home-btn,
    .about-btn{
        width:100%;
        text-align:center;
    }

    .navbar{

    height:80px;

    padding:0 14px;
}

.back-btn{

    padding:10px 14px;

    font-size:13px;

    border-radius:12px;
}
}

@media(max-width:480px){

    .support-content h1{
        font-size:38px;
    }

    .support-content p{
        font-size:16px;
    }

    .qr-image{
        width:200px;
    }

    .footer-brand h2{
        font-size:40px;
    }
}