/**
 * VoxelMarket — Support Slider
 * Version: 1.4.0
 * Updated: 2026-07-22
 */

:root {
    --vm-support-red: #c90818;
    --vm-support-red-bright: #ec1729;
    --vm-support-bg: #090a0b;
    --vm-support-panel: #151517;
    --vm-support-white: #f7f7f5;
    --vm-support-muted: #8a8a8d;
    --vm-support-line: rgba(255, 255, 255, .14);
}

.vm-support,
.vm-support * {
    box-sizing: border-box;
}

.vm-support {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    margin: -1px 0 0;
    color: var(--vm-support-white);
    background:
        radial-gradient(circle at 68% 52%, rgba(118, 8, 18, .10), transparent 25%),
        radial-gradient(circle at 5% 20%, rgba(255, 255, 255, .025), transparent 27%),
        linear-gradient(118deg, #0b0c0d 0%, #08090a 62%, #0b0b0c 100%);
    clip-path: polygon(0 18px, 100% 0, 100% 100%, 0 100%);
    font-family: "Montserrat", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.vm-support::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, #000, transparent 38%, transparent 72%, #000);
}

.vm-support::after {
    position: absolute;
    z-index: -1;
    right: -110px;
    top: 34%;
    width: 270px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 38px rgba(255, 255, 255, .015),
        0 0 0 76px rgba(255, 255, 255, .012);
    pointer-events: none;
}

.vm-support button,
.vm-support a {
    -webkit-tap-highlight-color: transparent;
}

.vm-support button {
    font: inherit;
}

.vm-support__inner {
    position: relative;
    width: min(100%, 1240px);
    margin-inline: auto;
    padding: 58px clamp(28px, 5vw, 72px) 34px;
}

.vm-support__ghost {
    position: absolute;
    left: -19px;
    top: 170px;
    color: transparent;
    opacity: .55;
    font-size: clamp(86px, 12vw, 170px);
    font-weight: 300;
    line-height: .8;
    letter-spacing: -.08em;
    writing-mode: vertical-rl;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .035);
    pointer-events: none;
}

.vm-support__circuit {
    position: absolute;
    right: 6%;
    top: 86px;
    width: 116px;
    height: 64px;
    opacity: .62;
    pointer-events: none;
    background:
        radial-gradient(circle, var(--vm-support-red) 0 2px, transparent 2.5px) 4px 46px / 8px 8px no-repeat,
        radial-gradient(circle, rgba(255, 255, 255, .35) 0 2px, transparent 2.5px) 66px 14px / 8px 8px no-repeat,
        linear-gradient(138deg, transparent 0 37%, rgba(201, 8, 24, .65) 38% 39%, transparent 40%) 0 0 / 84px 56px no-repeat,
        linear-gradient(90deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .14)) 65px 17px / 45px 1px no-repeat;
}

.vm-support__circuit::after {
    position: absolute;
    right: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(201, 8, 24, .72);
    content: "";
}

.vm-support__toolbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 42px;
}

.vm-support__kicker,
.vm-support__counter {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vm-support__kicker span,
.vm-support__counter b {
    color: var(--vm-support-red-bright);
    font-weight: 500;
}

.vm-support__kicker i,
.vm-support__counter i {
    color: rgba(255, 255, 255, .32);
    font-style: normal;
}

.vm-support__kicker b,
.vm-support__counter span {
    color: rgba(255, 255, 255, .58);
    font-weight: 400;
}

.vm-support__progress {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vm-support__progress span {
    display: block;
    width: 34px;
    height: 2px;
    background: rgba(255, 255, 255, .22);
    transition: width .35s ease, background-color .35s ease;
}

.vm-support__progress span.is-active {
    width: 46px;
    background: var(--vm-support-red-bright);
}

.vm-support__toolbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.vm-support__counter {
    margin-right: 8px;
    gap: 8px;
}

.vm-support__arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .015);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.vm-support__arrow:hover,
.vm-support__arrow:focus-visible {
    color: #fff;
    background: rgba(201, 8, 24, .12);
    border-color: rgba(236, 23, 41, .72);
    outline: none;
}

.vm-support__arrow svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.vm-support__stage {
    position: relative;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) 210px;
    align-items: center;
    gap: clamp(22px, 4vw, 58px);
    min-height: 300px;
    margin-top: 22px;
}

.vm-support__rail {
    position: relative;
    align-self: stretch;
    min-width: 0;
}

.vm-support__rail-item {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(-50%) translateX(-12px);
    transition: opacity .3s ease, transform .3s ease;
}

.vm-support__rail-item.is-active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.vm-support__rail-item span {
    color: var(--vm-support-red-bright);
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.04em;
}

.vm-support__rail-item small {
    color: var(--vm-support-red);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vm-support__rail-line {
    position: absolute;
    left: 22px;
    top: calc(50% + 60px);
    width: 1px;
    height: 74px;
    background: linear-gradient(var(--vm-support-red), rgba(201, 8, 24, .22));
}

.vm-support__rail-line::before,
.vm-support__rail-line b {
    position: absolute;
    left: 50%;
    width: 7px;
    height: 7px;
    content: "";
    transform: translateX(-50%);
}

.vm-support__rail-line::before {
    top: -3px;
    border-radius: 50%;
    background: var(--vm-support-red-bright);
    box-shadow: 0 0 14px rgba(236, 23, 41, .55);
}

.vm-support__rail-line b {
    bottom: -3px;
    border: 1px solid var(--vm-support-red);
}

.vm-support__viewport {
    position: relative;
    min-width: 0;
}

.vm-support__slide {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    min-height: 250px;
    animation: vm-support-in .42s cubic-bezier(.2, .72, .2, 1) both;
}

.vm-support__slide[hidden] {
    display: none;
}

@keyframes vm-support-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vm-support__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.vm-support__eyebrow {
    margin: 0 0 12px;
    color: var(--vm-support-red);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vm-support__copy h2 {
    max-width: 500px;
    margin: 0;
    color: var(--vm-support-white);
    font-size: clamp(28px, 3.1vw, 46px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -.035em;
}

.vm-support__copy h2 em {
    color: var(--vm-support-red-bright);
    font-style: normal;
}

.vm-support__description {
    margin: 14px 0 0;
    color: var(--vm-support-muted);
    font-size: 14px;
    line-height: 1.55;
}

.vm-support__meta {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 150px;
    align-items: center;
    column-gap: 12px;
    min-width: 0;
    margin-top: 28px;
    color: rgba(255, 255, 255, .76);
}

.vm-support__meta-icon {
    display: grid;
    place-items: center;
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 38px;
    margin: 0;
}

.vm-support__meta-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.1;
}

.vm-support__meta-text {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 7px;
}

.vm-support__meta-value {
    display: block;
    overflow: hidden;
    max-width: 100%;
    font-size: 11px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vm-support__meta-note {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 7px;
}

.vm-support__meta-note > i {
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin: 0;
    border-radius: 50%;
    background: var(--vm-support-red-bright);
    box-shadow: 0 0 10px rgba(236, 23, 41, .45);
}

.vm-support__meta-note small {
    color: rgba(255, 255, 255, .56);
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vm-support__orbit {
    position: relative;
    grid-column: 3;
    grid-row: 1;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
}

.vm-support__orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    pointer-events: none;
}

.vm-support__orbit-ring::before,
.vm-support__orbit-ring::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.vm-support__orbit-ring::before {
    right: -3px;
    bottom: 26%;
    width: 6px;
    height: 6px;
    background: var(--vm-support-red-bright);
    box-shadow: 0 0 12px rgba(236, 23, 41, .6);
}

.vm-support__orbit-ring::after {
    left: 17%;
    top: -4px;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, .54);
}

.vm-support__orbit-ring--one {
    width: 144px;
    height: 144px;
    clip-path: polygon(0 0, 66% 0, 66% 35%, 100% 35%, 100% 100%, 0 100%);
    transform: rotate(15deg);
}

.vm-support__orbit-ring--two {
    width: 96px;
    height: 96px;
    opacity: .55;
    clip-path: polygon(0 18%, 52% 18%, 52% 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(-24deg);
}

.vm-support__cta {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 26%, rgba(255, 255, 255, .24), transparent 23%),
        linear-gradient(145deg, #ed1a2c, #a80010);
    box-shadow: 0 12px 28px rgba(180, 0, 16, .28), inset 0 0 18px rgba(255, 255, 255, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.vm-support__cta:hover,
.vm-support__cta:focus-visible {
    color: #fff;
    outline: none;
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 16px 34px rgba(210, 0, 20, .42), inset 0 0 18px rgba(255, 255, 255, .12);
}

.vm-support__cta svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
}

.vm-support__previews {
    position: relative;
    width: 100%;
    min-width: 0;
}

.vm-support__preview-wrap {
    position: relative;
    width: 100%;
}

.vm-support__preview-wrap[hidden] {
    display: none;
}

.vm-support__preview-tail {
    position: absolute;
    z-index: 0;
    right: -29px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 54px;
    height: calc(100% - 40px);
    padding-right: 8px;
    color: rgba(255, 255, 255, .34);
    background: #111214;
    border: 1px solid rgba(255, 255, 255, .09);
    font-size: 11px;
}

.vm-support__preview {
    position: relative;
    z-index: 1;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 214px;
    padding: 26px 24px 22px;
    color: rgba(255, 255, 255, .82);
    text-align: left;
    background:
        linear-gradient(135deg, rgba(201, 8, 24, .10), transparent 44%),
        linear-gradient(145deg, #1b1b1d, #111214);
    border: 1px solid rgba(227, 25, 43, .48);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
    cursor: pointer;
    text-transform: none;
    animation: vm-support-preview .42s ease both;
}

@keyframes vm-support-preview {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.vm-support__preview::before {
    position: absolute;
    left: -13px;
    top: 45%;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(227, 25, 43, .55);
    border-radius: 50%;
    background: var(--vm-support-bg);
    content: "";
}

.vm-support__preview::after {
    position: absolute;
    right: -34%;
    bottom: -17%;
    width: 136px;
    height: 136px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 22px rgba(255, 255, 255, .018);
}

.vm-support__preview small {
    position: relative;
    z-index: 2;
    color: var(--vm-support-red);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vm-support__preview strong {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
}

.vm-support__preview > span {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.vm-support__preview > i {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 18px;
    color: var(--vm-support-red-bright);
}

.vm-support__preview > i svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.1;
    transform: rotate(-38deg);
}

.vm-support__preview:focus-visible {
    outline: 2px solid var(--vm-support-red-bright);
    outline-offset: 4px;
}

.vm-support__topics {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--vm-count, 4), minmax(0, 1fr));
    margin-top: 22px;
    border-top: 1px solid var(--vm-support-line);
}

.vm-support__topics::before {
    position: absolute;
    left: calc((100% / var(--vm-count, 4)) * var(--vm-active, 0));
    top: -2px;
    width: 33px;
    height: 3px;
    background: var(--vm-support-red);
    content: "";
    transition: left .35s ease;
}

.vm-support__topic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    min-height: 68px;
    padding: 14px 12px 4px;
    color: rgba(255, 255, 255, .35);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-transform: none;
    transition: color .25s ease;
}

.vm-support__topic + .vm-support__topic::before {
    position: absolute;
    left: 0;
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, .10);
    content: "";
}

.vm-support__topic:hover,
.vm-support__topic:focus-visible,
.vm-support__topic.is-active {
    color: rgba(255, 255, 255, .82);
    outline: none;
}

.vm-support__topic.is-active {
    color: var(--vm-support-red-bright);
}

.vm-support__topic-icon {
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
}

.vm-support__topic-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}

.vm-support__topic b {
    color: inherit;
    font-size: 11px;
    font-weight: 400;
}

.vm-support__topic > span:last-child {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vm-support .screen-reader-text {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 767px) {
    .vm-support {
        --vm-support-bg: #0f1011;
        --vm-support-panel: #17181a;
        clip-path: polygon(0 22px, 100% 0, 100% 100%, 0 100%);
        background:
            radial-gradient(circle at 68% 54%, rgba(118, 8, 18, .025), transparent 25%),
            radial-gradient(circle at 5% 20%, rgba(255, 255, 255, .015), transparent 27%),
            linear-gradient(118deg, #101112 0%, #0f1011 62%, #101011 100%);
    }

    .vm-support::before {
        opacity: .12;
    }

    .vm-support::after {
        right: -118px;
        top: 38%;
        opacity: .21;
    }

    .vm-support__inner {
        padding: 31px 20px 8px;
    }

    .vm-support__ghost {
        left: -29px;
        top: 72px;
        font-size: 90px;
        opacity: .18;
    }

    .vm-support__circuit {
        right: 2px;
        top: 55px;
        opacity: .28;
        transform: scale(.66);
        transform-origin: top right;
    }

    .vm-support__toolbar {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 34px;
    }

    .vm-support__kicker,
    .vm-support__counter {
        gap: 7px;
        font-size: 8px;
        font-weight: 500;
        letter-spacing: .12em;
    }

    .vm-support__progress {
        position: absolute;
        left: 46%;
        gap: 5px;
        transform: translateX(-50%);
    }

    .vm-support__progress span {
        width: 10px;
        height: 1px;
        background: rgba(255, 255, 255, .17);
    }

    .vm-support__progress span.is-active {
        width: 12px;
        background: rgba(236, 23, 41, .82);
    }

    .vm-support__toolbar-nav {
        gap: 4px;
        margin-right: 12px;
    }

    .vm-support__counter {
        margin-right: 0;
    }

    .vm-support__arrow {
        width: 22px;
        height: 22px;
        color: rgba(255, 255, 255, .58);
        background: rgba(255, 255, 255, .008);
        border-color: rgba(255, 255, 255, .14);
    }

    .vm-support__arrow svg {
        width: 13px;
        stroke-width: 1.2;
    }

    .vm-support__stage {
        grid-template-columns: 64px minmax(0, 1fr) 46px;
        gap: 10px;
        min-height: 194px;
        margin-top: 15px;
    }

    .vm-support__viewport::before {
        position: absolute;
        z-index: 4;
        left: -11px;
        top: 28px;
        width: 11px;
        height: 11px;
        content: "";
        pointer-events: none;
        opacity: .28;
        background:
            linear-gradient(rgba(255, 255, 255, .62), rgba(255, 255, 255, .62)) center / 1px 11px no-repeat,
            linear-gradient(90deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .62)) center / 11px 1px no-repeat;
    }

    .vm-support__rail-item {
        top: 31.5%;
    }

    .vm-support__rail-item span {
        color: rgba(236, 23, 41, .72);
        font-size: 23px;
        font-weight: 300;
        letter-spacing: -.055em;
    }

    .vm-support__rail-item small {
        max-width: 46px;
        overflow: hidden;
        color: rgba(201, 8, 24, .68);
        font-size: 6.5px;
        font-weight: 500;
        letter-spacing: .04em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vm-support__rail-line {
        left: 12px;
        top: calc(31.5% + 28px);
        height: 52px;
        background: linear-gradient(rgba(201, 8, 24, .72), rgba(201, 8, 24, .16));
    }

    .vm-support__rail-line::before,
    .vm-support__rail-line b {
        width: 4px;
        height: 4px;
    }

    .vm-support__rail-line::before {
        box-shadow: 0 0 8px rgba(236, 23, 41, .28);
    }

    .vm-support__rail-line b {
        border-color: rgba(201, 8, 24, .68);
    }

    .vm-support__slide {
        display: block;
        min-height: 190px;
    }

    .vm-support__copy {
        min-height: 190px;
        padding: 51px 0 0;
    }

    .vm-support__eyebrow {
        margin-bottom: 6px;
        color: rgba(201, 8, 24, .68);
        font-size: 7px;
        font-weight: 600;
        letter-spacing: .11em;
    }

    .vm-support__copy h2 {
        color: rgba(247, 247, 245, .95);
        font-size: clamp(18px, 4.9vw, 20px);
        font-weight: 600;
        line-height: 1.08;
    }

    .vm-support__description {
        max-width: 190px;
        margin-top: 6px;
        color: rgba(255, 255, 255, .43);
        font-size: 9px;
        font-weight: 400;
        line-height: 1.45;
    }

    .vm-support__meta {
        position: relative;
        grid-template-columns: 32px minmax(0, 1fr) 70px;
        column-gap: 6px;
        width: 100%;
        max-width: none;
        margin-top: -10px;
    }

    .vm-support__meta-icon {
        width: 32px;
        height: 32px;
        margin: 0;
        color: rgba(255, 255, 255, .50);
    }

    .vm-support__meta-icon svg {
        width: 36px;
        height: 36px;
        stroke-width: .85;
        transform: translateX(-5px);
    }

    .vm-support__meta-text {
        gap: 4px;
    }

    .vm-support__meta-note {
        gap: 4px;
    }

    .vm-support__meta-value {
        max-width: 100%;
        color: rgba(255, 255, 255, .56);
        font-size: 8.5px;
        font-weight: 400;
        line-height: 1.25;
        letter-spacing: -.015em;
        text-overflow: clip;
        overflow: visible;
    }

    .vm-support__meta-note > i {
        flex-basis: 3px;
        width: 3px;
        height: 3px;
        margin: 0;
        background: rgba(236, 23, 41, .82);
        box-shadow: 0 0 7px rgba(236, 23, 41, .30);
    }

    .vm-support__meta-note small {
        color: rgba(255, 255, 255, .42);
        font-size: 6px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: .04em;
    }

    .vm-support__orbit {
        position: relative;
        grid-column: 3;
        grid-row: 1;
        width: 70px;
        height: 70px;
        transform: translate(-21px, -9px);
    }

    .vm-support__orbit-ring {
        border-color: rgba(255, 255, 255, .17);
    }

    .vm-support__orbit-ring--one {
        width: 72px;
        height: 72px;
    }

    .vm-support__orbit-ring--two {
        width: 48px;
        height: 48px;
        opacity: .48;
    }

    .vm-support__orbit-ring::before {
        width: 3px;
        height: 3px;
        box-shadow: 0 0 8px rgba(236, 23, 41, .38);
    }

    .vm-support__orbit-ring::after {
        width: 4px;
        height: 4px;
        border-color: rgba(255, 255, 255, .34);
    }

    .vm-support__cta {
        width: 26px;
        height: 26px;
        border-color: rgba(255, 255, 255, .12);
        background:
            radial-gradient(circle at 34% 25%, rgba(255, 255, 255, .18), transparent 24%),
            linear-gradient(145deg, #df1728, #a90010);
        box-shadow: 0 7px 16px rgba(180, 0, 16, .25), inset 0 0 10px rgba(255, 255, 255, .055);
    }

    .vm-support__cta svg {
        width: 14px;
        stroke-width: 1.25;
    }

    .vm-support__previews {
        transform: translate(-4px, 18px);
    }

    .vm-support__preview {
        min-height: 92px;
        padding: 12px 8px 10px;
        background:
            linear-gradient(135deg, rgba(201, 8, 24, .014), transparent 46%),
            linear-gradient(145deg, #1c1d1f, #141517);
        border-color: rgba(255, 255, 255, .11);
        clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    }

    .vm-support__preview-tail {
        right: -17px;
        top: 10px;
        width: 28px;
        height: calc(100% - 20px);
        padding-right: 3px;
        color: rgba(255, 255, 255, .23);
        background: #141517;
        border-color: rgba(255, 255, 255, .065);
        font-size: 6px;
        font-weight: 400;
    }

    .vm-support__preview::before {
        left: -8px;
        width: 16px;
        height: 16px;
        border-color: rgba(201, 8, 24, .25);
    }

    .vm-support__preview::after {
        right: -58%;
        bottom: -18%;
        width: 70px;
        height: 70px;
        border-color: rgba(255, 255, 255, .11);
        box-shadow: 0 0 0 12px rgba(255, 255, 255, .010);
    }

    .vm-support__preview small {
        color: rgba(201, 8, 24, .50);
        font-size: 0px;
        font-weight: 500;
        letter-spacing: .01em;
    }

    .vm-support__preview strong {
        margin-top: 7px;
        color: rgba(255, 255, 255, .62);
        font-size: 13px;
        font-weight: 300;
    }

    .vm-support__preview > span {
        margin-top: 5px;
        color: rgba(255, 255, 255, .38);
        font-size: 6px;
        font-weight: 500;
    }

    .vm-support__preview > i {
        right: 6px;
        bottom: 7px;
        color: rgba(236, 23, 41, .74);
    }

    .vm-support__preview > i svg {
        width: 18px;
    }

    .vm-support__topics {
        margin-top: 8px;
        border-top-color: rgba(255, 255, 255, .095);
    }

    .vm-support__topics::before {
        display: none;
    }

    .vm-support__topic {
        justify-content: flex-start;
        gap: 4px;
        min-height: 40px;
        padding: 7px 4px 0 2px;
        color: rgba(255, 255, 255, .28);
        font-weight: 400;
    }

    .vm-support__topic::after {
        position: absolute;
        left: 16px;
        top: -2px;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .17);
        content: "";
        transition: background-color .25s ease, box-shadow .25s ease;
    }

    .vm-support__topic.is-active::after {
        background: rgba(236, 23, 41, .82);
        box-shadow: 0 0 7px rgba(236, 23, 41, .30);
    }

    .vm-support__topic + .vm-support__topic::before {
        height: 18px;
        background: rgba(255, 255, 255, .055);
    }

    .vm-support__topic:hover,
    .vm-support__topic:focus-visible {
        color: rgba(255, 255, 255, .52);
    }

    .vm-support__topic.is-active {
        color: rgba(236, 23, 41, .72);
    }

    .vm-support__topic-icon {
        flex-basis: 16px;
        width: 16px;
        height: 16px;
    }

    .vm-support__topic-icon svg {
        width: 15px;
        height: 15px;
        stroke-width: .95;
    }

    .vm-support__topic b,
    .vm-support__topic > span:last-child {
        font-size: 8.5px;
        font-weight: 400;
    }
}

@media (max-width: 379px) {
    .vm-support__inner {
        padding-inline: 15px;
    }

    .vm-support__stage {
        grid-template-columns: 58px minmax(0, 1fr) 44px;
        gap: 7px;
    }

    .vm-support__copy {
        padding-right: 0;
    }

    .vm-support__copy h2 {
        font-size: 14.5px;
    }

    .vm-support__description {
        max-width: 150px;
    }

    .vm-support__meta {
        grid-template-columns: 30px minmax(0, 1fr) 62px;
        column-gap: 4px;
    }

    .vm-support__orbit {
        width: 62px;
        height: 62px;
        transform: translate(-16px, -8px);
    }

    .vm-support__orbit-ring--one {
        width: 64px;
        height: 64px;
    }

    .vm-support__orbit-ring--two {
        width: 44px;
        height: 44px;
    }

    .vm-support__cta {
        width: 24px;
        height: 24px;
    }

    .vm-support__topic {
        padding-left: 2px;
    }

    .vm-support__topic b,
    .vm-support__topic > span:last-child {
        font-size: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vm-support *,
    .vm-support *::before,
    .vm-support *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}