.process__steps {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step {
    display: flex;
    gap: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 26px;
}

.step__num {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    color: #06121e;
    background: var(--brand-gradient);
}

.step__body h3 { font-size: 1.2rem; margin-bottom: 8px; }

.step__body p { color: var(--text-muted); margin: 0 0 12px; }

.step__note { font-size: 0.92rem; }

.step__callout {
    margin-top: 14px;
    padding: 16px 18px;
    background: rgba(34, 211, 238, 0.07);
    border: 1px solid var(--border);
    border-left: 4px solid transparent;
    border-image: var(--brand-gradient) 1;
    border-radius: 12px;
    color: var(--text);
    font-size: 0.97rem;
}

.step__callout strong { display: block; margin-bottom: 6px; }

.libation-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 700;
    color: var(--text);
}

.libation-link:hover { border-color: var(--cyan); }

.folder-tree {
    background: #0c0d18;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    overflow-x: auto;
    color: var(--cyan);
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 0 12px;
}

.process__cta { max-width: 760px; margin: 30px auto 0; padding: 0 24px; text-align: center; }
