*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(circle at 10% 10%, rgba(123,47,247,.12), transparent 30%),
        radial-gradient(circle at 90% 15%, rgba(241,7,163,.10), transparent 30%),
        #0d0d0f;
    color:#fff;
    min-height:100vh;
}

.wrap{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:30px 30px 60px;
    min-height:100vh;
    position:relative;
}

.grad{
    background:linear-gradient(90deg,#7B2FF7,#F107A3);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.screen{
    display:none;
}

.screen.active{
    display:block;
}


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

#benefits{
    width:100%;
    max-width:1100px;
    margin:0 auto;
}

.hero{
    padding:45px 10px 35px;
    text-align:center;
}

.hero h1{
    font-size:42px;
    line-height:1.15;
    font-weight:800;
    letter-spacing:-1px;
}

.hero .sub{
    color:#999;
    margin-top:10px;
    font-size:17px;
}

.ben-pages{
    width:100%;
}

.ben-page{
    padding:10px 0;
}

.ben-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.ben-head .emoji{
    font-size:34px;
}

.ben-head h2{
    font-size:25px;
    line-height:1.2;
}

.hl{
    background:rgba(0,255,150,.10);
    color:#4ade80;
    padding:11px 15px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    border:1px solid rgba(74,222,128,.12);
}

.ben-card{
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:19px;
    margin-bottom:12px;
    transition:.25s ease;
}

.ben-card:hover{
    transform:translateY(-3px);
    border-color:rgba(241,7,163,.35);
    background:rgba(255,255,255,.07);
}

.ben-card i{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#7B2FF7,#F107A3);
    border-radius:14px;
    font-style:normal;
    font-size:22px;
    flex-shrink:0;
}

.ben-card b{
    display:block;
    font-size:16px;
    margin-bottom:3px;
}

.ben-card small{
    color:#999;
    font-size:13px;
}

.ben-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin:25px 0;
}

.ben-dots .dot{
    width:8px;
    height:8px;
    border-radius:5px;
    background:rgba(255,255,255,.25);
    transition:.25s;
}

.ben-dots .dot.active{
    width:25px;
    background:#F107A3;
}


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

.btn-grad{
    width:100%;
    height:52px;
    border:none;
    border-radius:28px;
    background:linear-gradient(90deg,#7B2FF7,#F107A3);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.25s ease;
}

.btn-grad:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(241,7,163,.20);
}

#benBtn{
    max-width:420px;
    display:block;
    margin:0 auto;
}

.btn-ghost{
    flex:1;
    height:52px;
    border:1px solid #333;
    border-radius:28px;
    background:transparent;
    color:#aaa;
    font-size:15px;
    cursor:pointer;
    transition:.2s;
}

.btn-ghost:hover{
    border-color:#666;
    color:#fff;
}

.nav{
    display:flex;
    gap:14px;
    max-width:900px;
    margin:28px auto 10px;
}

.nav .btn-grad{
    flex:2;
}


/* =========================================================
   PROGRESS + STEP HEADER
========================================================= */

#onboard{
    width:100%;
    max-width:1100px;
    margin:0 auto;
}

.progress{
    display:flex;
    gap:8px;
    padding:10px 0 20px;
}

.progress span{
    flex:1;
    height:6px;
    border-radius:5px;
    background:rgba(255,255,255,.15);
    transition:.25s;
}

.progress span.on{
    background:#F107A3;
}

.step-head{
    display:flex;
    align-items:center;
    gap:14px;
    padding:10px 0 25px;
}

.step-ic{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#7B2FF7,#F107A3);
    border-radius:15px;
    font-size:23px;
    flex-shrink:0;
}

.step-head h3{
    font-size:23px;
    line-height:1.2;
}

.step-head small{
    color:#888;
    font-size:13px;
}


/* =========================================================
   FORM
========================================================= */

#memberForm{
    width:100%;
}

.fstep{
    width:100%;
}


/* Step 1 - Basic Info */

.fstep[data-step="0"]{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    align-items:start;
}


/* Step 2 - Profile */

.fstep[data-step="1"]{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    align-items:start;
}


/* Full width cards */

.fstep[data-step="0"] .card:last-child{
    grid-column:1/-1;
}

.fstep[data-step="1"] .card:last-child{
    grid-column:1/-1;
}


/* Step 3 Pricing */

.fstep[data-step="2"]{
    max-width:850px;
    margin:0 auto;
}


/* Step 4 Social */

.fstep[data-step="3"]{
    max-width:850px;
    margin:0 auto;
}


/* Step 5 Gallery */

.fstep[data-step="4"]{
    max-width:900px;
    margin:0 auto;
}


/* =========================================================
   CARDS
========================================================= */

.card{
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:22px;
    margin-bottom:0;
    box-shadow:0 10px 35px rgba(0,0,0,.12);
}

.card.center{
    text-align:center;
}

.sec{
    display:block;
    color:#F107A3;
    font-size:12px;
    font-weight:700;
    letter-spacing:.7px;
    margin-bottom:14px;
}

.mini{
    color:#888;
    font-size:12px;
    display:block;
    margin:3px 0 9px;
}

.count{
    text-align:right;
}


/* =========================================================
   INPUTS
========================================================= */

input,
select,
textarea{
    width:100%;
    padding:14px 15px;
    background:#17171b;
    border:1px solid #2a2a33;
    border-radius:12px;
    color:#fff;
    font-size:14px;
    margin-bottom:12px;
    outline:none;
    transition:.2s;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#7B2FF7;
    box-shadow:0 0 0 3px rgba(123,47,247,.08);
}

input.lock{
    color:#888;
}

textarea{
    resize:vertical;
    min-height:90px;
}

.err{
    color:#ff5a5a;
    font-size:12px;
    margin:-6px 0 8px;
}

.uniq{
    font-size:12px;
    font-weight:600;
    margin:2px 0;
}

.uniq.ok{
    color:#4ade80;
}

.uniq.bad{
    color:#ff5a5a;
}

.uniq.chk{
    color:#888;
}


/* =========================================================
   CHIPS
========================================================= */

.chips{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.chips span{
    padding:10px 17px;
    background:#17171b;
    border:1px solid #2a2a33;
    border-radius:22px;
    font-size:13px;
    cursor:pointer;
    color:#aaa;
    transition:.15s;
}

.chips span:hover{
    border-color:#7B2FF7;
}

.chips span.sel{
    background:linear-gradient(90deg,#7B2FF7,#F107A3);
    color:#fff;
    border-color:transparent;
}


/* =========================================================
   CATEGORY + PRICING
========================================================= */

.cat-badges{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-bottom:20px;
}

.cat-badges span{
    padding:9px 15px;
    background:linear-gradient(90deg,#7B2FF7,#F107A3);
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.rate{
    margin-bottom:17px;
}

.rate label{
    font-size:13px;
    color:#ccc;
    display:block;
    margin-bottom:7px;
}

.rate input{
    margin-bottom:3px;
}

.note{
    color:rgba(241,7,163,.85);
    font-size:11px;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.social{
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.social input{
    flex:1;
}

.social .paste{
    padding:13px 16px;
    background:#17171b;
    border:1px solid #F107A3;
    color:#F107A3;
    border-radius:12px;
    font-size:12px;
    cursor:pointer;
    white-space:nowrap;
    height:47px;
    transition:.2s;
}

.social .paste:hover{
    background:rgba(241,7,163,.08);
}


/* =========================================================
   AVATAR
========================================================= */

.avatar{
    width:130px;
    height:130px;
    margin:10px auto;
    border-radius:50%;
    background:#17171b;
    border:2px dashed #444;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    overflow:hidden;
    position:relative;
    transition:.2s;
}

.avatar:hover{
    border-color:#F107A3;
}

.avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:none;
}

.avatar span{
    font-size:38px;
    color:#666;
}


/* =========================================================
   GALLERY
========================================================= */

.g-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.g-count{
    background:rgba(255,80,80,.15);
    color:#ff5a5a;
    padding:5px 11px;
    border-radius:12px;
    font-size:12px;
    font-weight:700;
}

.g-count.ok{
    background:rgba(0,255,150,.15);
    color:#4ade80;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-top:15px;
}

.g-item{
    aspect-ratio:1;
    border-radius:16px;
    overflow:hidden;
    position:relative;
    background:#17171b;
    border:1px solid #2a2a33;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.2s;
}

.g-item:hover{
    border-color:#F107A3;
    transform:translateY(-2px);
}

.g-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.g-item .rm{
    position:absolute;
    top:6px;
    right:6px;
    background:rgba(0,0,0,.65);
    border-radius:50%;
    width:27px;
    height:27px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

.g-add{
    font-size:38px;
    color:#666;
}


/* =========================================================
   LOADER
========================================================= */

.loader{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    z-index:50;
    backdrop-filter:blur(5px);
}

.spin{
    width:44px;
    height:44px;
    border:4px solid #333;
    border-top-color:#F107A3;
    border-radius:50%;
    animation:sp 1s linear infinite;
}

@keyframes sp{
    to{
        transform:rotate(360deg);
    }
}

.loader p{
    margin-top:14px;
    color:#ccc;
}


/* =========================================================
   POPUP
========================================================= */

.popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:60;
    padding:20px;
    backdrop-filter:blur(5px);
}

.pop-card{
    background:#17171b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    text-align:center;
    max-width:420px;
    width:100%;
    box-shadow:0 25px 80px rgba(0,0,0,.45);
}

.pop-ic{
    width:58px;
    height:58px;
    margin:0 auto 15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:rgba(0,255,150,.15);
    color:#4ade80;
}

.pop-ic.bad{
    background:rgba(255,80,80,.15);
    color:#ff5a5a;
}

.pop-card h3{
    margin-bottom:9px;
    font-size:20px;
}

.pop-card p{
    color:#aaa;
    font-size:14px;
    line-height:1.6;
    margin-bottom:22px;
}


/* =========================================================
   HIDDEN ELEMENT FIX
========================================================= */

[hidden]{
    display:none !important;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media(min-width:1200px){

    .wrap{
        padding-top:40px;
    }

    .hero{
        padding-top:55px;
    }

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

    .ben-page{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .ben-page .ben-head,
    .ben-page .hl{
        grid-column:1/-1;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .wrap{
        max-width:900px;
        padding:25px 22px 50px;
    }

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

    .fstep[data-step="0"],
    .fstep[data-step="1"]{
        grid-template-columns:1fr;
    }

    .fstep[data-step="0"] .card:last-child,
    .fstep[data-step="1"] .card:last-child{
        grid-column:auto;
    }

    .gallery{
        grid-template-columns:repeat(3,1fr);
    }

    .ben-page{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .ben-page .ben-head,
    .ben-page .hl{
        grid-column:1/-1;
    }
}


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

@media(max-width:600px){

    body{
        background:#0d0d0f;
    }

    .wrap{
        width:100%;
        max-width:520px;
        padding:16px;
    }

    .hero{
        padding:25px 6px 15px;
    }

    .hero h1{
        font-size:28px;
        letter-spacing:-.5px;
    }

    .hero .sub{
        font-size:14px;
    }

    .ben-page{
        display:block;
        padding:8px 2px;
    }

    .ben-head{
        margin-bottom:10px;
    }

    .ben-head h2{
        font-size:21px;
    }

    .ben-head .emoji{
        font-size:28px;
    }

    .ben-card{
        margin-bottom:10px;
        padding:14px;
    }

    .ben-card i{
        width:42px;
        height:42px;
        border-radius:50%;
    }

    .fstep[data-step="0"],
    .fstep[data-step="1"]{
        display:block;
    }

    .fstep[data-step="2"],
    .fstep[data-step="3"],
    .fstep[data-step="4"]{
        max-width:none;
    }

    .card{
        padding:16px;
        border-radius:18px;
        margin-bottom:14px;
    }

    .step-head{
        padding-bottom:18px;
    }

    .step-head h3{
        font-size:18px;
    }

    .step-ic{
        width:44px;
        height:44px;
        border-radius:50%;
        font-size:20px;
    }

    .gallery{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .nav{
        margin:20px 0 30px;
    }

    .pop-card{
        padding:25px 20px;
    }
}


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

@media(max-width:380px){

    .wrap{
        padding:12px;
    }

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

    .ben-card{
        padding:12px;
    }

    .social{
        flex-direction:column;
    }

    .social input{
        width:100%;
    }

    .social .paste{
        width:100%;
    }

    .nav{
        gap:8px;
    }
}