.other-partners {
    width: min(calc(100% - (var(--section-padding-x) * 2)), var(--container));
    max-width: none;
    margin: var(--section-spacing) auto var(--section-spacing);
    padding: 0;
    position: relative;
    box-sizing: border-box;

    --op-text: var(--text);
    --op-muted: rgba(220, 229, 248, .76);
    --op-soft: rgba(220, 229, 248, .54);

    --op-blue: var(--primary);
    --op-blue-rgb: var(--primary-rgb);

    --op-cyan: var(--cyan, #36b4ff);
    --op-cyan-rgb: var(--cyan-rgb, 54, 180, 255);

    --op-violet: var(--purple, #8d6cff);
    --op-violet-rgb: var(--purple-rgb, 141, 108, 255);

    --op-green: var(--success);
    --op-green-rgb: var(--success-rgb);
}

.other-partners,
.other-partners *,
.other-partners *::before,
.other-partners *::after {
    box-sizing: border-box;
}


.other-partners__header {
    position: relative;
    z-index: 3;
    width: 100%;
    min-width: 0;
    margin-bottom: 30px;
}

.other-partners__header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(var(--op-cyan-rgb), .40), rgba(var(--op-violet-rgb), .18), transparent 72%);
}

.other-partners__heading {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.other-partners__heading-icon {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--op-cyan);
}

.other-partners__heading-icon::before {
    content: "";
    position: absolute;
    inset: 6px;
    z-index: -2;
    border-radius: 17px;
    background: rgba(var(--op-cyan-rgb), .30);
    filter: blur(15px);
    opacity: .92;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.other-partners__heading-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 17px;
    background:
        radial-gradient(circle at 34% 18%, rgba(255, 255, 255, .22), transparent 36%),
        linear-gradient(135deg, rgba(var(--op-cyan-rgb), .24), rgba(var(--op-blue-rgb), .14) 58%, rgba(var(--op-violet-rgb), .16)),
        rgba(255, 255, 255, .035);
    border: 1px solid rgba(var(--op-cyan-rgb), .22);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, .28),
        0 0 26px rgba(var(--op-cyan-rgb), .14),
        inset 0 1px 0 rgba(255, 255, 255, .20);
}

.other-partners__heading:hover .other-partners__heading-icon::before {
    transform: scale(1.16);
    opacity: 1;
}

.other-partners__heading-icon svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    filter:
        drop-shadow(0 7px 12px rgba(0, 0, 0, .30))
        drop-shadow(0 0 12px rgba(var(--op-cyan-rgb), .28));
}

.other-partners__heading-copy {
    min-width: 0;
}

.other-partners__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: #8ddcff;
    font-family: var(--font-tech);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.other-partners__eyebrow span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--op-cyan);
    box-shadow:
        0 0 10px rgba(var(--op-cyan-rgb), .92),
        0 0 22px rgba(var(--op-cyan-rgb), .28);
    animation: otherPartnersDot 1.8s ease-in-out infinite;
}

.other-partners__title {
    margin: 0;
    color: var(--op-text);
    font-family: var(--font-heading) !important;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow:
        0 14px 38px rgba(0, 0, 0, .30),
        0 0 20px rgba(var(--op-cyan-rgb), .10);
}

.other-partners__list {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.other-partners__item {
    --op-accent-rgb: var(--op-blue-rgb);
    --op-accent: var(--op-blue);

    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    min-height: 340px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 22px;
    border-radius: var(--radius-section);
    background:
        radial-gradient(circle at 10% 12%, rgba(var(--op-accent-rgb), .15), transparent 28%),
        radial-gradient(circle at 90% 86%, rgba(var(--op-blue-rgb), .10), transparent 32%),
        linear-gradient(135deg, rgba(8, 14, 28, .76), rgba(5, 10, 22, .60)),
        rgba(6, 11, 22, .38);
    border: 1px solid rgba(170, 188, 255, .13);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, .34),
        0 0 0 1px rgba(255, 255, 255, .022),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.other-partners__item:nth-child(2n) {
    --op-accent-rgb: var(--op-green-rgb);
    --op-accent: var(--op-green);
}

.other-partners__item:nth-child(3n) {
    --op-accent-rgb: var(--op-violet-rgb);
    --op-accent: var(--op-violet);
}

.other-partners__item:nth-child(4n) {
    --op-accent-rgb: var(--op-cyan-rgb);
    --op-accent: var(--op-cyan);
}

.other-partners__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -6;
    pointer-events: none;
    background:
        linear-gradient(rgba(170, 188, 255, .040) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 188, 255, .040) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .14;
    mask-image: linear-gradient(180deg, black 0%, black 52%, transparent 90%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 52%, transparent 90%);
    animation: otherPartnersGridMove 20s linear infinite;
}

.other-partners__item::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -5;
    pointer-events: none;
    border-radius: calc(var(--radius-section) - 1px);
    background:
        linear-gradient(90deg, rgba(var(--op-accent-rgb), .34), transparent 18%, transparent 82%, rgba(var(--op-blue-rgb), .20)),
        linear-gradient(180deg, rgba(255, 255, 255, .075), transparent 44%, rgba(255, 255, 255, .026));
    -webkit-mask:
        linear-gradient(#000 0 0) top / 100% 1px no-repeat,
        linear-gradient(#000 0 0) bottom / 100% 1px no-repeat,
        linear-gradient(#000 0 0) left / 1px 100% no-repeat,
        linear-gradient(#000 0 0) right / 1px 100% no-repeat;
    mask:
        linear-gradient(#000 0 0) top / 100% 1px no-repeat,
        linear-gradient(#000 0 0) bottom / 100% 1px no-repeat,
        linear-gradient(#000 0 0) left / 1px 100% no-repeat,
        linear-gradient(#000 0 0) right / 1px 100% no-repeat;
    opacity: .88;
}

.other-partners__item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--op-accent-rgb), .20);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, .42),
        0 0 30px rgba(var(--op-accent-rgb), .08),
        inset 0 1px 0 rgba(255, 255, 255, .07);
}

.other-partners__item-glow,
.other-partners__item-grid {
    position: absolute;
    pointer-events: none;
}

.other-partners__item-glow {
    z-index: -7;
    border-radius: 999px;
    filter: blur(76px);
}

.other-partners__item-glow--one {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -100px;
    background: rgba(var(--op-accent-rgb), .20);
    animation: otherPartnersGlowLeft 9s ease-in-out infinite;
}

.other-partners__item-glow--two {
    width: 360px;
    height: 360px;
    right: -165px;
    bottom: -180px;
    background: rgba(var(--op-accent-rgb), .13);
    animation: otherPartnersGlowRight 11s ease-in-out infinite;
}

.other-partners__item-grid {
    display: none;
}

.other-partners__card-head {
    position: relative;
    z-index: 4;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.other-partners__logo-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    background:
        radial-gradient(circle at 35% 22%, rgba(255, 255, 255, .16), transparent 36%),
        rgba(255, 255, 255, .04);
}

.other-partners__logo-wrap::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(var(--op-accent-rgb), .50), rgba(255, 255, 255, .06), rgba(var(--op-blue-rgb), .18));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.other-partners__logo-wrap::after {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: -1;
    border-radius: 18px;
    background: rgba(var(--op-accent-rgb), .16);
    filter: blur(13px);
    opacity: .86;
}

.other-partners__logo {
    position: relative;
    z-index: 1;
    width: 74%;
    height: 74%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, .10));
}

.other-partners__badge {
    min-height: 36px;
    max-width: 180px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    color: rgba(247, 249, 255, .86);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .014)),
        rgba(5, 10, 22, .30);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 0 0 1px rgba(255, 255, 255, .06);
    font-family: var(--font-tech);
    font-size: 10px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
    text-align: center;
}

.other-partners__content {
    position: relative;
    z-index: 4;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.other-partners__content::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, rgba(var(--op-accent-rgb), .32), rgba(255, 255, 255, .06), transparent);
}

.other-partners__number {
    position: absolute;
    top: -98px;
    right: 0;
    color: rgba(247, 249, 255, .045);
    font-family: var(--font-display) !important;
    font-size: 88px;
    line-height: .8;
    font-weight: 800;
    letter-spacing: -.08em;
    pointer-events: none;
}

.other-partners__name {
    max-width: 100%;
    margin: 0;
    color: var(--op-text);
    font-family: var(--font-display) !important;
    font-size: clamp(28px, 2vw, 34px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.045em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    text-shadow:
        0 18px 46px rgba(0, 0, 0, .34),
        0 0 24px rgba(var(--op-accent-rgb), .10);
}

.other-partners__description {
    min-height: 46px;
    margin: 13px 0 0;
    color: var(--op-muted);
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.other-partners__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}

.other-partners__code,
.other-partners__visit {
    position: relative;
    min-height: 48px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-tech);
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition),
        border-color var(--transition);
}

.other-partners__code {
    overflow: hidden;
    width: 100%;
    padding: 0 14px;
    border: 1px solid rgba(var(--op-accent-rgb), .22);
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .014)),
        rgba(5, 10, 22, .34);
    cursor: pointer;
}

.other-partners__code::before {
    content: "";
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -70%;
    width: 42%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: skewX(-18deg);
    transition: left .78s ease;
}

.other-partners__code:hover::before,
.other-partners__code.is-copied::before {
    left: 125%;
}

.other-partners__code:hover,
.other-partners__code.is-copied {
    transform: translateY(-2px);
    border-color: rgba(var(--op-accent-rgb), .40);
    box-shadow:
        0 16px 34px rgba(var(--op-accent-rgb), .10),
        inset 0 1px 0 rgba(255, 255, 255, .07);
}

.other-partners__code-kicker,
.other-partners__code-text,
.other-partners__code-icon {
    position: relative;
    z-index: 1;
}

.other-partners__code-kicker {
    color: rgba(235, 240, 255, .48);
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.other-partners__code-text {
    color: var(--op-text);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.other-partners__code-icon {
    width: 16px;
    height: 16px;
    color: var(--op-accent);
}

.other-partners__code-icon svg {
    width: 100%;
    height: 100%;
}

.other-partners__visit {
    overflow: hidden;
    padding: 0 15px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .16), transparent 28%),
        linear-gradient(135deg, var(--op-blue) 0%, #786dff 58%, #9872ff 100%);
    box-shadow:
        0 16px 34px rgba(var(--op-blue-rgb), .20),
        inset 0 1px 0 rgba(255, 255, 255, .14);
}

.other-partners__visit::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--op-accent-rgb), .78), transparent);
    opacity: .72;
}

.other-partners__visit:hover {
    transform: translateY(-2px);
    filter: brightness(1.045);
    box-shadow:
        0 20px 40px rgba(var(--op-blue-rgb), .25),
        0 0 20px rgba(var(--op-accent-rgb), .08),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.other-partners__visit span,
.other-partners__visit svg {
    position: relative;
    z-index: 1;
}

.other-partners__visit span {
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.other-partners__visit svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.other-partners__visit:hover svg {
    transform: translate(2px, -2px);
}

.other-partners__footer {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.other-partners__footer span {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    color: rgba(235, 240, 255, .72);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
        rgba(5, 10, 22, .28);
    border: 1px solid rgba(255, 255, 255, .07);
    font-family: var(--font-tech);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

@keyframes otherPartnersGridMove {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 56px;
    }
}

@keyframes otherPartnersGlowLeft {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .72;
    }

    50% {
        transform: translate3d(14px, 10px, 0) scale(1.06);
        opacity: .94;
    }
}

@keyframes otherPartnersGlowRight {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .68;
    }

    50% {
        transform: translate3d(-10px, -14px, 0) scale(1.08);
        opacity: .88;
    }
}

@keyframes otherPartnersDot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.42);
        opacity: .52;
    }
}

@media (max-width: 1180px) {
    .other-partners__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .other-partners__item {
        min-height: 330px;
    }
}

@media (max-width: 820px) {
    .other-partners__heading {
        align-items: flex-start;
    }

    .other-partners__heading-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .other-partners__heading-icon svg {
        width: 28px;
        height: 28px;
    }

    .other-partners__title {
        font-size: 17px;
    }

    .other-partners__list {
        grid-template-columns: 1fr;
    }

    .other-partners__item {
        min-height: auto;
        border-radius: 22px;
    }

    .other-partners__item::after {
        border-radius: 21px;
    }
}

@media (max-width: 520px) {
    .other-partners__header {
        margin-bottom: 24px;
    }

    .other-partners__heading {
        gap: 12px;
    }

    .other-partners__heading-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .other-partners__heading-icon::after,
    .other-partners__heading-icon::before {
        border-radius: 16px;
    }

    .other-partners__heading-icon svg {
        width: 25px;
        height: 25px;
    }

    .other-partners__eyebrow {
        font-size: 9px;
        letter-spacing: .11em;
        margin-bottom: 8px;
    }

    .other-partners__title {
        font-size: 16px;
    }

    .other-partners__item {
        padding: 18px;
        border-radius: 20px;
    }

    .other-partners__item::after {
        border-radius: 19px;
    }

    .other-partners__card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .other-partners__badge {
        width: 100%;
        max-width: none;
    }

    .other-partners__logo-wrap {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
    }

    .other-partners__name {
        font-size: clamp(28px, 9vw, 38px);
    }

    .other-partners__description {
        min-height: auto;
        font-size: 13.5px;
    }

    .other-partners__actions {
        grid-template-columns: 1fr;
    }

    .other-partners__visit,
    .other-partners__code {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .other-partners *,
    .other-partners *::before,
    .other-partners *::after {
        animation: none !important;
        transition: none !important;
    }
}

.other-partners__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
    margin-top: 18px;
}

.other-partners__code {
    --copy-rgb: var(--primary-rgb);

    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 48px;
    padding: 7px 12px;
    border: 1px solid rgba(var(--copy-rgb), .24);
    border-radius: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        rgba(5, 10, 22, .42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 12px 28px rgba(0, 0, 0, .22);
    cursor: pointer;
    text-align: left;
    isolation: isolate;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.other-partners__code::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 20%, rgba(var(--copy-rgb), .18), transparent 36%),
        linear-gradient(90deg, rgba(var(--copy-rgb), .12), transparent 58%);
    opacity: .72;
    transition: opacity var(--transition);
}

.other-partners__code::after {
    content: "";
    position: absolute;
    top: -60%;
    bottom: -60%;
    left: -72%;
    z-index: -1;
    width: 42%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .20), transparent);
    transform: skewX(-18deg);
    transition: left .72s ease;
}

.other-partners__code:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--copy-rgb), .42);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .022)),
        rgba(5, 10, 22, .50);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .10),
        0 16px 34px rgba(0, 0, 0, .28),
        0 0 22px rgba(var(--copy-rgb), .10);
}

.other-partners__code:hover::after {
    left: 126%;
}

.other-partners__code:focus-visible {
    outline: 2px solid rgba(var(--copy-rgb), .78);
    outline-offset: 4px;
}

.other-partners__code:disabled {
    cursor: default;
    pointer-events: none;
}

.other-partners__code-kicker {
    display: block;
    grid-column: 1;
    color: rgba(220, 229, 248, .58);
    font-family: var(--font-tech);
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.other-partners__code-text {
    display: block;
    grid-column: 1;
    margin-top: 4px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.other-partners__code-icon {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--copy-rgb));
    background: rgba(var(--copy-rgb), .12);
    border: 1px solid rgba(var(--copy-rgb), .22);
    box-shadow: 0 0 18px rgba(var(--copy-rgb), .08);
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.other-partners__code-icon svg {
    width: 17px;
    height: 17px;
}

.other-partners__code:hover .other-partners__code-icon {
    transform: scale(1.04);
    background: rgba(var(--copy-rgb), .18);
    border-color: rgba(var(--copy-rgb), .36);
}

.other-partners__code.is-copied {
    --copy-rgb: var(--success-rgb);

    border-color: rgba(var(--success-rgb), .46);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .022)),
        rgba(var(--success-rgb), .10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .10),
        0 16px 34px rgba(0, 0, 0, .26),
        0 0 26px rgba(var(--success-rgb), .14);
}

.other-partners__code.is-copied .other-partners__code-text {
    color: rgb(var(--success-rgb));
}

.other-partners__code.is-copied .other-partners__code-icon {
    color: #061322;
    background: rgb(var(--success-rgb));
    border-color: rgba(var(--success-rgb), .72);
}

.other-partners__code.is-error {
    --copy-rgb: var(--danger-rgb);

    border-color: rgba(var(--danger-rgb), .46);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .022)),
        rgba(var(--danger-rgb), .10);
}

.other-partners__code.is-error .other-partners__code-text {
    color: rgb(var(--danger-rgb));
}

.other-partners__visit {
    position: relative;
    overflow: hidden;
    min-height: 48px;
    padding: 0 15px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #061322;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .32), transparent 30%),
        linear-gradient(135deg, var(--primary), #8d6cff);
    text-decoration: none;
    font-family: var(--font-tech);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        transform var(--transition),
        filter var(--transition),
        box-shadow var(--transition);
}

.other-partners__visit:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 16px 34px rgba(var(--primary-rgb), .18);
}

.other-partners__visit svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.other-partners__visit:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 560px) {
    .other-partners__actions {
        grid-template-columns: 1fr;
    }

    .other-partners__visit,
    .other-partners__code {
        width: 100%;
    }
}