/* ===== PROCESS SCENE ===== */

.process-scene {
    position: relative;
    padding: 8rem 24px;
    overflow: hidden;
}

/* спокойный технологичный фон */
.process-scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    160deg,
                    rgba(255,255,255,0.04),
                    transparent 40%
            );
    pointer-events: none;
}

/* линия процесса */
.process-track {
    position: relative;
}

.process-track::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* ===== TITLES ===== */

.process-title {
    font-size: var(--fs-h2);
    line-height: 1.1;
    margin-bottom: .5rem;
}

.process-tagline {
    font-size: var(--fs-body);
    color: var(--text-soft);
}

/* ===== NODE ===== */

.process-node {
    position: relative;
    padding-top: 2.5rem;
}

.node-index {
    display: inline-block;
    font-size: var(--fs-label);
    letter-spacing: var(--track-wide);
    color: var(--accent);
    margin-bottom: .75rem;
}

/* точка на линии */
.node-index::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(255,255,255,0.25);
}

/* заголовок шага */
.process-node h3 {
    font-size: var(--fs-h3);
    margin-bottom: .4rem;
}

/* описание */
.process-node p {
    font-size: var(--fs-body);
    color: var(--text-muted);
    max-width: 240px;
}

/* hover — еле заметный, инженерный */
.process-node:hover h3 {
    color: var(--text-main);
}

.process-node:hover .node-index {
    color: #fff;
}
