/* ===========================
   JOIN CREATOR PAGE
=========================== */

.join-hero{

    padding:160px 20px 100px;

    text-align:center;

    background:
    radial-gradient(circle at top,#8B5CF620,transparent 45%),
    #09090B;

}

.join-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(139,92,246,.15);

    color:#8B5CF6;

    font-weight:600;

    margin-bottom:25px;

}

.join-hero h1{

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;

}

.join-hero p{

    max-width:700px;

    margin:auto;

    color:#cfcfcf;

    line-height:1.8;

}

/* Benefits */

.creator-benefits{

    padding:90px 20px;

}

.benefit-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.benefit-card{

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

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

    border-radius:22px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-color:#8B5CF6;

    box-shadow:0 20px 45px rgba(139,92,246,.20);

}

.benefit-card i{

    font-size:42px;

    color:#8B5CF6;

    margin-bottom:18px;

}

.benefit-card h3{

    margin-bottom:15px;

}

/* Form */

.creator-form-section{

    padding:90px 20px;

}

.creator-form{

    max-width:750px;

    margin:auto;

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

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

    border-radius:24px;

    padding:40px;

}

.creator-form input,
.creator-form textarea{

    width:100%;

    margin-bottom:18px;

    padding:16px 18px;

    border-radius:14px;

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

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

    color:#fff;

    outline:none;

    font-size:15px;

}

.creator-form input:focus,
.creator-form textarea:focus{

    border-color:#8B5CF6;

}

.creator-form button{

    width:100%;

    margin-top:10px;

}

/* Responsive */

@media(max-width:900px){

.benefit-grid{

grid-template-columns:1fr;

}

.join-hero h1{

font-size:42px;

}

}

@media(max-width:600px){

.join-hero{

padding-top:130px;

}

.join-hero h1{

font-size:32px;

}

.creator-form{

padding:25px;

}

}

/* ===========================
   CREATOR PROCESS
=========================== */

.creator-process{

    padding:90px 20px;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;

}

.process-card{

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

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

    border-radius:22px;

    padding:30px;

    text-align:center;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-8px);

    border-color:#8B5CF6;

    box-shadow:0 20px 40px rgba(139,92,246,.20);

}

.process-number{

    width:60px;

    height:60px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#8B5CF6;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

}

.process-card h3{

    margin-bottom:12px;

}

@media(max-width:900px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.process-grid{

grid-template-columns:1fr;

}

}