/* landing-progress.css — Era progress indicator styles */

/* ============== PROGRESS INDICATOR ============== */

#era-progress {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    transition: opacity 0.5s ease;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.progress-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(217, 119, 87, 0.6);
}

.progress-dot span {
    position: absolute;
    right: calc(100% + 0.75rem);
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.progress-dot.active span {
    opacity: 1;
    color: var(--text);
}
