-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
385 lines (331 loc) · 20.4 KB
/
Copy pathabout.html
File metadata and controls
385 lines (331 loc) · 20.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About FIRE Planner | Our Mission & Story</title>
<meta name="description" content="Learn about FIRE Planner's mission to help people achieve Financial Independence and Retire Early through free, accurate calculators and educational resources.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://fireplanner.org/about.html">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B0FS8F3KDN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B0FS8F3KDN');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2955475775322391"
crossorigin="anonymous"></script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="shortcut icon" href="/favicon.ico">
<!-- Prevent flash of wrong theme -->
<script>
(function(){
var K='fireplanner-theme',D=document.documentElement;
var t;try{t=localStorage.getItem(K)}catch(e){}
if(t!=='dark'&&t!=='light')t=window.matchMedia('(prefers-color-scheme:dark)').matches?'dark':'light';
D.setAttribute('data-theme',t);
window.toggleFPTheme=function(){
var c=D.getAttribute('data-theme')==='dark'?'light':'dark';
D.setAttribute('data-theme',c);
try{localStorage.setItem(K,c)}catch(e){}
};
})();
</script>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Work+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
.content-page {
max-width: 900px;
margin: 40px auto;
padding: 40px 20px;
line-height: 1.8;
}
.content-page h1 {
font-size: 2.8em;
margin-bottom: 20px;
color: var(--text-primary);
text-align: center;
}
.content-page h2 {
font-size: 2em;
margin-top: 50px;
margin-bottom: 20px;
color: var(--text-primary);
}
.content-page h3 {
font-size: 1.5em;
margin-top: 30px;
margin-bottom: 15px;
color: var(--text-primary);
}
.content-page p {
margin-bottom: 20px;
color: var(--text-secondary);
font-size: 1.1em;
}
.intro-text {
font-size: 1.3em;
color: var(--text-secondary);
text-align: center;
margin-bottom: 40px;
line-height: 1.6;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin: 40px 0;
}
.stat-box {
text-align: center;
padding: 30px 20px;
background: var(--bg-tertiary);
border-radius: 12px;
border: 2px solid var(--border);
}
.stat-number {
font-size: 3em;
font-weight: bold;
color: #ff6b35;
display: block;
margin-bottom: 10px;
}
.stat-label {
font-size: 1.1em;
color: var(--text-muted);
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin: 30px 0;
}
.value-card {
padding: 25px;
background: var(--bg-secondary);
border-left: 4px solid #ff6b35;
box-shadow: var(--shadow-sm);
}
.value-card h4 {
color: var(--text-primary);
margin-bottom: 10px;
font-size: 1.3em;
}
.value-card p {
margin-bottom: 0;
font-size: 1em;
}
.logo {
display: flex;
align-items: center;
}
@media (max-width: 768px) {
.logo img {
height: 80px !important;
}
.logo h1 {
font-size: 24px !important;
}
.content-page h1 {
font-size: 2em;
}
.intro-text {
font-size: 1.1em;
}
}
</style>
</head>
<body>
<!-- Header -->
<header class="site-header">
<div class="container">
<div class="header-content">
<div class="logo">
<a href="index.html" style="display: flex; align-items: center; text-decoration: none; gap: 14px;">
<img src="fire-logo.png" alt="FIRE Planner" style="height: 52px; width: auto;">
<div>
<h1>FIRE Planner</h1>
<p class="tagline">Your Path to Financial Independence</p>
</div>
</a>
</div>
<nav class="main-nav">
<a href="index.html#calculators">Calculators</a>
<a href="resources.html">Resources</a>
<a href="glossary.html">Glossary</a>
<a href="about.html">About</a>
<a href="https://www.instagram.com/fireplanner_org/" target="_blank" rel="noopener" class="nav-instagram" aria-label="Follow us on Instagram">
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>
</a>
<button type="button" class="theme-toggle" aria-label="Toggle dark mode" onclick="toggleFPTheme()"><span class="toggle-icon sun">☀</span><span class="toggle-icon moon">☾</span></button>
</nav>
</div>
</div>
</header>
<div class="content-page">
<h1>About FIRE Planner</h1>
<p class="intro-text">We're on a mission to make financial independence accessible to everyone through free, accurate calculators and educational resources.</p>
<h2>Our Story</h2>
<p>FIRE Planner was founded in 2024 with a simple goal: to provide accessible, professional-grade financial planning tools to anyone pursuing Financial Independence and early retirement. We believe that everyone deserves access to the same quality of financial planning tools that are typically reserved for those who can afford expensive financial advisors.</p>
<p>The FIRE (Financial Independence, Retire Early) movement has transformed the lives of thousands of people worldwide, but many struggle to find reliable, free tools to plan their journey. That's where we come in. We've built a comprehensive suite of calculators that help you understand compound interest, plan your retirement savings, compare investment strategies, and chart your path to financial freedom.</p>
<h2>What Makes Us Different</h2>
<div class="values-grid">
<div class="value-card">
<h4>🎯 100% Free Forever</h4>
<p>No paywalls, no premium tiers, no hidden fees. All our calculators are completely free to use, forever. We believe financial planning tools should be accessible to everyone, regardless of income level.</p>
</div>
<div class="value-card">
<h4>🔒 Privacy-Focused</h4>
<p>Your financial data never leaves your device. All calculations happen directly in your browser. We don't collect, store, or transmit any of your personal financial information.</p>
</div>
<div class="value-card">
<h4>📊 Professional-Grade Accuracy</h4>
<p>Our calculators use the same formulas employed by financial advisors and certified public accountants. We've tested and refined each calculator to ensure accurate, reliable results.</p>
</div>
<div class="value-card">
<h4>📱 Mobile-Optimized</h4>
<p>Plan your financial future from anywhere. Our calculators work seamlessly on desktop computers, tablets, and smartphones, giving you access to your financial planning tools wherever you are.</p>
</div>
<div class="value-card">
<h4>🎓 Educational Focus</h4>
<p>We don't just give you numbers—we help you understand them. Each calculator includes clear explanations, definitions, and educational resources to help you make informed financial decisions.</p>
</div>
<div class="value-card">
<h4>🔄 Constantly Improving</h4>
<p>We regularly update our calculators based on user feedback and changes in financial regulations. Your input helps us build better tools for the entire FIRE community.</p>
</div>
</div>
<h2>Our Impact</h2>
<div class="stats-grid">
<div class="stat-box">
<span class="stat-number">10</span>
<span class="stat-label">Free Calculators</span>
</div>
<div class="stat-box">
<span class="stat-number">45+</span>
<span class="stat-label">Glossary Terms</span>
</div>
<div class="stat-box">
<span class="stat-number">100%</span>
<span class="stat-label">Free to Use</span>
</div>
</div>
<h2>Our Calculators</h2>
<p>We offer a comprehensive suite of financial calculators designed specifically for FIRE enthusiasts:</p>
<h3>🔥 FIRE Calculator</h3>
<p>Our flagship tool helps you calculate when you can achieve Financial Independence based on your current savings, annual expenses, expected returns, and savings rate. It uses the widely-accepted 4% rule to determine your FIRE number and timeline.</p>
<h3>📈 Compound Interest Calculator</h3>
<p>Visualize how your investments can grow over time through the power of compound interest. See how regular contributions and reinvested earnings can accelerate your wealth building.</p>
<h3>🏢 401k Calculator</h3>
<p>Optimize your 401k contributions to maximize employer matching and calculate your retirement account growth over time. Understand how different contribution rates affect your long-term wealth.</p>
<h3>⚖️ Roth vs Traditional IRA Calculator</h3>
<p>Compare the tax advantages of Roth and Traditional IRA accounts based on your current tax bracket and expected retirement tax bracket. Make informed decisions about which retirement account is best for your situation.</p>
<h3>💰 Investment Fee Impact Calculator</h3>
<p>Discover how seemingly small investment fees can erode your returns over decades. Compare different fee structures and see why low-cost index funds are often the best choice for long-term investors.</p>
<h3>💳 Debt Payoff Calculator</h3>
<p>Create a strategic plan to become debt-free faster. Compare the debt snowball and debt avalanche methods to find the approach that works best for your situation.</p>
<h3>🎯 Savings Goal Calculator</h3>
<p>Plan how to reach specific financial goals like a house down payment, emergency fund, or dream vacation. Calculate exactly how much you need to save each month to reach your target.</p>
<h3>📅 Retirement Age Calculator</h3>
<p>Determine what age you can retire based on your current savings, expected returns, and desired retirement lifestyle. See how different variables affect your retirement timeline.</p>
<h2>Our Commitment to Education</h2>
<p>Financial literacy is the foundation of financial independence. That's why we go beyond just providing calculators. Our <a href="resources.html">Resources page</a> offers comprehensive guides on FIRE strategies, investment principles, and wealth-building techniques. Our <a href="glossary.html">Financial Glossary</a> defines over 45 key financial terms in plain English, helping you navigate the sometimes confusing world of personal finance.</p>
<p>We believe that understanding financial concepts is just as important as having access to calculation tools. When you understand how compound interest works, why fees matter, and how tax-advantaged accounts can accelerate your wealth building, you're empowered to make better financial decisions.</p>
<h2>Our Values</h2>
<h3>Transparency</h3>
<p>We believe in being upfront with our users. This website is supported by advertising through Google AdSense. We never let advertising influence our calculator results or educational content. Our recommendations are based solely on what we believe is best for your financial journey.</p>
<h3>Accuracy</h3>
<p>We take calculator accuracy seriously. Every formula is tested, verified, and based on established financial principles. We regularly review and update our calculators to ensure they reflect current best practices and regulations.</p>
<h3>Privacy</h3>
<p>Your financial information is sensitive, and we treat it with the respect it deserves. All calculator inputs are processed entirely in your browser—we never see, store, or transmit your financial data. You can use our tools with complete confidence that your privacy is protected.</p>
<h3>Community</h3>
<p>The FIRE community is built on sharing knowledge and supporting each other's financial journeys. We're proud to contribute to this community by providing free tools and resources that help everyone move closer to financial independence.</p>
<h2>The FIRE Movement</h2>
<p>The Financial Independence, Retire Early (FIRE) movement is about more than just early retirement—it's about gaining control of your time and having the freedom to live life on your terms. Whether you want to retire at 40, switch to a less stressful career, travel the world, or simply have the security of knowing you could walk away from your job if you wanted to, FIRE is about building enough wealth to make those choices possible.</p>
<p>FIRE isn't about deprivation or living in poverty. It's about being intentional with your spending, maximizing your savings rate, investing wisely, and building passive income streams. It's about understanding that every dollar you save and invest is buying you future freedom.</p>
<p>There are many paths to FIRE—Lean FIRE, Fat FIRE, Barista FIRE, Coast FIRE—and our calculators are designed to help you plan whichever path resonates with you. We don't believe there's one "right" way to achieve financial independence. Your path is unique to your circumstances, values, and goals.</p>
<h2>Looking Forward</h2>
<p>We're constantly working to improve FIRE Planner and add new features. Future plans include:</p>
<ul>
<li>Additional specialized calculators for Coast FIRE, Barista FIRE, and geographic arbitrage</li>
<li>Interactive financial planning scenarios and case studies</li>
<li>Expanded educational content and FIRE strategy guides</li>
<li>Community features to connect with other FIRE enthusiasts</li>
<li>Mobile app for on-the-go financial planning</li>
</ul>
<p>We're excited about the future of FIRE Planner and our role in the FIRE community. Whether you're just starting to learn about financial independence or you're years into your FIRE journey, we're here to provide the tools and resources you need to succeed.</p>
<h2>Get in Touch</h2>
<p>We love hearing from our users! Whether you have feedback on our calculators, suggestions for new features, questions about FIRE strategies, or just want to share your FIRE journey with us, we're here to listen.</p>
<p>Contact us at: <strong>fireplanner.contact@gmail.com</strong></p>
<p>Follow our Instagram for daily FIRE tips and motivation: <strong>@fireplanner_org</strong></p>
<h2>Thank You</h2>
<p>Thank you for trusting FIRE Planner to be part of your financial independence journey. Your support and feedback help us build better tools for the entire FIRE community. Together, we're making financial independence accessible to everyone.</p>
<p>Here's to your financial freedom! 🔥</p>
</div>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>FIRE Planner</h4>
<p>Free tools to help you achieve Financial Independence and Retire Early.</p>
</div>
<div class="footer-section">
<h4>Calculators</h4>
<ul>
<li><a href="fire-calculator.html">FIRE Calculator</a></li>
<li><a href="compound-interest.html">Compound Interest</a></li>
<li><a href="coast-fire-calculator.html">Coast FIRE</a></li>
<li><a href="401k-calculator.html">401k Calculator</a></li>
<li><a href="net-worth-calculator.html">Net Worth</a></li>
<li><a href="roth-vs-traditional.html">Roth vs Traditional</a></li>
<li><a href="debt-calculator.html">Debt Payoff</a></li>
<li><a href="fee-calculator.html">Investment Fees</a></li>
<li><a href="savings-goal-calculator.html">Savings Goal</a></li>
<li><a href="retirement-age-calculator.html">Retirement Age</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul>
<li><a href="resources.html">FIRE Resources</a></li>
<li><a href="fire-guide.html">FIRE Guide</a></li>
<li><a href="glossary.html">Glossary</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Legal</h4>
<ul>
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="terms-of-service.html">Terms of Service</a></li>
<li><a href="disclaimer.html">Disclaimer</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Follow Us</h4>
<ul>
<li>
<a href="https://www.instagram.com/fireplanner_org/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px;">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>
@fireplanner_org
</a>
</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 FIRE Planner. All calculators are for educational purposes. Consult a financial advisor for personalized advice.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>