:root{
    --orange: #ED6000;
    --bg: #121212;
    --bd: #616161;
    --bg-grad: linear-gradient(180deg, var(--bg), #2F1300);
}

*{
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: 'Manrope';
    background: var(--bg);
    color: white;
    font-size: 16px;
}

html{
    overflow-x: hidden;
}

a, button{
    all: unset;
    cursor: pointer;
}

input{
    all: unset;
}

.wrapper{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,h2,h3,h4,h5,h6{
    padding: 0;
    margin: 0;
}

.row{
    display: flex;
    flex-direction: row;
}

.col{
    display: flex;
    flex-direction: column;
}

.center{
    align-items: center;
}

.g8{
    gap: 8px;
}
.g12{
    gap: 12px;
}
.g24{
    gap: 24px;
}
.g36{
    gap: 36px;
}
.g48{
    gap: 48px;
}
.g96{
    gap: 96px;
}
.jcsb{
    justify-content: space-between;
}

.jcc{
    justify-content: center;
}

.header{
    z-index: 999;
    width: 100%;
    position: fixed;
    background: #121212d0;
    padding: 20px 0;
    backdrop-filter: blur(24px);
}

.btn{
    width: fit-content;
    border-radius: 12px;
    background: var(--orange);
    padding: 16px 20px;
    font-weight: 800;
    border: 1px solid var(--orange);
    transition: all ease .15s;
    font-size: 14px;
}

.btn__small{
    padding: 8px 16px !important;
    height: fit-content;
}

.btn:hover{
    background: white;
    color: black;
}

.btn__outline{
    background: none;
    border: 1px solid white;
    transition: all ease .15s;
}

.menu a{
    font-weight: 600;
    opacity: 0.6;
    transition: all ease .15s;
}

.menu a:hover{
    opacity: 1;
}

.mainscreen__content{
    max-width: 745px;
    margin: 0 auto;
}

.grid-3{
    width: 100%;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

h1{
    font-size: 64px;
    text-align: center;
    line-height: 100%;
}

h2{
    font-size: 48px;
    line-height: 100%;
}

section{
    padding: 64px 0;
}

.about__info{
    text-align: left;
    max-width: 608px;
    padding-left: 24px;
    border-left: 2px solid var(--orange);
}

.about__img{
    position: relative;
}

.about__img .x{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

mark{
    all: unset;
}

.orange{
    color: #ED6000;
    opacity: 1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 24s linear infinite;
}

.mainscreen{
    background: url(../img/bg.png) center bottom no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 250px;
    padding-bottom: 185px;
    text-align: center;
}

.infrastructure__card.banking{
    background: url(../img/banking.png) center right no-repeat;
    background-size: cover;
}
.infrastructure__card.crypto{
    background: url(../img/crypto.png) center right no-repeat;
    background-size: cover;
}
.infrastructure__card.card{
    background: url(../img/card.png) center right no-repeat;
    background-size: cover;
}
.infrastructure__card.payment{
    background: url(../img/payment.png) center right no-repeat;
    background-size: cover;
}
.infrastructure__card.compliance{
    background: url(../img/compliance.png) center right no-repeat;
    background-size: cover;
}
.infrastructure__card.licensing{
    background: url(../img/licensing.png) center right no-repeat;
    background-size: cover;
}

.infrastructure__card{
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 24px;
    font-weight: 800;
    height: 128px;
    border: 1px solid var(--bd);
    border-radius: 24px;
    padding: 20px;
    transition: all ease .15s;
    box-sizing: border-box;
}

.infrastructure__card:hover{
    transform: scale(1.02);
}

p{
    opacity: 0.7;
    margin: 0;
    padding: 0;
}

.infrastructure__card p{
    max-width: 212px;
    line-height: 100%;
    opacity: 1;
}

.about{
    background: var(--bg-grad);
}

.vision h2{
    text-align: right;
}

.vision__text{
    max-width: 587px;
}

.num{
    opacity: 1;
    color: #ED6000;
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
}

.product__card{
    box-sizing: border-box;
    width: 100%;
    padding: 24px 20px;
    position: relative;
    border: 1px solid;
    border-image: linear-gradient(180deg, white, #ffffff00) 1;
    background: #ff6a0000;
    transition: all ease .15s;
}

.product__card:hover{
    background: var(--orange);
    color: white;
}

.product__card .arrow{
    position: absolute;
    top: 26px;
    right: 20px;
}

.product__card:hover .num{
    color: white;
}

h3{
    font-size: 24px;
}

.globe{
    width: 100%;
    max-width: 480px;
}

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

p.bold{
    opacity: 1;
    font-weight: 600;
}

.grid-2 .row.center.g12{
    width: 100%;
    text-wrap-mode: nowrap;
}

.security__grid{
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid;
    border-image: linear-gradient(180deg, white, #ffffff00) 1;
    width: 100%;
    padding: 24px 20px;
}

.big{
    font-size: 48px;
    opacity: 1;
    font-weight: 800;
}

.whyus__content .row.g24{
    align-items: flex-start;
}

.cardstack{
    max-width: 240px;
    height: auto;
}

.whyus__item-text {
    margin-left: 29px;
}

.fs{
    align-items: flex-start;
}

.fe{
    align-items: flex-end;
}

.process__content h2{
    text-wrap-mode: wrap;
    text-align: right;
}

.process {
    position: relative;
    padding: 0;
    margin-top: 96px;
    margin-bottom: 96px;
    overflow: hidden;
}

.process__content {
    position: relative;
    align-items: flex-start;
}

.process__left {
    margin-right: 24px;
}

.process__left .btn {
    margin-top: 40px;
}

.process__right {
    position: relative;
    padding-left: 36px;
}

.process__list {
    position: relative;
    max-height: 570px;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.process__list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0) 0%,
        #121212 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.process.open .process__list {
    max-height: 2000px;
}

.process.open .process__list::after {
    opacity: 0;
}

.process__list p {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.25s ease, opacity 0.25s ease;
}

.process__list p.scrolled {
    color: rgba(255, 255, 255, 0.95);
}

.process__list p + p {
    margin-top: 28px;
}

.process__list p:nth-child(1),
.process__list p:nth-child(2) {
    color: rgba(255, 255, 255, 0.95);
}

.process__line {
    position: relative;
    width: 1px;
    min-height: 640px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.35);
}

.process__progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background: #ff6a00;
}

.process__dot {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff6a00;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

.process.in-view .process__dot {
    opacity: 1;
}

.process__more {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.process__more svg {
    transition: transform 0.3s ease;
}

.process.open .process__more svg {
    transform: rotate(180deg);
}

.cta{
    background: var(--orange);
    border-radius: 24px;
    width: 100%;
    padding: 20px;
    position: relative;
}

.contacts__content{
    text-align: center;
}

.pavel{
    max-width: 380px;
    position: absolute;
    left: 20px;
    bottom: 0;
    z-index: 99;
}

.pavel__info{
    position: absolute;
    left: 32px;
    bottom: 32px;
    z-index: 100;
    text-align: left;
    max-width: 430px;
    font-size: 12px;
}

.form{
    background: white;
    border-radius: 24px;
    width: 370px;
    padding: 36px 20px;
    margin-right: 48px;
}

input{
    color: black;
    text-align: left;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
}

.jcfe{
    justify-content: flex-end;
}

.footer{
    padding: 24px 0;
}

.footer__content a{
    opacity: .5;
    transition: all ease .15s;
}

.footer__content a:hover{
    opacity: 1;
}


@media screen and (max-width: 1240px) {
    .wrapper{
        max-width: 1040px;
    }
}


@media screen and (max-width: 1060px) {
    .wrapper{
        max-width: 920px;
    }

    .big{
        font-size: 36px;
    }

    .contacts__content h2{
        text-align: right;
        margin-left: auto;
    }
}


@media screen and (max-width: 940px) {
    .wrapper{
        max-width: 750px;
    }

    .menu{
        display: none;
    }

    .about__content{
        flex-direction: column-reverse;
    }

    .about__info{
        border: none;
        padding-left: 0;
        align-items: center;
        text-align: center;
        margin-top: 24px;
    }

    .regulatory__content{
        flex-direction: column;
    }

    .regulatory__content .col.g36{
        align-items: center;
        text-align: center;
    }

    .globe{
        width: 100%;
        max-width: 360px;
    }

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

    h2{
        font-size: 36px;
    }

    .form{
        margin-right: 0;
    }

    .cta{
        flex-direction: column-reverse;
        gap: 24px;
    }

    .pavel{
        position: relative;
    }
    
    .contacts__content h2{
        text-align: center;
        margin-left: unset;
    }
}


@media screen and (max-width: 770px) {
    .wrapper{
        max-width: 520px;
    }

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

    .footer__content{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer__content .fe{
        align-items: center;
    }
}


@media screen and (max-width: 540px) {
    .wrapper{
        max-width: 360px;
    }

    .whyus__content .row.g24{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .whyus__content .row.center.g8{
        justify-content: center;
    }

    .whyus__item-text{
        margin-left: 0;
    }

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

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

    h2{
        font-size: 32px;
    }

    h1{
        font-size: 42px;    
    }

    .mainscreen__content .row.center.g8{
        flex-direction: column;
    }

    .about .row.center.g8{
        flex-direction: column;
    }

    .process__line{
        display: none;
    }

    .process__right{
        padding-left: 0;
    }

    .process__content{
        flex-direction: column;
        gap: 36px;
        align-items: center;
        text-align: center;
    }

    .process__list p + p {
        margin-top: 8px;
    }

    .process__left .btn{
        margin-top: 0;
    }

    .process__left{
        margin-right: 0;
        text-align: center;
        align-items: center;
        gap: 24px;
    }

    .process__left h2{
        text-align: center;
    }

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

    .process__more{
        margin-left: auto;
        margin-right: auto;
    }

    .form{
        width: 100%;
        box-sizing: border-box;
    }

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

    h2{
        font-size: 28px;
    }

    .pavel{
        left: 0;
        width: 100%;
    }

    .pavel__info{
        left: 20px;
    }

    .footer__content .row.center.g24{
        flex-direction: column;
        gap: 8px;
    }
}

@media screen and (max-width: 365px) {
    .wrapper{
        max-width: 300px;
    }
}


.error {
  border-color: #ff3b3b !important;
}

.form-error {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #ff3b3b;
}