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 & Terms | Plutr Haus
Plutr Haus Logo

Privacy Policy & Terms of Service

Privacy First

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.

Third-Party Ads

Some apps may include third-party ads (e.g., Google AdMob). These services may use cookies or device identifiers to serve relevant ads. Plutr Haus does not access or store this data.

No Servers, No Analytics

We don’t operate servers, and we don’t collect analytics. All data stays on your device.

Scope

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

Terms of Service

By using any app developed by Plutr Haus LLC, you agree to the following terms:

  • Apps are provided "as is" with no warranties of any kind.
  • You are responsible for backing up any data stored on your device.
  • We are not liable for any loss of data, content, or productivity due to use or misuse of our apps.
  • You agree not to reverse engineer, decompile, or resell our apps or services.
  • Use of our apps must comply with all applicable local, state, and international laws.

Updates

We may update this policy occasionally. Changes will be reflected here with an updated effective date. Continued use of our apps means you accept any changes made.

Contact

Have questions or concerns? Hit us up:

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)'; }); });