@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*
==================================================
HYPEDAY - STYLE BASE / SITE PÚBLICO
==================================================
*/

:root{
    --bg:#040816;
    --card:#0c1229;
    --border:rgba(255,255,255,.06);
    --text:#fff;
    --muted:#98a1b3;
    --pink:#ff2da6;
    --purple:#8b2dff;
    --blue:#00a6ff;
    --gradient:linear-gradient(90deg,#ff2da6 0%,#8b2dff 50%,#00a6ff 100%);
}

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

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:
        radial-gradient(circle at top,#111632 0%,#040816 40%),
        #040816;
    color:#fff;
    min-width:0;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.015) 1px,transparent 1px);
    background-size:42px 42px;
    opacity:.4;
    pointer-events:none;
    z-index:-1;
}

.container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 24px;
}

.header{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(4,8,22,.72);
    border-bottom:1px solid rgba(255,255,255,.04);
}

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

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.logo img{
    height:44px;
}

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

.nav a{
    text-decoration:none;
    color:#c4cbdb;
    font-size:15px;
    transition:.3s;
}

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

/*
==================================================
BUTTONS
==================================================
*/

.btn-primary,
.btn-secondary,
.btn-danger-outline{
    height:44px;
    padding:0 18px;
    border:none;
    border-radius:14px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    
    display:inline-flex;
    align-items:center;
    justify-content:center;
    
    gap:8px;
    cursor:pointer;
    transition:.2s;
    border:none;
}

.btn-primary{
    background:var(--gradient);
    color:#fff;
    box-shadow:0 0 24px rgba(139,45,255,.22);
}

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

.btn-secondary{
    border:1px solid rgba(255,255,255,.08);
    background:transparent;
    color:#fff;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.03);
    border-color:rgba(255,45,166,.25);
}

.hero{
    padding:40px 0 50px;
}

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

.hero-content{
    max-width:560px;
}

.hero h1{
    font-size:70px;
    line-height:.98;
    letter-spacing:-3px;
    margin-bottom:22px;
}

.hero h1 span{
    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:34px;
}

.hero-users{
    margin-top:46px;

    width:100%;

    display:flex;
    flex-direction:column;

    gap:18px;
}

.hero-users-label{
    width:100%;

    text-align:center;

    font-size:15px;
    color:var(--muted);

    letter-spacing:.3px;
}

.hero-users-bottom{
    width:100%;

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

    gap:24px;
}

.hero-users-left{
    display:flex;
    align-items:center;
    gap:22px;
}

.hero-star{
    position:relative;

    width:68px;
    height:68px;

    border-radius:50%;

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

    background:
        linear-gradient(
            135deg,
            #ff2da6 0%,
            #8b2dff 50%,
            #00a6ff 100%
        );

    flex-shrink:0;

    z-index:2;
}

.hero-star::before{
    content:'';

    position:absolute;

    inset:-14px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            rgba(255,45,166,.7),
            rgba(139,45,255,.6),
            rgba(0,166,255,.6)
        );

    filter:blur(26px);

    z-index:-1;
}

.hero-star i{
    font-size:34px;
    color:#fff;
}

.hero-avatars{
    display:flex;
    align-items:center;
    gap:14px;
}

.hero-avatars img{
    width:58px;
    height:58px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #060b19;

    transition:.3s;
}

.hero-avatars img:hover{
    transform:translateY(-4px) scale(1.04);
}

.hero-avatars img:first-child{
    margin-left:0;
}

.hero-users-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

.hero-users-text strong{
    display:block;

    font-size:42px;
    line-height:1;

    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-users-text span{
    display:block;

    margin-top:4px;

    font-size:15px;
    color:var(--muted);

    text-align:right;
}

@media(max-width:768px){

    .hero-users-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
    }

    .hero-users-right{
        align-items:flex-start;
    }

    .hero-users-text span{
        text-align:left;
    }

}

.hero-visual{
    position:relative;
    width:100%;
    height:720px;
}

.hero-bg-shape{
    position:absolute;
    inset:0;
    border-radius:42px;
}

.hero-bg-shape-1{
    background:linear-gradient(135deg,#ff2da6,#8b2dff);
    opacity:.18;
    transform:rotate(6deg);
}

.hero-bg-shape-2{
    background:linear-gradient(135deg,#8b2dff,#00a6ff);
    opacity:.12;
    transform:rotate(12deg);
}

.hero-visual{
    position:relative;
    width:100%;
    height:720px;
}

.hero-visual::before{
    content:'';
    position:absolute;
    inset:-40px;
    border-radius:80px;

    background:
        linear-gradient(
            135deg,
            rgba(255,45,166,.55),
            rgba(139,45,255,.45),
            rgba(0,166,255,.45)
        );

    filter:blur(70px);

    opacity:.9;

    z-index:0;
}

.hero-carousel{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;

    border-radius:42px;

    padding:10px;

    z-index:2;

    background:
        linear-gradient(#0a0f22,#0a0f22) padding-box,
        linear-gradient(
            135deg,
            #ff2da6 0%,
            #8b2dff 50%,
            #00a6ff 100%
        ) border-box;

    border:10px solid transparent;
}

.hero-carousel::after{
    content:'';
    position:absolute;
    inset:0;

    border-radius:32px;

    background:
        radial-gradient(
            circle at top,
            rgba(255,255,255,.08),
            transparent 55%
        );

    pointer-events:none;

    z-index:3;
}

.hero-visual:hover::before{
    filter:blur(90px);
    opacity:1;
}

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

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity .8s ease;

    transform:scale(1.01);
}

.hero-slide.active{
    opacity:1;
    z-index:2;
}

.hero-nav{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:54px;
    height:54px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

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

    cursor:pointer;

    z-index:20;

    opacity:0;

    transition:.3s;
}

.hero-carousel:hover .hero-nav{
    opacity:1;
}

.hero-nav:hover{
    background:rgba(255,255,255,.22);
}

.hero-nav i{
    font-size:28px;
    color:#fff;
}

.hero-prev{
    left:22px;
}

.hero-next{
    right:22px;
}

.hero-dots{
    position:absolute;

    bottom:22px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    gap:10px;

    z-index:20;
}

.hero-dot{
    width:10px;
    height:10px;

    border:none;
    border-radius:999px;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.3s;
}

.hero-dot.active{
    width:34px;
    background:#fff;
}

.section{
    padding:55px 0;
}

.glass-box{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.015)
        );
    border:1px solid rgba(255,255,255,.05);
    border-radius:32px;
    padding:48px;
}

.section-title{
    text-align:center;
    font-size:46px;
    margin-bottom:10px;
}

.steps-grid{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:26px;
    margin-top:54px;
}

.step-card{
    width:220px;
    text-align:center;
}

.step-icon{
    width:92px;
    height:92px;

    margin:0 auto 26px;

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

.step-icon i{
    font-size:52px;

    font-weight:300;

    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    opacity:.95;
}

.step-card h3{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;

    font-size:17px;
    line-height:1.6;
    font-weight:400;

    color:#fff;

    max-width:220px;
    margin:0 auto;
}

.step-card h3 span{
    width:34px;
    height:34px;

    min-width:34px;

    border-radius:50%;

    border:1.5px solid #FF2DAA;

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

    font-size:14px;
    font-weight:600;
    text-align: left;
    
    color:#FF2DAA;

    background:rgba(255,45,170,.04);
}

.step-arrow{
    margin-top:34px;

    color:rgba(255,255,255,.10);

    font-size:22px;
}

.step-arrow i{
    font-weight:300;
}

.influencer-section-title{
    text-align:center;
    font-size:48px;
}

.influencer-subtitle{
    text-align:center;
    color:var(--muted);
    margin-top:6px;
}

.influencer-wrapper{
    position:relative;
    margin-top:40px;
}

.influencer-grid{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scrollbar-width:none;
    scroll-behavior:smooth;
    padding:4px;
}

.influencer-grid::-webkit-scrollbar{
    display:none;
}

.carousel-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.06);
    background:rgba(8,12,28,.88);
    backdrop-filter:blur(12px);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:30;
}

.carousel-arrow.left{
    left:-22px;
}

.carousel-arrow.right{
    right:-22px;
}

.carousel-arrow i{
    font-size:28px;
}

.influencer-card{
    position:relative;
    min-width:220px;
    max-width:220px;
    border-radius:24px;
    overflow:hidden;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.015)
        );
    border:1px solid rgba(255,255,255,.05);
    transition:.3s;
}

.influencer-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,45,166,.16);
    box-shadow:0 0 35px rgba(139,45,255,.16);
}

.influencer-card img{
    width:100%;
    height:210px;
    object-fit:cover;
}

.influencer-content{
    padding:16px 18px 18px;
}

.influencer-content h3{
    font-size:18px;
    margin-bottom:4px;
}

.influencer-content span{
    color:var(--muted);
    font-size:13px;
}

.center{
    text-align:center;
}

.mt-40{
    margin-top:40px;
}

.mt-40 .btn-secondary{
    width:240px;
    height:58px;
    border-radius:18px;
}

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

.benefit-card{
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.015)
        );
    border:1px solid rgba(255,255,255,.05);
    border-radius:24px;
    padding:28px 24px;
    min-height:180px;
}

.benefit-card i{
    font-size:44px;
    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

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

.benefit-card p{
    color:var(--muted);
    line-height:1.7;
}

.footer{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-content{
    height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer p{
    color:var(--muted);
}

@media(max-width:1100px){

    .hero{
        padding:30px 0 40px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .hero-content{
        max-width:100%;
        text-align:center;
        margin:0 auto;
    }

    .hero p{
        max-width:700px;
        margin:0 auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-users{
        align-items:center;
    }

    .hero-users-bottom{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-users-right{
        align-items:center;
    }

    .hero-users-text span{
        text-align:center;
    }

    .hero-visual{
        max-width:620px;
        width:100%;
        height:620px;
        margin:0 auto;
    }

    .steps-grid{
        flex-wrap:wrap;
        justify-content:center;
        gap:34px;
    }

    .step-arrow{
        display:none;
    }

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .container{
        padding:0 20px;
    }

    .header-content{
        height:74px;
    }

    .nav{
        display:none;
    }

    .logo{
        font-size:24px;
    }

    .logo img{
        height:38px;
    }

    .hero{
        padding:24px 0 30px;
    }

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

    .hero-content{
        max-width:100%;
        text-align:center;
    }

    .hero h1{
        font-size:42px;
        line-height:1.02;
        letter-spacing:-2px;
        margin-bottom:18px;
    }

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

    .hero-buttons{
        width:100%;

        flex-direction:column;

        align-items:stretch;

        gap:14px;

        margin-top:28px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    /*
    ====================================
    HERO CAROUSEL OFF MOBILE
    ====================================
    */

    .hero-visual{
        display:none;
    }

    /*
    ====================================
    TRUST BAR
    ====================================
    */

    .hero-users{
        margin-top:34px;
        gap:16px;
    }

    .hero-users-label{
        font-size:14px;
        line-height:1.5;
    }

    .hero-users-bottom{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:22px;
    }

    .hero-users-left{
        flex-direction:column;
        gap:18px;
    }

    .hero-star{
        width:58px;
        height:58px;
    }

    .hero-star i{
        font-size:28px;
    }

    .hero-avatars{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .hero-avatars img{
        width:52px;
        height:52px;
    }

    .hero-users-right{
        align-items:center;
    }

    .hero-users-text{
        text-align:center;
    }

    .hero-users-text strong{
        font-size:34px;
    }

    .hero-users-text span{
        text-align:center;
        font-size:14px;
    }

    /*
    ====================================
    SECTIONS
    ====================================
    */

    .section{
        padding:42px 0;
    }

    .glass-box{
        padding:30px 22px;
        border-radius:26px;
    }

    .section-title,
    .influencer-section-title{
        font-size:30px;
        line-height:1.1;
    }

    .influencer-subtitle{
        font-size:15px;
        line-height:1.6;
    }

    /*
    ====================================
    STEPS
    ====================================
    */

    .steps-grid{
        flex-direction:column;
        align-items:center;
        gap:30px;
        margin-top:34px;
    }

    .step-card{
        width:100%;
        max-width:260px;
    }

    .step-arrow{
        display:none;
    }

    .step-icon i{
        font-size:48px;
    }

    /*
    ====================================
    INFLUENCERS
    ====================================
    */

    .influencer-wrapper{
        margin-top:30px;
    }

    .carousel-arrow{
        display:none;
    }

    .influencer-grid{
        gap:16px;
        padding-bottom:8px;
    }

    .influencer-card{
        min-width:180px;
        max-width:180px;
    }

    .influencer-card img{
        height:190px;
    }

    .influencer-content{
        padding:14px;
    }

    .influencer-content h3{
        font-size:16px;
    }

    /*
    ====================================
    BENEFITS
    ====================================
    */

    .benefits-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .benefit-card{
        min-height:auto;
        padding:24px 20px;
    }

    .benefit-card i{
        font-size:40px;
    }

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

    .footer{
        margin-top:50px;
    }

    .footer-content{
        height:auto;

        flex-direction:column;

        gap:14px;

        text-align:center;

        padding:26px 0;
    }

    .footer p{
        font-size:14px;
        line-height:1.6;
    }

}

.auth-body{
    min-height:100svh;

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

    padding:40px 16px;

    position:relative;

    overflow-x:hidden;
    overflow-y:auto;

    -webkit-overflow-scrolling:touch;
}

.auth-wrapper{
    position:relative;

    width:100%;
    max-width:520px;

    margin:0 auto;

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

    overflow:hidden;
}

.auth-background{
    position:absolute;

    top:50%;
    left:50%;

    width:520px;
    height:520px;

    transform:translate(-50%,-50%);

    pointer-events:none;

    background:
        radial-gradient(
            circle,
            rgba(255,45,166,.16) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(0,166,255,.14) 0%,
            transparent 55%
        );

    filter:blur(60px);

    z-index:0;
}

.auth-card{
    position:relative;

    overflow:hidden;

    padding:48px;

    border-radius:36px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.015)
        );

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

    backdrop-filter:blur(24px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

    z-index:2;
}

    .auth-card{
        width:100%;
    }
    
    .auth-card *{
        max-width:100%;
    }

.auth-glow{
    position:absolute;

    inset:auto;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            rgba(255,45,166,.45),
            rgba(139,45,255,.35),
            rgba(0,166,255,.35)
        );

    filter:blur(70px);

    z-index:0;
}

.auth-header{
    position:relative;
    z-index:2;

    margin-bottom:36px;

    text-align:center;
}

.auth-header h1{
    font-size:40px;
    line-height:1.1;
    margin-bottom:12px;
}

.auth-header p{
    color:var(--muted);
    line-height:1.7;
}

.form-logo{
    position:relative;
    z-index:2;

    text-align:center;

    margin-bottom:28px;
}

.form-logo img{
    height:62px;
}

.form-group{
    margin-bottom:22px;
}

.form-label{
    display:block;

    margin-bottom:6px;

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

.input-wrapper{
    position:relative;
}

.input-wrapper i{
    position:absolute;

    top:50%;
    left:18px;

    transform:translateY(-50%);

    color:#8f97aa;

    font-size:20px;
}

.form-input{
    width:100%;

    height:60px;

    padding:0 20px 0 54px;

    border-radius:18px;

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

    background:rgba(255,255,255,.03);

    color:#fff;

    font-size:16px;

    outline:none;

    transition:.3s;
}

.form-input:focus{
    border-color:rgba(255,45,166,.35);

    box-shadow:
        0 0 0 4px rgba(255,45,166,.08);
}

.form-input::placeholder{
    color:#7f8798;
}

.form-button{
    width:100%;
    height:58px;

    margin-top:10px;

    border-radius:18px;

    font-size:16px;
}

.password-header{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:12px;

    margin-bottom:10px;
}

.password-header .form-label{
    margin-bottom:0;
}

.forgot-link{
    font-size:13px;

    color:#b6bdd0;

    text-decoration:none;

    transition:.3s;
}

.forgot-link:hover{
    color:#fff;
}

.auth-divider{
    position:relative;

    margin:28px 0;

    text-align:center;
}

.auth-divider::before{
    content:'';

    position:absolute;

    top:50%;
    left:0;

    width:100%;
    height:1px;

    background:rgba(255,255,255,.06);
}

.auth-divider span{
    position:relative;

    padding:0 14px;

    background:#0b1022;

    color:var(--muted);

    font-size:14px;
}

.auth-links{
    margin-top:28px;

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

    gap:12px;

    flex-wrap:wrap;

    text-align:center;
}

.auth-links a{
    color:var(--muted);

    text-decoration:none;

    font-size:14px;

    transition:.3s;
}

.auth-links a:hover{
    color:#fff;
}

.auth-links span{
    color:rgba(255,255,255,.18);
}

.social-button{
    width:100%;
    height:58px;

    border:none;
    border-radius:18px;

    background:rgba(255,255,255,.05);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    font-size:15px;

    cursor:pointer;

    transition:.3s;
}

.social-button:hover{
    background:rgba(255,255,255,.08);
}

.social-button i{
    font-size:20px;
}

.form-footer{
    margin-top:28px;

    text-align:center;

    color:var(--muted);
}

.form-footer a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.auth-alert{
    padding:14px 16px;

    border-radius:16px;

    margin-bottom:22px;

    font-size:14px;

    text-align:center;
}

.auth-alert.error{
    background:rgba(255,80,80,.10);

    border:1px solid rgba(255,80,80,.18);

    color:#ff9d9d;
}

.auth-alert.success{
    background:rgba(0,255,170,.08);

    border:1px solid rgba(0,255,170,.16);

    color:#7dffd3;
}

@media(max-width:768px){

    .auth-body{
        min-height:100svh;
    
        display:flex;
        align-items:center;
        justify-content:center;
    
        padding:20px 16px 32px;
    
        overflow-x:hidden;
        overflow-y:auto;
    
        -webkit-overflow-scrolling:touch;
    }

    .auth-wrapper{
        width:100%;
        max-width:420px;
    }

    .auth-background{
        width:500px;
        height:500px;

        filter:blur(70px);
    }

    .auth-card{
        padding:30px 22px;

        border-radius:28px;

        backdrop-filter:blur(18px);
    }
    
    .auth-card{
        width:100%;
        overflow:hidden;
        isolation:isolate;
    }
    
    .auth-card *{
        max-width:100%;
    }

    .auth-header{
        margin-bottom:26px;
    }

    .auth-header h1{
        font-size:30px;
        line-height:1.1;
    }

    .auth-header p{
        font-size:14px;
        line-height:1.6;
    }

    .form-logo{
        margin-bottom:22px;
    }

    .form-logo img{
        height:54px;
    }

    .form-group{
        margin-bottom:18px;
    }

    .form-input{
        height:56px;
        font-size:16px;
    }

    .form-button,
    .social-button{
        height:56px;
    }

    .auth-divider{
        margin:22px 0;
    }
    
    .auth-glow{
        top:-10px;
        right:-10px;

        width:180px;
        height:180px;

        filter:blur(55px);

        opacity:.75;
    }

}

/*
====================================
DASHBOARD
====================================
*/

.dashboard-page{
    padding:50px 0 80px;
}

.dashboard-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;

    margin-bottom:34px;
}

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

    padding:10px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.04);

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

    color:#d9deea;

    font-size:14px;

    margin-bottom:18px;
}

.dashboard-top h1{
    font-size:52px;
    line-height:1.05;

    margin-bottom:10px;
}

.dashboard-top p{
    color:var(--muted);
    font-size:16px;
}

.dashboard-create{
    height:58px;

    padding:0 26px;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:10px;
}

.dashboard-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-bottom:40px;
}

.dashboard-stat-card{
    position:relative;

    overflow:hidden;

    padding:28px;

    border-radius:28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.015)
        );

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

.dashboard-stat-card i{
    font-size:42px;

    background:var(--gradient);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.dashboard-stat-card strong{
    display:block;

    font-size:42px;

    margin-top:18px;
}

.dashboard-stat-card span{
    color:var(--muted);
}

.dashboard-section{
    margin-top:40px;
}

.dashboard-section-header{
    margin-bottom:24px;
}

.dashboard-section-header h2{
    font-size:32px;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.event-card{
    overflow:hidden;

    border-radius:30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.015)
        );

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

    transition:.3s;
}

.event-card:hover{
    transform:translateY(-6px);

    border-color:rgba(255,45,166,.16);

    box-shadow:0 0 40px rgba(139,45,255,.16);
}

.event-image{
    position:relative;

    height:220px;
}

.event-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.event-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(4,8,22,.85),
            transparent
        );
}

.event-content{
    padding:22px;
}

.event-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;

    gap:16px;
}

.event-top h3{
    font-size:22px;
    margin-bottom:6px;
}

.event-top p{
    color:var(--muted);
    font-size:14px;
}

.event-status{
    padding:8px 12px;

    border-radius:999px;

    background:rgba(0,255,163,.08);

    border:1px solid rgba(0,255,163,.18);

    color:#6dffc9;

    font-size:12px;
}

.event-influencer{
    display:flex;
    align-items:center;
    gap:12px;

    margin:24px 0;
}

.event-avatar{
    width:44px;
    height:44px;

    border-radius:50%;

    object-fit:cover;
}

.event-button{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

@media(max-width:1100px){

    .event-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .dashboard-page{
        padding:30px 0 50px;
    }

    .dashboard-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .dashboard-top h1{
        font-size:38px;
    }

    .dashboard-create{
        width:100%;
        justify-content:center;
    }

    .dashboard-stats{
        grid-template-columns:1fr;
    }

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

}

/*
========================================
LEGAL MODALS
========================================
*/

.legal-modal{
    position:fixed;
    inset:0;

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

    padding:20px;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:99999;
}

.legal-modal.active{
    opacity:1;
    visibility:visible;
}

.legal-modal-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.72);

    backdrop-filter:blur(10px);
}

.legal-modal-content{
    position:relative;

    width:100%;
    max-width:720px;
    max-height:90vh;

    overflow-y:auto;

    border-radius:32px;

    padding:34px;

    background:
        linear-gradient(
            180deg,
            rgba(18,24,48,.96),
            rgba(7,11,25,.98)
        );

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

    box-shadow:
        0 20px 80px rgba(0,0,0,.45);

    z-index:2;
}

.legal-close{
    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;
    border-radius:14px;

    background:rgba(255,255,255,.05);

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.3s;
}

.legal-close:hover{
    background:rgba(255,255,255,.1);
}

.legal-header{
    margin-bottom:28px;
}

.legal-header h2{
    font-size:30px;
    margin-bottom:10px;
}

.legal-header p{
    color:var(--muted);
    line-height:1.7;
}

.legal-body h3{
    font-size:18px;

    margin-top:28px;
    margin-bottom:12px;
}

.legal-body p,
.legal-body li{
    color:#cfd5e3;

    line-height:1.8;

    font-size:15px;
}

.legal-body ul{
    padding-left:20px;
}

.legal-body li{
    margin-bottom:8px;
}

@media(max-width:768px){

    .legal-modal{
        padding:14px;
        align-items:flex-end;
    }

    .legal-modal-content{
        max-width:100%;
        max-height:88vh;

        padding:24px 20px;

        border-radius:28px 28px 0 0;
    }

    .legal-header h2{
        font-size:24px;
    }

    .legal-body p,
    .legal-body li{
        font-size:14px;
        line-height:1.7;
    }

}

/*
====================================
INFLUENCER SOCIALS
====================================
*/

.followers-badge{
    font-size:.85rem;
    font-weight:500;
    opacity:.7;
}

.influencer-socials{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:12px;
}

.social-icon{
    position:relative;
    width:34px;
    height:34px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.06);
    color:#fff;
    font-size:1rem;
    text-decoration:none;
    overflow:hidden;
    transition:.25s ease;
}

.social-icon::before{
    content:'';
    position:absolute;
    inset:0;
    background:var(--gradient);
    opacity:0;
    transition:.25s ease;
}

.social-icon i{
    position:relative;
    z-index:2;
}

.social-icon:hover{
    transform:translateY(-3px) scale(1.05);
    border-color:transparent;
    box-shadow:
        0 10px 25px rgba(139,45,255,.25);
}

.social-icon:hover::before{
    opacity:1;
}

/*
====================================
INPUT ERROR
====================================
*/

.input-error{
    border-color:#ff4d6d !important;
    box-shadow:0 0 0 3px rgba(255,77,109,.15);
}

/*
====================================
INPUT FEEDBACK
====================================
*/

.input-success{
    border-color:#2ee59d !important;
    box-shadow:0 0 0 3px rgba(46,229,157,.12);
}

.form-help{
    display:block;
    margin-top:6px;
    font-size:12px;
    color:var(--muted);
}

.input-error + .form-help{
    color:#ff4d6d;
}

.input-success + .form-help{
    color:#2ee59d;
}

/*
==================================================
THEME MEDIA CROPPER
==================================================
*/

#themeMediaCropModal{
    z-index:999999;
}

#themeMediaCropModal .hd-modal-content{
    max-width:900px;
}

#themeMediaCropModal .cropper-view-box,
#themeMediaCropModal .cropper-face,
#themeMediaCropModal .cropper-crop-box{
    border-radius:0 !important;
}

#themeMediaCropModal .cropper-view-box{
    outline:2px solid #3b82f6;
    outline-color:rgba(59,130,246,.8);
}

/*
==================================================
THEME MEDIA VIEW MODAL
==================================================
*/

#themeMediaViewModal,
#themeMediaCropModal{
    z-index:999999;
}

/*
====================================
INFLUENCER CAROUSEL RESPONSIVE
====================================
*/

.influencer-grid{
    display:flex;
    gap:22px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:4px;
    scroll-snap-type:x mandatory;
}

.influencer-grid::-webkit-scrollbar{
    display:none;
}

.influencer-card{
    flex:0 0 calc((100% - 88px) / 5);
    min-width:0;
    max-width:none;
    scroll-snap-align:start;
}

.influencer-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

@media(max-width:1100px){

    .influencer-card{
        flex:0 0 calc((100% - 44px) / 3);
    }

}

@media(max-width:768px){

    .influencer-grid{
        gap:16px;
    }

    .influencer-card{
        flex:0 0 100%;
    }

    .influencer-card img{
        height:320px;
    }

    .carousel-arrow{
        display:flex;
        width:46px;
        height:46px;
    }

    .carousel-arrow.left{
        left:8px;
    }

    .carousel-arrow.right{
        right:8px;
    }

}

/*
====================================
CAROUSEL ARROWS PREMIUM
====================================
*/

.carousel-arrow{
    width:64px;
    height:64px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(8,14,40,.88);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

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

    color:#fff;

    box-shadow:
        0 10px 30px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.04);

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.carousel-arrow i{
    font-size:34px;
    color:#fff;
}

.carousel-arrow:hover{
    transform:translateY(-50%) scale(1.06);

    background:rgba(15,22,55,.96);

    border-color:rgba(255,255,255,.14);
}

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

@media(max-width:768px){

    .carousel-arrow{
        width:56px;
        height:56px;
    }

    .carousel-arrow i{
        font-size:30px;
    }

}

/*
====================================
HOW IT WORKS - PREMIUM STEPS
====================================
*/

.steps-grid{
    display:grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;
    gap:18px;
    align-items:stretch;
    margin-top:54px;
}

.step-card{
    position:relative;
    min-height:300px;
    padding:34px 26px 32px;
    border-radius:30px;
    overflow:hidden;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    text-align:center;



    border:1px solid rgba(255,255,255,.07);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 18px 50px rgba(0,0,0,.24);
}

.step-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:1px;

    background:
        linear-gradient(
            135deg,
            rgba(255,45,166,.55),
            rgba(139,45,255,.22),
            rgba(0,166,255,.42)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;
    opacity:.75;
}

.step-number{
    position:absolute;
    top:22px;
    left:24px;

    font-size:170px;
    line-height:.85;
    font-weight:800;
    letter-spacing:-6px;

    color:transparent;

    -webkit-text-stroke:2px rgba(139, 45, 255, .32);

    text-shadow:
        0 0 28px rgba(139,45,255,.32);

    opacity:.8;
    pointer-events:none;
}

.step-icon{
    position:absolute;
    top:95px;
    left:50%;
    transform:translateX(-50%);

    width:98px;
    height:98px;

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


}



.step-icon i{
    font-size:74px;
    line-height:1;

    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.step-card h3{
    position:relative;
    z-index:2;

    max-width:230px;
    min-height:58px;

    margin:0 auto;

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

    font-size:18px;
    font-weight:700;
    line-height:1.38;
    color:#fff;
}

.step-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    align-self:center;

    width:28px;


    filter:drop-shadow(0 0 10px rgba(139,45,255,.65));
}

.step-arrow i{
    font-size:34px;
}

/*
====================================
HOW IT WORKS - TABLET
====================================
*/

@media(max-width:1100px){

    .steps-grid{
        grid-template-columns:1fr auto 1fr;
        gap:18px;
    }

    .step-card{
        min-height:280px;
    }

    .step-arrow:nth-of-type(2){
        display:none;
    }

}

/*
====================================
HOW IT WORKS - MOBILE
====================================
*/

@media(max-width:768px){

    .steps-grid{
        grid-template-columns:1fr;
        gap:16px;
        margin-top:34px;
        justify-items:center;
    }

    .step-arrow{
        display:none;
    }

    .step-card{
        min-height:250px;
        padding:30px 22px;
        border-radius:26px;
        
        width:100%;
        max-width:340px;
    }

    .step-number{
        font-size:160px;
        top:20px;
        left:22px;
    }

    .step-icon{
        top:58px;
        width:84px;
        height:84px;
    }

    .step-icon i{
        font-size:68px;
    }

    .step-card h3{
        max-width:260px;
        min-height:auto;
        font-size:18px;
    }

}