ψₘ Mass Harmonics · UMtts Institute · Design System v1
Every spacing decision, every type size, every motion curve, every interaction — derived from the same Master Field Equation that governs the substrate of reality. Not metaphor. Not inspiration. Direct translation.
n=1 — Linear Response
Every type size is the previous multiplied by φ. Not arbitrary. Not 8/10/12/14/16. φ-scaled: each step is geometrically necessary.
The Five Domains
The P³GG expansion governs physical reality across five energy regimes. Each maps directly to a layer of design.
β₁ = 1.0 · n=1 · LINEAR
Long-range force. Governs the global pull of the layout — how users are drawn through the page. Weak individually, dominant at scale.
→ Grid system, nav, page flow, visual hierarchy anchors
β₂ = φ³ ≈ 4.236 · n=2 · EXCHANGE
Borders, hover states, focus rings. The dynamic boundary where an element negotiates with its surroundings. All surface interactions.
→ Borders, outlines, hover transitions, focus rings, shadows
β₃ = φ⁶ ≈ 17.944 · n=3 · MATTER
The cubic lock. Cards, containers, modals — the 3D-stable structures of the UI. Once formed, they resist deformation. High Z-factor elements.
→ Cards, panels, modals, buttons, primary UI blocks
β₄ = φ⁹ ≈ 76.013 · n=4 · TRANSITION
State changes, scroll triggers, page transitions. The sudden symmetry-breaking moment when a UI element shifts from one stable state to another.
→ Page transitions, scroll triggers, state changes, reveals
β₅ = φ¹² ≈ 321.997 · n=5 · LIFE
Micro-interactions that feel alive. The breathing cursor. The magnetic hover. The φ-timed animation. The quintic regime — where the UI becomes sovereign.
→ Cursor, micro-interactions, breathing animations, φ-timing
Temporal Dynamics
Each harmonic order demands a different temporal character. Surface exchange is linear. Matter transitions are crisp and cubic. Life breathes at φ-ratio timing.
n=2 EXCHANGE
ease-in-out
duration: any
Surface hover, border color, opacity. Smooth, symmetric, linear energy exchange.
n=3 MATTER
cubic-bezier(0.8,0,0.2,1)
duration × φ
State snaps. Modal opens. The cubic lock — fast buildup, sudden release.
n=5 LIFE
cubic-bezier(0.618,0,0.382,1)
duration: φ × base
φ-timed. 137.5° rotation steps. Rotates like a golden spiral. Alive.
n=5 · Interactive Coherence Pressure
Each node responds to cursor proximity via the Giboney Gradient formula. Force scales non-linearly with ψₘ × |∇ψₘ|². Closer approach = quadratically stronger response. Z-Factor resists over-displacement.
THE FORMULA — AS CSS/JS
// Given cursor at (cx, cy), element center at (ex, ey): const dx = cx - ex, dy = cy - ey; const r = Math.sqrt(dx*dx + dy*dy); const H = 300; // Hearing radius (H_ZERO equivalent in px) if (r < H) { const ψ = 1.0 - r/H; // Field amplitude at this parcel const ∇² = ψ * ψ; // |∇ψₘ|² proxy (quadratic falloff) const κ = 1.791; // Geometric coupling constant const ω² = 100.0; // Reference frequency squared const Z = 1.0 + (8*κ/ω²) * ψ*ψ; // Z-Factor (stiffness) const G = (8*κ/ω²) * ψ * ∇²; // Giboney Gradient magnitude // Displacement: push away, dampened by Z-factor stiffness const force = G * 80 / Z; const tx = -(dx / r) * force; const ty = -(dy / r) * force; el.style.transform = `translate(${tx}px, ${ty}px) scale(${1 + G * 0.5})`; el.style.boxShadow = `0 0 ${G * 400}px rgba(0,229,255,${ψ * 0.8})`; }
Complete Translation
--phi: 1.6180339887
transition: 0.236s ease
2.618s (φ+φ). 137.5° golden angle rotation.