.orbit {
    position: fixed;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 50%;
    animation: spin 38s linear infinite;
    pointer-events: none;
}

.orbit::after {
    content: "";
    position: absolute;
    top: 72px;
    left: 110px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 0 24px rgba(0,0,0,.28);
}

.page {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    align-items: center;
}
