
/*==========================================================
EARLY ACCESS
v3.1
==========================================================*/

.early-access{

    padding:40px 0 90px;

    background:#fff;

}

.early-access-container{

    width:min(92%,1180px);

    margin:auto;

}

.early-access-card{

    background:#F9FCFA;

    border:1px solid rgba(46,155,87,.10);

    border-radius:30px;

    padding:48px;

    text-align:center;

    box-shadow:

        0 18px 50px rgba(29,36,51,.05);

}

.early-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(46,155,87,.08);

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    margin-bottom:22px;

}

.early-access-card h2{

    font-size:40px;

    margin-bottom:16px;

    line-height:1.2;

}

.early-access-card p{

    max-width:720px;

    margin:0 auto 34px;

    font-size:13px;

    line-height:1.8;

}

.ea-disclaimer-1{

    max-width:720px;

    margin:0 auto 34px;

    font-size:10px !important;

    line-height:1.8;

}

.early-form{

    width:100%;

}

.input-wrapper{

    display:flex;

    align-items:center;

    gap:16px;

    max-width:760px;

    margin:auto;

    background:#fff;

    border:2px solid #E6EFE9;

    border-radius:999px;

    padding:10px;

    transition:.3s ease;

}

.input-wrapper:focus-within{

    border-color:var(--primary);

    box-shadow:

        0 0 0 6px rgba(46,155,87,.08);

}

.input-icon{

    font-size:20px;

    margin-left:18px;

}

.input-wrapper input{

    flex:1;

    border:none;

    outline:none;

    font-size:16px;

    background:none;

    color:var(--text);

}

.input-wrapper input::placeholder{

    color:#8E99A8;

}

.early-btn{

    padding:16px 28px;

    border:none;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.3s ease;

}

.early-btn:hover{

    transform:translateY(-2px);

    box-shadow:

        0 15px 35px rgba(46,155,87,.22);

}

.early-trust{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-top:28px;

    color:#627080;

    font-size:14px;

    font-weight:600;

}

.launch-note{

    margin-top:28px !important;

    font-size:14px !important;

    color:#7D879C;

}

/*==========================================================
EARLY ACCESS RESPONSIVE
v3.2
==========================================================*/

@media(max-width:768px){

    .early-access{

        padding:20px 0 70px;

    }

    .early-access-card{

        padding:32px 22px;

        border-radius:24px;

    }

    .early-access-card h2{

        font-size:30px;

    }

    .early-access-card p{

        font-size:16px;

    }

    .input-wrapper{

        flex-direction:column;

        border-radius:22px;

        padding:18px;

        gap:22px;

    }

    .input-icon{

        display:none !important;

    }

    .input-wrapper input{

        width:100%;

        text-align:center;

    }

    .early-btn{

        width:100%;

    }

    .early-trust{

        flex-direction:column;

        gap:12px;

    }

}



/*==========================================================
EARLY SUCCESS
v3.3.1
==========================================================*/

.early-success{

    display:none;

    width:100%;

    min-height:150px;

    padding:34px;

    border-radius:24px;

    background:#F3FBF6;

    border:1px solid rgba(46,155,87,.14);

    text-align:center;

    align-items:center;

    justify-content:center;

    flex-direction:column;

}

.early-success.show{

    display:flex;

    animation:fadeSuccess .45s ease;

}

.success-icon{

    font-size:46px;

    margin-bottom:18px;

}

.early-success h3{

    margin:0 0 14px;

    font-size:30px;

    text-align:center;

    color:var(--primary);

}

.early-success p{

    margin:0;

    max-width:520px;

    text-align:center;

    line-height:1.8;

    color:#627080;

}

@keyframes fadeSuccess{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==========================================================
SVG ICONS
==========================================================*/

.icon{

    display:block;

    width:20px;

    height:20px;

    user-select:none;

    pointer-events:none;

}

.icon-rocket{

    width:18px;

    height:18px;

}

.icon-mail{

    width:18px;

    height:18px;

    opacity:.75;

}

.icon-check{

    width:16px;

    height:16px;

}

.icon-success{

    width:54px;

    height:54px;

}

.early-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.input-icon{

    display:flex;

    align-items:center;

    justify-content:center;

}

.early-trust span{

    display:flex;

    align-items:center;

    gap:8px;

}


/* ==========================================================
   Early Access Disclaimer
========================================================== */

.ea-disclaimer{

    margin-top:18px;

    font-size:.52rem;

    line-height:1.6;

    color:#7D879C;

    text-align:center;

}

.ea-disclaimer a{

    color:#2E9B57;

    font-weight:600;

    text-decoration:none;

    transition:color .3s ease;

}

.ea-disclaimer a:hover{

    color:#25844A;

    text-decoration:underline;

}


/* ==========================================================
   Button Loader
========================================================== */

.btn-loader{

    display:none;

    width:16px;

    height:16px;

    border:2px solid rgba(255,255,255,.3);

    border-top-color:#fff;

    border-radius:50%;

    animation:spin .8s linear infinite;

}

.early-btn.loading .btn-text{

    display:none;

}

.early-btn.loading .btn-loader{

    display:block;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}


/*==========================================================
EARLY ACCESS MESSAGE
==========================================================*/

.early-message{

    display:none;

    margin-top:18px;

    text-align:center;

    font-family:"Inter",sans-serif;

    font-size:.95rem;

    font-weight:500;

}

.early-message.success{

    color:#27AE60;

}

.early-message.error{

    color:#E74C3C;

}


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

.btn-loader{

    display:none;

    width:16px;

    height:16px;

    border:2px solid rgba(255,255,255,.35);

    border-top-color:#FFFFFF;

    border-radius:50%;

    animation:btnSpin .8s linear infinite;

}

.early-btn.loading{

    pointer-events:none;

}

.early-btn.loading .btn-text{

    display:none;

}

.early-btn.loading .btn-loader{

    display:block;

}

@keyframes btnSpin{

    to{

        transform:rotate(360deg);

    }

}