.telemetry-stack {
    position: absolute;
    left: -28px;
    bottom: 52px;
    width: 138px;
    padding: 13px 14px;
    border: 1px solid rgba(180, 92, 255, .3);
    background: rgba(18, 8, 8, .72);
    backdrop-filter: blur(12px);
    font: 8px var(--mono);
    letter-spacing: .08em;
    text-transform: uppercase;
    animation: telemetry-float 5s ease-in-out infinite
}

.telemetry-stack div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--line)
}

.telemetry-stack div:last-child {
    border-bottom: 0
}

.telemetry-stack span {
    color: #6b5a58
}

.telemetry-stack strong {
    color: var(--text);
    font-size: 8px;
    font-weight: 400;
    white-space: nowrap
}

.telemetry-stack strong i {
    display: inline-block;
    width: 4px;
    height: 10px;
    margin-left: 2px;
    background: var(--lime)
}

.telemetry-stack strong i.dim {
    opacity: .2
}

.scan-line {
    position: absolute;
    top: 8%;
    right: 3%;
    width: 1px;
    height: 240px;
    background: linear-gradient(transparent, var(--lime), transparent);
    opacity: .5;
    animation: scan-line 4.5s ease-in-out infinite
}

.scan-line:before {
    content: 'SCAN / 04';
    position: absolute;
    top: 50%;
    left: 9px;
    white-space: nowrap;
    color: var(--lime);
    font: 8px var(--mono);
    letter-spacing: .12em;
    writing-mode: vertical-rl
}

@keyframes telemetry-float {
    50% {
        transform: translateY(-10px)
    }
}

@keyframes scan-line {
    50% {
        transform: translateY(35px);
        opacity: .2
    }
}

@media(max-width:760px) {
    .telemetry-stack {
        left: -8px;
        bottom: 28px;
        transform: scale(.85);
        transform-origin: left bottom
    }

    .scan-line {
        right: -2%;
        height: 170px
    }
}