Plutr Haus | Meaningful Solutions
Plutr Haus Logo
Crafting Meaningful Solutions

Plutr Haus creates user-focused solutions that inspire growth, simplicity, and impact in everyday life. We develop tools that are intuitive, purposeful, and beautifully designed.

Plutr Haus | Applications
Plutr Haus Logo

Our Applications

Thoughtfully designed tools for meaningful everyday experiences

GoldenIQ App

GoldenIQ

AVAILABLE NOW

An all-in-one retirement solution with calculators and Social Security tools. Designed to be simple and secure for your retirement planning needs.

Download on the App Store

Key Features

Retirement Calculators
Social Security Tools
Secure & Private
Dottly

Dottly.

IN DEVELOPMENT

A privacy-focused journaling and gratitude app. Simple, distraction-free space to reflect, track your mood, and practice gratitude.

Key Features

Privacy-First Design
Mood Tracking
Gratitude Journaling
Clean Interface
document.addEventListener('DOMContentLoaded', function() { // Animation for app cards when they come into view const appCards = document.querySelectorAll('.app-card'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.style.animation = 'fadeIn 0.7s ease-out forwards'; observer.unobserve(entry.target); } }); }, { threshold: 0.1 }); appCards.forEach(card => { observer.observe(card); }); });

Contact

Have a question, idea, or just want to say hi?
We’d love to hear from you.
Email: [email protected]We do our best to respond within 1–2 business days.

Privacy Policy | Plutr Haus
Plutr Haus Logo

Privacy Policy

Effective Date: June 16, 2025

Plutr Haus LLC is committed to protecting your privacy. We do not collect, store, or share any personal information from users of our apps, including GoldenIQ.

Some of our apps may include third-party advertisements (such as Google AdMob or similar services). These third parties may use cookies or device identifiers to show relevant ads. Plutr Haus LLC does not access, collect, or store any of this data.

We do not operate servers or collect analytics. All app data remains on your device and under your control.

This privacy policy applies to all apps published by Plutr Haus LLC, including GoldenIQ.

For any questions or concerns, please contact us at:

[email protected]
Finance in 5 Podcast

Finance in 5

Quick financial insights in just 5 minutes

Matt - Podcast Host
Matt
Founder of Plutr Haus

Host of Finance in 5 Podcast

Finance in 5 is a no-fluff personal finance podcast hosted by Matt, founder of Plutr Haus. Each episode delivers clear, relatable money insights in a short, punchy format—perfect for anyone who wants to get smarter with their finances without sitting through a lecture. From credit cards to budgeting, Matt breaks it all down in plain English.

Short & Punchy

Quick, digestible episodes that fit into your busy schedule

Plain English

No confusing jargon - just clear, relatable financial advice

Real Topics

From credit cards to budgeting - practical everyday finance

// Enhanced animations for elements when they come into view document.addEventListener('DOMContentLoaded', function() { const elements = document.querySelectorAll('.feature, .btn, .host-image-container'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.style.opacity = 1; entry.target.style.transform = 'translateY(0)'; } }); }, { threshold: 0.1 }); elements.forEach(el => { el.style.opacity = 0; el.style.transform = 'translateY(20px)'; el.style.transition = 'opacity 0.6s ease, transform 0.6s ease'; observer.observe(el); }); // Add subtle glow effect to host image on hover const hostImage = document.querySelector('.host-image-container'); hostImage.addEventListener('mouseenter', () => { hostImage.style.boxShadow = '0 15px 40px rgba(100, 100, 100, 0.5)'; hostImage.style.borderColor = 'rgba(180, 180, 180, 0.7)'; }); hostImage.addEventListener('mouseleave', () => { hostImage.style.boxShadow = '0 15px 40px rgba(0, 0, 0, 0.5)'; hostImage.style.borderColor = 'rgba(120, 120, 120, 0.5)'; }); });