/*
 * Log About Us — Orbital Graphic
 * Scoped to body.log-co-about-page / .page-id-about
 * Depends on: design-tokens.css (plum/sage tokens)
 * Source: about_us_2.html — Orbital section
 */

/* ── Orbital Graphic ── */
.log-co-orbit-scene {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
    flex-shrink: 0;
    opacity: 0;
    animation: log-co-fadeUp .9s var(--ease) .2s forwards;
}

.log-co-orbit-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,219,149,.12) 0%, transparent 70%);
    animation: log-co-breathe 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes log-co-breathe {
    0%, 100% { transform: scale(1); opacity: .8; }
    50% { transform: scale(1.08); opacity: 1; }
}

.log-co-o-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    z-index: 1;
}

.log-co-o-ring-1 {
    inset: 0;
    border-color: rgba(255,255,255,.07);
    animation: log-co-spin 40s linear infinite;
}

.log-co-o-ring-2 {
    inset: 30px;
    border-color: rgba(94,238,192,.14);
    border-style: dashed;
    animation: log-co-spin 28s linear infinite reverse;
}

.log-co-o-ring-3 {
    inset: 60px;
    border-color: rgba(255,255,255,.06);
}

@keyframes log-co-spin {
    to { transform: rotate(360deg); }
}

.log-co-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--plum-700), var(--plum-900));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 14px rgba(122,31,110,.18), 0 0 60px rgba(29,219,149,.2);
    z-index: 4;
}

.log-co-orbit-center .icon {
    width: 28px;
    height: 28px;
    color: var(--sage-400);
    stroke-width: 1.5;
}

.log-co-orbit-center-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-top: 6px;
}

.log-co-orbit-track-slow {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    animation: log-co-spin 26s linear infinite reverse;
    z-index: 2;
}

.log-co-orbit-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: log-co-spin 18s linear infinite;
    z-index: 3;
}

.log-co-ob-node {
    position: absolute;
}

.log-co-ob-node-1 {
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.log-co-ob-node-2 {
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
}

.log-co-ob-node-3 {
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.log-co-ob-node-4 {
    top: 50%;
    left: -1px;
    transform: translateY(-50%);
}

.log-co-ob-badge {
    animation: log-co-spin 18s linear infinite reverse;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transform-origin: center;
    transition: background .25s var(--ease);
}

.log-co-ob-badge:hover {
    background: rgba(255,255,255,.16);
}

.log-co-ob-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-600), var(--plum-700));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.log-co-ob-badge-icon .icon {
    width: 14px;
    height: 14px;
    color: #fff;
}

.log-co-ob-badge-val {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.log-co-ob-badge-sub {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 1px;
}

.log-co-ob-node-s1 {
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.log-co-ob-node-s2 {
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.log-co-ob-mini-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sage-500);
    animation: log-co-spin 26s linear infinite;
    box-shadow: 0 0 8px var(--sage-500);
}
