Vellum Legal.

Documentation regarding our terms of service, privacy policies, data handling, and community standards.

Terms of Service

Effective as of March 2026

Privacy Policy

Minimal retention. Maximum privacy.

Community Standards

Fostering a respectful environment.

document.addEventListener('DOMContentLoaded', () => { const sections = document.querySelectorAll('main section'); const navLinks = document.querySelectorAll('.sidebar-link'); const observerOptions = { root: null, rootMargin: '-100px 0px -60% 0px', threshold: 0 }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { navLinks.forEach(link => link.classList.remove('active')); const activeId = entry.target.id; const activeLink = document.querySelector(`.sidebar-link[href="#${activeId}"]`); if (activeLink) { activeLink.classList.add('active'); } } }); }, observerOptions); sections.forEach(section => { observer.observe(section); }); });