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

html {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    background-color: #0d2318;
    font-family: Montserrat, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    color: #fff
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.cs-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none
}

.cs-bg__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .3
}

.cs-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(13, 35, 24, .9), rgba(30, 74, 56, .8), rgba(15, 42, 32, .9))
}

.cs-bg__glow {
    position: absolute;
    border-radius: 50%
}

.cs-bg__glow--1 {
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(16, 185, 129, .2);
    filter: blur(120px);
    animation: pulse-glow 3s ease-in-out infinite
}

.cs-bg__glow--2 {
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(20, 184, 166, .15);
    filter: blur(100px)
}

.cs-bg__glow--3 {
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: rgba(52, 211, 153, .15);
    filter: blur(140px);
    animation: pulse-glow 5s ease-in-out infinite
}

.cs-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 1.5rem
}

@media (min-width:640px) {
    .cs-header {
        padding: 1.5rem 3rem
    }
}

.cs-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    transition: background .2s, border-color .2s;
    font-family: Montserrat, sans-serif
}

.cs-lang-btn:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .3)
}

.cs-lang-btn svg {
    width: .875rem;
    height: .875rem;
    flex-shrink: 0
}

.cs-main {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    text-align: center
}

@media (min-width:640px) {
    .cs-main {
        padding: 4rem 3rem
    }
}

.cs-logo {
    margin-bottom: 1.5rem
}

@media (min-width:640px) {
    .cs-logo {
        margin-bottom: 2rem
    }
}

.cs-logo__img {
    height: 110px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1)
}

@media (min-width:640px) {
    .cs-logo__img {
        height: 240px
    }
}

.cs-headline {
    font-size: 1.875rem;
    color: #fff;
    line-height: 1.25;
    max-width: 48rem;
    width: 100%;
    font-weight: 800;
    padding: .5rem 0
}

@media (min-width:480px) {
    .cs-headline {
        font-size: 2.25rem
    }
}

@media (min-width:640px) {
    .cs-headline {
        font-size: 3.75rem
    }
}

.cs-headline__gradient {
    background-image: linear-gradient(to right, #34d399, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent
}

.cs-form-wrap {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 28rem
}

@media (min-width:640px) {
    .cs-form-wrap {
        margin-top: 3rem
    }
}

.cs-card {
    position: relative;
    border-radius: 1rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
    overflow: hidden;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, rgba(16, 185, 129, .15), rgba(255, 255, 255, .05), rgba(20, 184, 166, .1));
    border: 1px solid rgba(52, 211, 153, .3)
}

.cs-card__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom right, rgba(16, 185, 129, .05), rgba(20, 184, 166, .05));
    filter: blur(16px);
    z-index: 0
}

.cs-card__orb {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    top: -160px;
    right: -160px;
    width: 320px;
    height: 320px;
    background: rgba(52, 211, 153, .1);
    filter: blur(48px);
    animation: pulse-glow 5s ease-in-out infinite;
    z-index: 0
}

.cs-card__form {
    position: relative;
    z-index: 1
}

.cs-card__header {
    margin-bottom: 1.5rem
}

.cs-card__title {
    color: #fff;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: .5rem
}

@media (min-width:640px) {
    .cs-card__title {
        font-size: 1.5rem
    }
}

.cs-card__subtitle {
    font-size: .875rem;
    font-weight: 600;
    color: #6ee7b7;
    line-height: 1.5
}

.cs-success {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    text-align: center
}

.cs-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, #34d399, #2dd4bf);
    box-shadow: 0 10px 30px rgba(16, 185, 129, .5)
}

.cs-success__icon svg {
    width: 2rem;
    height: 2rem;
    color: #fff
}

.cs-success__title {
    color: #fff;
    font-weight: 900;
    font-size: 1.25rem
}

.cs-success__desc {
    font-size: .875rem;
    margin-top: .5rem;
    line-height: 1.625;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, .7)
}

.cs-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.cs-field__label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: rgba(255, 255, 255, .8)
}

.cs-field__wrap {
    position: relative
}

.cs-field__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, .3);
    line-height: 1
}

.cs-field__icon svg {
    width: 1rem;
    height: 1rem;
    display: block
}

.cs-field__input {
    width: 100%;
    border-radius: .75rem;
    padding: .75rem 1rem .75rem 1rem;
    font-size: .875rem;
    outline: 0;
    transition: background .2s, border-color .2s;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-family: Montserrat, sans-serif
}

.cs-field__input::-moz-placeholder {
    color: rgba(255, 255, 255, .3)
}

.cs-field__input::placeholder {
    color: rgba(255, 255, 255, .3)
}

.cs-field__input:focus {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(52, 211, 153, .6)
}

.cs-field__select {
    width: 100%;
    border-radius: .75rem;
    padding: .75rem 1rem;
    font-size: .875rem;
    outline: 0;
    transition: background .2s, border-color .2s;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: Montserrat, sans-serif
}

.cs-field__select option {
    background: #1a3a28;
    color: #fff
}

.cs-field__select:focus {
    border-color: rgba(52, 211, 153, .6);
    background: rgba(255, 255, 255, .12)
}

.cs-field__error {
    display: none;
    align-items: center;
    gap: .25rem;
    color: #fca5a5;
    font-size: .75rem;
    font-weight: 600;
    margin-top: .25rem
}

.cs-field__error svg {
    width: .75rem;
    height: .75rem;
    flex-shrink: 0
}

.cs-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 900;
    font-size: 1rem;
    padding: 1rem;
    border-radius: .75rem;
    border: none;
    cursor: pointer;
    transition: box-shadow .3s, filter .3s;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #34d399, #2dd4bf, #34d399);
    color: #064e3b;
    box-shadow: 0 10px 30px rgba(16, 185, 129, .4);
    font-family: Montserrat, sans-serif
}

.cs-submit-btn:hover:not(:disabled) {
    box-shadow: 0 15px 40px rgba(52, 211, 153, .5);
    filter: brightness(1.08)
}

.cs-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.cs-submit-btn__text {
    position: relative;
    display: flex;
    align-items: center;
    gap: .5rem
}

.cs-submit-btn__text svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform .2s
}

.cs-submit-btn:hover:not(:disabled) .cs-submit-btn__text svg {
    transform: translateX(4px)
}

.cs-pillars {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: .875rem;
    width: 100%;
    max-width: 48rem
}

@media (min-width:640px) {
    .cs-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 4rem
    }
}

.cs-pillar {
    display: block;
    border-radius: .75rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1.25rem;
    text-align: start;
    text-decoration: none;
    transition: background .2s, border-color .2s;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15)
}

@media (min-width:640px) {
    .cs-pillar {
        padding: 1.5rem
    }
}

.cs-pillar:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(52, 211, 153, .4)
}

.cs-pillar__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: .75rem
}

.cs-pillar__icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(16, 185, 129, .3);
    border: 1px solid rgba(52, 211, 153, .5)
}

.cs-pillar__icon-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #6ee7b7
}

.cs-pillar__title {
    font-size: .875rem;
    font-weight: 800;
    color: #fff;
    padding-top: .25rem
}

.cs-pillar__desc {
    font-size: .75rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, .6)
}

.cs-about {
    margin-top: 2rem;
    width: 100%;
    max-width: 42rem
}

@media (min-width:640px) {
    .cs-about {
        margin-top: 3.5rem
    }
}

.cs-about__card {
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 1.5rem;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1)
}

@media (min-width:640px) {
    .cs-about__card {
        padding: 2rem
    }
}

.cs-about__label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
    color: #34d399
}

.cs-about__title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.375
}

@media (min-width:640px) {
    .cs-about__title {
        font-size: 1.25rem
    }
}

.cs-about__body {
    font-size: .875rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, .55)
}

.cs-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    padding-top: .5rem
}

@media (min-width:640px) {
    .cs-stats {
        gap: 1rem
    }
}

.cs-stat {
    text-align: center
}

.cs-stat__value {
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1;
    color: #34d399
}

@media (min-width:640px) {
    .cs-stat__value {
        font-size: 1.5rem
    }
}

.cs-stat__label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: .25rem;
    font-weight: 600;
    line-height: 1.25;
    color: rgba(255, 255, 255, .4)
}

@media (min-width:640px) {
    .cs-stat__label {
        font-size: 10px
    }
}

.cs-social {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: .75rem
}

@media (min-width:640px) {
    .cs-social {
        display: flex
    }
}

.cs-social__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background .2s, border-color .2s;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    text-decoration: none
}

.cs-social__btn i {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    transition: color .2s
}

.cs-social__btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(52, 211, 153, .4)
}

.cs-social__btn:hover i {
    color: #6ee7b7
}

.cs-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.cs-footer__line {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5)
}

.cs-footer__line--small {
    font-size: 10px;
    color: rgba(255, 255, 255, .5)
}

[dir=rtl] .cs-field__icon {
    left: auto;
    right: 14px
}

[dir=rtl] .cs-field__input {
    padding-left: 1rem;
    padding-right: 2.5rem
}

[dir=rtl] .cs-submit-btn:hover:not(:disabled) .cs-submit-btn__text svg {
    transform: translateX(-4px)
}

.cs-social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    padding-bottom: .5rem
}

@media (min-width:640px) {
    .cs-social-footer {
        display: none
    }
}

/*# sourceMappingURL=coming-soon.css.map */