.fa-telegram::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    mask: url("/assets/telegram.svg") center / contain no-repeat;
    vertical-align: -0.25em;
}

:root {
    --bg: #050a14;
    --bg2: #020611;
    --card: rgba(8, 16, 34, 0.72);
    --card2: rgba(10, 20, 46, 0.65);
    --line: rgba(255, 255, 255, 0.1);

    --text: #eaf1ff;
    --muted: rgba(234, 241, 255, 0.72);

    --accent: rgba(0, 117, 255, 1);
    --accent2: rgba(0, 117, 255, 1);

    --radius: 18px;
    --radius2: 22px;

    --shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
    --shadow2: 0 10px 30px rgba(0, 0, 0, 0.45);

    --container: 1920px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    font-size: 8px;
}
body {
    margin: 0;
    font-family:
        "Unbounded",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    color: var(--text);
    background: black;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}

.accent {
    color: var(--accent2);
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 75%,
        #000 100%
    );
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.25rem;
    padding: 1.75rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: max-content;
}
.brand__logo {
    width: auto;
    height: 5rem;
    object-fit: contain;
}
.brand__name {
    font-weight: 700;
    font-size: 2rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav__link {
    font-size: 2.5rem;
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 1.5rem;
    transition: 0.2s ease;
}
.nav__link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.burger {
    display: none;
    width: 5.5rem;
    height: 5.25rem;
    border: 1px solid var(--line);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}
.burger span {
    display: block;
    height: 0.25rem;
    margin: 0.75rem 1.25rem;
    background: rgba(234, 241, 255, 0.75);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    border-radius: 2rem;
    border: 1px solid var(--line);
    padding: 2.5rem 2.75rem;
    font-size: 2.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    transition:
        transform 0.15s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn--primary:hover {
    transform: translateY(-3px);
}
.btn--dark {
    background: rgba(10, 16, 34, 0.66);
}
.btn--ghost {
    background:
        radial-gradient(
            49.85% 100% at 50.15% 100%,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0) 100%
        ),
        linear-gradient(0deg, #08c, #08c);
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
    padding: 2.5rem 2rem;
}
.btn--block {
    width: 100%;
}
.btn--small {
    padding: 2.25rem 2.5rem;
    border-radius: 2.75rem;
    font-size: 2.5rem;
}

.hero {
    padding: 7rem 0 3rem;
}
.hero__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero__content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.hero__title {
    margin: 0;
    font-size: 8rem;
    line-height: 1;
}
.hero__subtitle {
    margin: 0;
    color: white;
    line-height: 1;
    font-size: 4.5rem;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
}
.hero__cta .btn--dark,
.hero__cta .btn--primary {
    color: white;
    border-radius: 999px;
    border: none;
    padding: 2.25rem 4rem !important;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}
.hero__cta .btn--primary {
    background:
        radial-gradient(
            49.85% 100% at 50.15% 100%,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0) 100%
        ),
        linear-gradient(0deg, #0088cc, #0088cc);
}

.hero__cta .btn--dark {
    background:
        radial-gradient(
            49.85% 100% at 50.15% 100%,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 100%
        ),
        linear-gradient(0deg, #0d0d0d, #0d0d0d);
}
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 1.24rem;
    padding: 3rem 6rem;
    border-radius: 999px;
    border: 1px solid rgb(0, 117, 255);
    background: rgba(255, 255, 255, 0.03);
    font-size: 4rem;
    color: white;
    font-weight: 300;
}
.pill--soft {
    background:
        radial-gradient(
            49.85% 100% at 50.15% 100%,
            rgba(0, 117, 255, 0.3) 0%,
            rgba(0, 117, 255, 0) 100%
        ),
        linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero__visual {
    min-height: 340px;
    height: 100svh;
}
.hero__graphic {
    overflow: hidden;
    height: 100%;
}
.hero__graphic img,
.hero__graphic video {
    transform: scale(1.25);
    max-width: 100%;
    height: 90%;
    mix-blend-mode: lighten;
}

.examples {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.examples video {
    border-radius: 40px;
    border: 1px solid rgba(0, 117, 255, 1);
    object-fit: cover;
}

.examples video:nth-child(1) {
    transform: translateX(calc(-50% + 15rem));
}

.examples video:nth-child(3) {
    transform: translateX(calc(-50% - 15rem));
}

.examples video:nth-child(1),
.examples video:nth-child(3) {
    width: 55rem;
    height: 60rem;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 10rem;
}

.examples video:nth-child(2) {
    width: 70rem;
    height: 80rem;
    z-index: 1;
    position: relative;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.4);
}

section {
    min-height: 100svh;
    background-size: cover !important;
    background-position: center !important;
}

.section {
    padding: 8rem 0;
}
.section--tight {
    padding: 4.5rem 0 6.5rem;
}
.section__head {
    margin-bottom: 2.75rem;
}
.section__title {
    margin: 0 0 1.25rem;
    font-size: 8rem;
}
.section__lead {
    margin: 0 0 5rem 0;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
}

#start {
    background: url("/assets/background-1.png");
    display: flex;
}

#advantages {
    background: url("/assets/background-2.png");
}

#faq {
    background: url("/assets/background-3.png");
}

#for-everyone {
    background: url("/assets/background-4.png");
}

#partners {
    background: url("/assets/background-5.png");
}

.icon-line {
    display: flex;
    gap: 5rem;
    margin-top: 5rem;
}

.how__steps,
.features {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
}

.subtitle {
    font-size: 8rem;
    margin-top: 7.5rem;
    margin-bottom: 5rem;
    font-weight: 400;
}

.step__body,
.feature {
    display: flex;
    flex-direction: column;
}
.step__num,
.feature__num {
    font-weight: 400;
    color: rgba(0, 117, 255, 1);
    font-size: 8rem;
    line-height: 1;
}
.step__head,
.feature__title {
    margin: 0 0 1.5rem;
    line-height: 1;
    font-size: 4rem;
    font-weight: 400;
}
.step__text,
.feature__text {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 400;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}
.plan {
    position: relative;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}
.plan__head {
    margin-bottom: 1.5rem;
}
.plan__name {
    font-weight: 500;
    font-size: 4.5rem;
    line-height: 1;
    margin: 0 0 1.5rem 0;
}
.plan__price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.plan__value {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1;
}
.plan__per {
    font-size: 3rem;
    line-height: 1;
}
.btn--primary,
.plan__tokens {
    font-size: 2.5rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    padding: 2.25rem 4rem;
    border-radius: 999px;
    background: var(--accent2);
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.plan__description {
    margin: 0 0 2.5rem 0;
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 300;
}
.plan__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    font-weight: 300;
    display: grid;
    gap: 1.25rem;
    font-size: 2.5rem;
    line-height: 1.2;
}
.plan__list li {
    display: flex;
}
.plan__list i {
    color: var(--accent2);
    margin-right: 2rem;
}
.plan .btn {
    margin-top: auto;
}
.plan--featured {
    border-color: rgba(0, 117, 255, 0.6);
    background:
        linear-gradient(
            146.31deg,
            rgba(0, 117, 255, 0) 0%,
            rgba(0, 117, 255, 0.2) 100%
        ),
        linear-gradient(0deg, #0d0d0d, #0d0d0d);
}
.plan__badge {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    background: rgba(92, 195, 255, 0.16);
    border: 1px solid rgba(92, 195, 255, 0.26);
}

.partner {
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(
            900px 520px at 15% 15%,
            rgba(46, 123, 255, 0.16),
            transparent 55%
        ),
        radial-gradient(
            900px 520px at 90% 70%,
            rgba(92, 195, 255, 0.1),
            transparent 55%
        ),
        rgba(255, 255, 255, 0.02);
    padding: 3rem;
}
.partner__banner {
    margin: 2.25rem 0 2.25rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(0, 117, 255, 1);
    background:
        linear-gradient(
            99.27deg,
            rgba(0, 117, 255, 0) 0%,
            rgba(0, 117, 255, 0.3) 100%
        ),
        linear-gradient(0deg, rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7));
    backdrop-filter: blur(20px);
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.25rem;
}
.partner__money-big {
    font-size: 8rem;
    font-weight: 400;
    line-height: 1;
}
.partner__money-sub {
    font-size: 6rem;
    line-height: 1;
    font-weight: 300;
}
.partner__icon {
    font-size: 4.25rem;
    color: rgba(92, 195, 255, 0.95);
}

.how__title {
    margin: 1.25rem 0 1.75rem;
    font-size: 2.25rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 1.75rem 0 1.75rem;
}
.chip {
    font-size: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 1.75rem;
    margin-bottom: 5rem;
}
.two-col {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
    margin-top: 2.25rem;
    align-items: center;
}
.bigline {
    margin: 0 0 2.5rem;
    font-size: 8rem;
    line-height: 1.2;
    font-weight: 300;
}

.bigline b {
    font-weight: 500;
}

.tools {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.25rem;
    font-size: 4.5rem;
    font-weight: 300;
    color: white;
}
.tools li {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.tools i {
    color: rgba(92, 195, 255, 0.95);
    width: 4.5rem;
}
.muted {
    margin: 1.5rem 0 0;
    color: rgba(234, 241, 255, 0.55);
    font-size: 1.5rem;
    line-height: 1.45;
}

.mock {
    position: relative;
    border-radius: var(--radius2);
    border: 1px solid rgba(92, 195, 255, 0.18);
    background:
        radial-gradient(
            900px 520px at 40% 20%,
            rgba(46, 123, 255, 0.18),
            transparent 60%
        ),
        rgba(255, 255, 255, 0.02);
    overflow: hidden;
    padding: 1.75rem;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mock img {
    width: min(420px, 92%);
    border-radius: 2rem;
    opacity: 0.92;
}
.mock__glow {
    position: absolute;
    inset: -5rem;
    background: radial-gradient(
        circle at 60% 40%,
        rgba(92, 195, 255, 0.18),
        transparent 60%
    );
    filter: blur(20px);
    pointer-events: none;
}

.faq {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.25rem;
    align-items: start;
}
.qa {
    border-radius: 2.5rem;
    border: 1px solid rgb(0, 117, 255);
    background: rgba(13, 13, 13, 0.7);
    padding: 5rem;
    backdrop-filter: blur(20px);
}
.qa + .qa {
    margin-top: 1.25rem;
}

.qa__q {
    cursor: pointer;
    list-style: none;
    font-weight: 400;
    font-size: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    line-height: 1.2;
}
.qa__q::-webkit-details-marker {
    display: none;
}
.qa__q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: rgb(0, 117, 255);
    transition: transform 0.2s ease;
}
details[open] .qa__q::after {
    transform: rotate(180deg);
}
.qa__a {
    margin-top: 2.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.footer {
    padding: 2.75rem 0;
    background:
        radial-gradient(
            100% 100% at 0% 100%,
            rgba(0, 117, 255, 0.4) 0%,
            rgba(0, 117, 255, 0) 100%
        ),
        linear-gradient(0deg, #000000, #000000);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
}
.brand--footer .brand__name {
    font-size: 1.75rem;
}
.footer__left {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.footer__left .document__link {
    color: var(--accent2);
    text-decoration-line: underline;
    font-size: 2rem;
    font-weight: 300;
}
.footer_row {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.footer_row .btn--primary {
    margin: 0 0 0 4rem;
}
.footer__note {
    margin-top: 1rem;
    color: rgba(234, 241, 255, 0.55);
    font-size: 1.5rem;
}
.footer__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.social {
    width: 7.5rem;
    height: 7.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent2);
    font-size: 3rem;
    color: black;
    transition: 0.2s ease;
}
.social:hover {
    transform: translateY(-2px);
}
.mobile {
    display: none;
}

@media (max-width: 1440px) {
    html,
    body {
        font-size: 6px;
    }
}

@media (max-width: 1280px) {
    html,
    body {
        font-size: 5px;
    }
}

@media (max-width: 900px) {
    html,
    body {
        font-size: 4px;
    }

    section {
        min-height: unset;
    }

    .hero__visual {
        height: 60svh;
    }

    .examples video:nth-child(3) {
        transform: translateX(calc(-50% - 15rem));
    }
    .examples video:nth-child(1) {
        transform: translateX(calc(-50% + 15rem));
    }
    .footer__left .document__link {
        font-size: 3rem;
    }

    .social {
        width: 10rem;
        height: 10rem;
        font-size: 4.5rem;
    }

    .footer_row .btn--primary {
        margin: 2rem 0 0 0;
    }

    .brand__logo {
        height: 5rem;
    }

    .footer_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .footer__left,
    .footer__inner {
        align-items: flex-start;
        gap: 5rem;
    }

    .bigline {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
    .bigline br {
        display: none;
    }

    .tools {
        font-size: 4rem;
        display: flex;
        flex-wrap: wrap;
    }
    .tools li {
        gap: 2rem;
    }
    .tools svg {
        width: 4rem;
        height: 4rem;
    }

    .faq .section__lead {
        margin-bottom: 2rem;
    }

    .pills-row {
        gap: 3rem;
    }
    .pill {
        font-size: 3rem;
        padding: 3rem 6rem;
        width: fit-content;
    }

    .subtitle {
        font-size: 6rem;
        margin-bottom: 3rem;
        margin-top: 5rem;
    }

    .partner__money-big,
    .partner__money-sub {
        display: inline;
        font-size: 4rem;
        font-weight: 300;
    }

    .section__title {
        font-size: 6rem;
    }
    .section__lead {
        font-size: 4rem;
    }

    .how__steps,
    .features {
        gap: 5rem;
    }
    .feature__num,
    .step__num {
        font-size: 6rem;
    }
    .feature__title,
    .step__head {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    .feature__text,
    .step__text {
        font-size: 3rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }
    .two-col__right {
        grid-row-start: 1;
        grid-row-end: 1;
    }

    .pills-row {
        flex-direction: column;
    }
    #for-everyone .pill:nth-child(2n) {
        align-self: flex-end;
    }

    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }

    .container.faq {
        grid-template-columns: 1fr;
    }

    header .nav,
    header .header__actions {
        display: none;
    }
    .pricing {
        display: flex;
        flex-direction: column;
    }
    .plan {
        min-height: fit-content;
    }
    .container {
        flex-direction: column-reverse;
    }
}

@media (max-width: 400px) {
    html,
    body {
        font-size: 3.25px;
    }
}
