@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&display=swap');

body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #030231;
    color: #ffffff;
    overflow-x: hidden;
}

.noise {
    position: fixed;
    overflow: none;
    left: -25%;
    top: -25%;
    pointer-events: none;
    z-index: 9999;
    background-image: none;
    height: 150%;
    width: 150%;
    opacity: 0.09;
    animation: noise 0.1s infinite;
    will-change: transform;
    background-image: url(../img/noise.png);
}

@keyframes noise {
    0% {
        transform: translate(0, 0)
    }

    5% {
        transform: translate(-2%, -2%)
    }

    10% {
        transform: translate(2%, 2%)
    }

    15% {
        transform: translate(-2%, 2%)
    }

    20% {
        transform: translate(2%, -2%)
    }

    25% {
        transform: translate(-2%, 0)
    }

    30% {
        transform: translate(2%, 0)
    }

    35% {
        transform: translate(0, -2%)
    }

    40% {
        transform: translate(0, 2%)
    }

    45% {
        transform: translate(-2%, -1%)
    }

    50% {
        transform: translate(2%, 1%)
    }

    55% {
        transform: translate(-1%, 2%)
    }

    60% {
        transform: translate(1%, -2%)
    }

    65% {
        transform: translate(-2%, 1%)
    }

    70% {
        transform: translate(2%, -1%)
    }

    75% {
        transform: translate(-1%, -2%)
    }

    80% {
        transform: translate(1%, 2%)
    }

    85% {
        transform: translate(-1%, 0)
    }

    90% {
        transform: translate(1%, 0)
    }

    95% {
        transform: translate(0, -1%)
    }

    100% {
        transform: translate(0, 0)
    }
}


/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .noise-effect {
        opacity: 0.06;
    }
}

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

.gradientCanvas {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
}

.scrollScene {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.scrollScene canvas {
    display: block;
    width: 100%;
    height: 100%;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.titleBlock {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.main .container {
    flex: 1;
}

.main .content {
    max-width: 600px;
    padding: 50px 0px;
}

.line {
    width: 4px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    transition: 0.3s;
}

.topleft {
    top: -1px;
    left: -1px;
}

.topright {
    top: -1px;
    right: -1px;
}

.bottomleft {
    bottom: -1px;
    left: -1px;
}

.bottomright {
    bottom: -1px;
    right: -1px;
}

.edgeBlur {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.edgeBlur__top,
.edgeBlur__bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.edgeBlur__top {
    top: 0;
    background: none;
    mask-image: linear-gradient(to bottom, #000 0%, rgb(0 0 0 / 92%) 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgb(0 0 0 / 92%) 30%, transparent 100%);
}

.edgeBlur__bottom {
    bottom: 0;
    background: none;
    mask-image: linear-gradient(to top, #000 0%, rgb(0 0 0 / 92%) 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 0%, rgb(0 0 0 / 92%) 30%, transparent 100%);
}


.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    padding: 60px 100px;
    box-sizing: border-box;
}

.logo {
    height: 52px;
    display: block;
}

h1 {
    font-size: 60px;
    line-height: 120%;
    color: #ffffff;
    margin: 0px;
    padding: 0px;
    font-weight: 700;
}

h2 {
    margin: 0px;
    padding: 0px;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
}

h2.large {
    font-size: 52px;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

h2.superLarge {
    font-size: 110px;
    line-height: 110px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

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

.subtitle {
    font-weight: 600;
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    width: fit-content;
    position: relative;
}

.subtitle::after {}

.subtitle::before {}

h3 {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    line-height: 18px;
}

p {
    font-size: 14px;
    line-height: 24px;
    padding: 0px;
    margin: 0px;
}

p.large {
    font-size: 16px;
    line-height: 26px;
}

p.disclamer {
    font-size: 10px;
    line-height: 18px;
    color: rgb(255 255 255 / 50%);
}

.btnGroup {
    display: flex;
    gap: 8px;
}

.btn {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 14px 24px 16px;
    border: 1px solid rgb(255 255 255 / 15%);
    color: #ffffff;
    display: block;
    width: fit-content;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transition: 0.3s;
}


.btn:hover {
    color: #0148ff;
    border-right: 1px solid #0148ff;
    border-left: 1px solid #0148ff;
    transition: 0.3s;
}

.btn:hover .line {
    background-color: #0148ff;
    transition: 0.3s;
}

.btn.secondary {}

.numbers {
    display: flex;
    gap: 40px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.numBlock {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.number {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
}

.numDescr {
    font-size: 12px;
    line-height: 18px;
}

.strategyPreview {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.strategyPreview .content {
    gap: 20px;
    width: 460px;
}

.strategyPreview .container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
}

.bricks {
    min-width: 600px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 600px;
}

.brick {
    width: 200px;
    height: 80px;
    background: rgb(255 255 255 / 6%);
    display: flex;
    padding: 30px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
}

.percent {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
}

.brick.nulls {
    background-color: rgb(255 255 255 / 0%);
    backdrop-filter: blur(0px);
}

.sliderShow {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1000;
}

.slideFrame {
    border: 2px solid #ffffff;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: absolute;
    left: 30px;
    top: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    pointer-events: none;
}

.slideMenu {
    pointer-events: auto;
}

.sliderLent {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    gap: 50px;
    overflow: visible;
    will-change: transform;
}

.sliderShow .container {
    flex: 1;
    max-width: none;
    box-sizing: border-box;
    min-width: 100vw;
    padding: 110px 100px 32px 100px;
    backdrop-filter: blur(50px);
}

.slideMenu {
    margin: 0px;
    padding: 0px;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    list-style: none;
    border-bottom: 2px solid #ffffff;
}

.slideMenu li {
    width: inherit;
    display: flex;
    border-right: 2px solid #ffffff;
}

.slideMenu li:last-child {
    border-right: 0px;
}

.slideMenu li a {
    display: block;
    text-decoration: none;
    width: 100%;
    color: #ffffff;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slideMenu li a.active {
    background: #ffffff;
    color: #030D7C;
}

.slideMenu li a:hover {}

.slideContent {}

.head {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.head p {
    max-width: 800px;
}

.chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 320px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.chart h3 {
    margin: 0;
}

.graphic {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    height: 300px;
    overflow: hidden;
}

.graphicSvg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.graphicGridLine {
    stroke: rgb(255 255 255 / 18%);
    stroke-width: 1.2;
}

.graphicZeroLine {
    stroke: rgb(255 255 255 / 12%);
    stroke-width: 1;
}

.graphicLine {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.graphicLineStrategy {
    stroke: #ffffff;
    stroke-width: 2.5;
}

.graphicLineBtc {
    stroke: rgb(255 255 255 / 48%);
    stroke-width: 2.5;
}

.graphicDot {
    fill: #ffffff;
}

.graphicDotBtc {
    fill: rgb(255 255 255 / 72%);
}

.graphicLabels {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.graphicEvent {
    position: absolute;
    top: 0;
    width: auto;
    min-width: 112px;
    transform: translateX(16px);
}

.graphicEventLine {
    position: absolute;
    top: 0;
    left: -16px;
    width: 1.2px;
    height: 254px;
    background: rgb(255 255 255 / 18%);
}

.graphicEventFirst {
    transform: translateX(16px);
}

.graphicEventLast {
    transform: translateX(16px);
}

.graphicStrategy {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.graphicArrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #ffffff;
}

.graphicBtc {
    margin-top: 8px;
    color: rgb(255 255 255 / 54%);
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    white-space: nowrap;
}

.graphicEventText {
    margin-top: 170px;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.graphicEventText strong {
    color: rgb(255 255 255 / 54%);
    font-weight: 400;
}




/* @media (max-width: 760px) {
    .sliderShow .container {
        padding: 86px 24px 64px;
    }

    .chart {
        margin-left: -24px;
        width: calc(100% + 24px);
        max-width: calc(100% + 24px);
    }

    .chart {
        min-height: 270px;
    }

    .graphic {
        max-width: 100%;
        height: 260px;
    }

    .graphicEvent {
        width: 82px;
    }

    .graphicStrategy {
        gap: 4px;
        font-size: 13px;
        line-height: 14px;
    }

    .graphicArrow {
        border-left-width: 4px;
        border-right-width: 4px;
        border-bottom-width: 6px;
    }

    .graphicBtc {
        margin-top: 6px;
        font-size: 12px;
        line-height: 14px;
    }

    .graphicEventText {
        margin-top: 148px;
        font-size: 10px;
        line-height: 14px;
    }
} */


.steps {}

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

.step {
    box-sizing: border-box;
    width: 33.3%;
}

.stepInfo {
    padding: 30px;
    min-height: 237px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    background: rgb(255 255 255 / 6%);
    backdrop-filter: blur(20px);
}

.step img {
    display: block;
    width: 80%;
    margin: 0px auto 20px;
}

.step:nth-child(2n) .stepInfo,
.secure .stepInfo:nth-child(2n) {
    background: rgb(255 255 255 / 1%);
}

.step h3 {
    filter: blur(10px);
}

.step p {
    filter: blur(10px);
}

.step.active h3 {
    filter: blur(0px);
}

.step.active p {
    filter: blur(0px);
}

.secure {}


.cta {}

.cta .container {
    display: flex;
    gap: 50px;
    justify-content: flex-end;
}

.revealOnScroll {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(24px);
    transition:
        opacity 0.9s ease,
        filter 0.9s ease,
        transform 0.9s ease;
    will-change: opacity, filter, transform;
}

.revealOnScroll.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}


@media (max-width: 1000px) {
    h1 {
        font-size: 40px;
    }

    p.large {
        font-size: 14px;
        line-height: 24px;
    }

    .numDescr {
        font-size: 11px;
        line-height: 16px;
    }

    .number {
        font-size: 34px;
        line-height: 34px;
    }

    .bricks {
        min-width: 480px;
        width: 480px;
    }

    .brick {
        width: 160px;
        height: 160px;
        padding: 20px;
    }

    h3 {
        font-size: 16px;
        line-height: 18px;
    }

    h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .percent {
        font-size: 24px;
    }

    p {
        font-size: 12px;
        line-height: 18px;
    }

    h2.superLarge {
        font-size: 60px;
        line-height: 60px;
    }

    h2.large {
        font-size: 38px;
        line-height: 120%;
        gap: 20px;
    }

    .subtitle {
        font-size: 8px;
    }
}

@media (max-width: 900px) {
    .slideMenu li {
        border-right: 2px solid #ffffff;
        width: 25%;
        box-sizing: border-box;
    }

    .slideMenu {
        flex-wrap: wrap;
    }

    .slideMenu li a {
        padding: 12px 12px;
    }

    .lastOne {
        border-right: 0px !important;
    }

    .fPoint {
        border-bottom: 2px solid #ffffff
    }

    .sliderShow .container {
        padding: 170px 100px 32px 100px;
    }

    .head {
        gap: 20px;
    }

    .numbers {
        gap: 20px;
        flex-wrap: wrap;
    }

    .numBlock {
        width: 40%;
    }

}

@media (max-width: 840px) {
    .container {
        padding: 60px 40px;
    }

    .strategyPreview .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .bricks {
        min-width: 100%;
        width: 100%;
    }

    .brick {
        width: 33.3%;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 60px 40px;
    }

    .brick {
        width: 33.3%;
        height: 180px;
    }

    h1 {
        font-size: 30px;
    }

    .content {
        gap: 20px;
    }

    .container {
        padding: 60px 16px;
    }

    .numBlock {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .number {
        font-size: 24px;
        line-height: 28px;
    }

    .strategyPreview .content {
        gap: 20px;
        width: 100%;
    }

    h3 {
        font-size: 13px;
        line-height: 18px;
    }

    .percent {
        font-size: 16px;
    }

    .brick {
        width: 33.3%;
        height: 120px;
        padding: 16px;
    }

    .slideFrame {
        left: 10px;
        top: 10px;
        right: 10px;
        bottom: 10px;
    }

    .sliderShow .container {
        padding: 100px 12px 12px 12px;
        height: initial;
    }

    .head {
        gap: 16px;
        padding: 0px 20px;
    }

    .chart h3 {
        margin-left: 20px;
    }

    .sliderLent,
    .sliderShow {
        height: fit-content;
        min-height: fit-content;
    }

    h2.superLarge {
        font-size: 38px;
        line-height: 54px;
    }

    .slideMenu li a {
        padding: 12px 7px;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.2px;
    }

    .graphicStrategy {
        font-size: 12px;
        line-height: 18px;
    }

    .graphicBtc {
        margin-top: 0px;
        font-size: 10px;
        line-height: 18px;
    }

    .graphicSvg {
        height: 130px;
    }

    .graphicEventLine {
        height: 170px !important;
    }

    .graphicEventText {
        margin-top: 66px;
        font-size: 10px;
        line-height: 16px;
    }

    .chart {
        margin-top: 24px;
        min-height: fit-content;
        overflow-x: scroll;
    }

    .graphic {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin-top: 8px;
        height: 170px;
        overflow: hidden;
        min-width: 680px;
    }

    section {
        min-height: fit-content;
    }

    .stepGroup {
        flex-direction: column;
        gap: 20px;
    }

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

    .stepInfo {
        padding: 20px;
        min-height: 150px;
    }

    .secure .container {
        gap: 40px;
    }

    h2.end {
        font-size: 50px;
        line-height: 120%;
    }

    .btnGroup {
        flex-direction: column;
    }

    .secure .stepGroup {
        flex-direction: row;
        gap: 0px;
    }

    .secure .stepInfo {
        padding: 20px;
        min-height: 200px;
        width: 50% !important;
        background: rgb(255 255 255 / 1%);
    }

    .mobBg {
        background: rgb(255 255 255 / 6%) !important;
    }

}



@media (prefers-reduced-motion: reduce) {
    .revealOnScroll {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}