.global {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.global__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.global__map {
    aspect-ratio: 16 / 10;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global__map-placeholder {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    line-height: 1.8;
}
.global__map-placeholder span {
    font-size: 0.6rem;
    opacity: 0.6;
}

.global__map-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.global__dot {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
.global__dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--red);
    border-radius: 50%;
    opacity: 0;
    animation: dotRing 2s ease-in-out infinite;
}

.global__dot:nth-child(1) { top: 35%; left: 15%; animation-delay: 0s; }
.global__dot:nth-child(2) { top: 40%; left: 25%; animation-delay: 0.3s; }
.global__dot:nth-child(3) { top: 30%; left: 48%; animation-delay: 0.6s; }
.global__dot:nth-child(4) { top: 50%; left: 70%; animation-delay: 0.9s; }
.global__dot:nth-child(5) { top: 55%; left: 80%; animation-delay: 1.2s; }
.global__dot:nth-child(6) { top: 65%; left: 35%; animation-delay: 0.4s; }
.global__dot:nth-child(7) { top: 70%; left: 55%; animation-delay: 0.7s; }

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}
@keyframes dotRing {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0; transform: scale(2.5); }
}

.global__markets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.global__market {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
}
.global__market::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .global__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .global__markets { grid-template-columns: 1fr; }
}
