.crypto-pos-introduction {
    --crypto-pos-intro-glow: rgba(255,255,255,.22);
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    padding: 60px 24px;
    background: #000;
    color: #fff;
}

.crypto-pos-introduction,
.crypto-pos-introduction * {
    box-sizing: border-box;
}

.crypto-pos-introduction__overlay,
.crypto-pos-introduction__glow {
    position: absolute;
    pointer-events: none;
}

.crypto-pos-introduction__overlay {
    inset: 0;
    z-index: 0;
}

.crypto-pos-introduction__glow {
    z-index: 0;
    top: -310px;
    left: 50%;
    width: 620px;
    height: 620px;
    transform: translateX(-50%) scaleX(2.25);
    border-radius: 50%;
    background: radial-gradient(circle, var(--crypto-pos-intro-glow) 0%, rgba(0,0,0,0) 70%);
    filter: blur(45px);
    opacity: .7;
}

.crypto-pos-introduction--no-glow .crypto-pos-introduction__glow {
    display: none;
}

.crypto-pos-introduction__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    min-height: 560px;
    margin: 0 auto;
}

.crypto-pos-introduction__grid {
    display: flex;
    width: 100%;
    min-height: inherit;
    align-items: center;
    gap: 84px;
}

.crypto-pos-introduction__content,
.crypto-pos-introduction__visual {
    position: relative;
    min-width: 0;
}

.crypto-pos-introduction__content {
    flex: 0 0 46%;
    max-width: 46%;
}

.crypto-pos-introduction__visual {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
}

.crypto-pos-introduction__eyebrow {
    margin: 0 0 14px;
    color: #f2991d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.crypto-pos-introduction__heading {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.08;
}

.crypto-pos-introduction__description {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.48;
}

.crypto-pos-introduction__description p {
    margin: 0;
}

.crypto-pos-introduction__description p + p {
    margin-top: 18px;
}

.crypto-pos-introduction__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 22px;
    border-radius: 8px;
    background: #f2991d;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.crypto-pos-introduction__button:hover,
.crypto-pos-introduction__button:focus {
    transform: translateY(-2px);
}

.crypto-pos-introduction__button-icon,
.crypto-pos-introduction__button-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.crypto-pos-introduction__image {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    transform: translateX(0);
}

.crypto-pos-introduction__image img {
    display: block;
    width: 510px;
    max-width: 100%;
    max-height: 430px;
    height: auto;
    object-fit: contain;
}

.crypto-pos-introduction__image--linked {
    text-decoration: none;
}

.crypto-pos-introduction-image-animation-float .crypto-pos-introduction__image {
    animation: cryptoPosIntroductionFloat 6s ease-in-out infinite;
}

.crypto-pos-introduction-image-animation-pulse .crypto-pos-introduction__image {
    animation: cryptoPosIntroductionPulse 5s ease-in-out infinite;
}

@keyframes cryptoPosIntroductionFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes cryptoPosIntroductionPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.025); }
}

@media (max-width: 1024px) {
    .crypto-pos-introduction__grid {
        gap: 48px;
    }

    .crypto-pos-introduction__content {
        flex-basis: 48%;
        max-width: 48%;
    }

    .crypto-pos-introduction__description {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .crypto-pos-introduction {
        padding: 48px 18px;
    }

    .crypto-pos-introduction__inner {
        min-height: 0;
    }

    .crypto-pos-introduction__grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 34px;
    }

    .crypto-pos-introduction-mobile-image-first .crypto-pos-introduction__visual {
        order: -1;
    }

    .crypto-pos-introduction__content,
    .crypto-pos-introduction__visual {
        width: 100%;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        flex-basis: 100% !important;
        align-self: stretch;
    }

    .crypto-pos-introduction__content {
        min-width: 0;
    }

    .crypto-pos-introduction__description,
    .crypto-pos-introduction__description > *,
    .crypto-pos-introduction__heading {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .crypto-pos-introduction__heading {
        font-size: 34px;
    }

    .crypto-pos-introduction__description {
        font-size: 18px;
        line-height: 1.55;
    }

    .crypto-pos-introduction__image img {
        width: min(100%, 510px);
        max-height: none;
    }

    .crypto-pos-introduction__glow {
        top: -200px;
        width: 420px;
        height: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .crypto-pos-introduction__image {
        animation: none !important;
    }
}
