-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
400 lines (384 loc) · 33.4 KB
/
Copy pathindex.html
File metadata and controls
400 lines (384 loc) · 33.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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stoic Decision Making: Ancient Philosophy for Modern Choices</title>
<meta name="description" content="Apply Stoic philosophy to modern decision-making. Learn from Marcus Aurelius, Seneca, and Epictetus how to make clear-headed decisions in uncertain times.">
<meta property="og:title" content="Stoic Decision Making: Ancient Wisdom for Modern Life">
<meta property="og:type" content="article">
<link rel="canonical" href="https://henu-wang.github.io/stoic-decision-making/">
<style>
:root {
--primary: #744210;
--primary-light: #975a16;
--accent: #2b6cb0;
--accent-dark: #2c5282;
--bg: #fffff0;
--card-bg: #ffffff;
--text: #1a202c;
--text-light: #4a5568;
--border: #fefcbf;
--shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', 'Times New Roman', serif; background: var(--bg); color: var(--text); line-height: 1.8; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero { background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, var(--primary) 100%); color: white; padding: 90px 0 70px; text-align: center; }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.02em; }
.hero .subtitle { font-size: 1.2rem; opacity: 0.85; max-width: 700px; margin: 0 auto 30px; font-family: -apple-system, sans-serif; }
.badge { display: inline-block; background: rgba(255,255,255,0.15); padding: 8px 24px; border-radius: 50px; font-size: 0.9rem; margin-bottom: 20px; font-family: -apple-system, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-bar { background: #1a202c; border-bottom: 1px solid #2d3748; padding: 16px 0; position: sticky; top: 0; z-index: 100; font-family: -apple-system, sans-serif; }
.nav-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: white; }
.nav-brand { font-weight: 700; font-size: 1.1rem; color: #ecc94b; text-decoration: none; }
.section { padding: 60px 0; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; max-width: 800px; font-family: -apple-system, sans-serif; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.card { background: var(--card-bg); border-radius: 12px; padding: 32px; box-shadow: var(--shadow); border: 1px solid #e2e8f0; transition: transform 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 10px; font-family: -apple-system, sans-serif; }
.card ul { padding-left: 20px; color: var(--text-light); font-family: -apple-system, sans-serif; }
.card ul li { margin-bottom: 6px; font-size: 0.95rem; }
.quote-block { background: linear-gradient(135deg, #fefcbf 0%, #feebc8 100%); border-left: 5px solid var(--primary); padding: 32px 36px; border-radius: 0 12px 12px 0; margin: 40px 0; }
.quote-block blockquote { font-size: 1.25rem; font-style: italic; color: var(--primary); margin-bottom: 10px; line-height: 1.6; }
.quote-block cite { font-size: 0.9rem; color: var(--text-light); font-style: normal; font-family: -apple-system, sans-serif; }
.philosopher-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 28px; }
.philosopher-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.philosopher-header { background: linear-gradient(135deg, #1a202c 0%, var(--primary) 100%); color: white; padding: 28px; }
.philosopher-header h3 { font-size: 1.4rem; margin-bottom: 4px; }
.philosopher-header .era { opacity: 0.8; font-size: 0.9rem; font-family: -apple-system, sans-serif; }
.philosopher-body { padding: 28px; }
.philosopher-body p { color: var(--text-light); margin-bottom: 14px; font-size: 0.95rem; font-family: -apple-system, sans-serif; }
.philosopher-body .teaching { background: #fffff0; padding: 16px; border-radius: 8px; margin-top: 12px; border: 1px solid var(--border); }
.philosopher-body .teaching h5 { color: var(--primary); font-size: 0.9rem; margin-bottom: 6px; }
.principle-list { margin: 30px 0; }
.principle { display: flex; gap: 20px; margin-bottom: 28px; padding: 24px; background: white; border-radius: 12px; box-shadow: var(--shadow); }
.principle-num { flex-shrink: 0; width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; font-family: -apple-system, sans-serif; }
.principle-content h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--primary); }
.principle-content p { color: var(--text-light); font-family: -apple-system, sans-serif; font-size: 0.95rem; }
.cta-section { background: linear-gradient(135deg, #1a202c 0%, var(--primary) 100%); color: white; padding: 60px 40px; text-align: center; border-radius: 16px; margin: 40px 0; }
.cta-section h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-section p { opacity: 0.9; margin-bottom: 28px; font-size: 1.1rem; font-family: -apple-system, sans-serif; }
.btn { display: inline-block; background: #ecc94b; color: #1a202c; padding: 14px 32px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; font-family: -apple-system, sans-serif; }
.btn:hover { background: #d69e2e; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; margin-left: 12px; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.resource-link { display: flex; align-items: center; gap: 16px; background: white; padding: 20px; border-radius: 10px; text-decoration: none; color: var(--text); border: 1px solid #e2e8f0; transition: all 0.2s; font-family: -apple-system, sans-serif; }
.resource-link:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.resource-link .r-icon { width: 44px; height: 44px; background: #fefcbf; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.resource-link .r-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.resource-link .r-text p { font-size: 0.8rem; color: var(--text-light); }
.modern-app { background: white; border-radius: 12px; padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow); border-left: 4px solid var(--accent); }
.modern-app h4 { color: var(--primary); margin-bottom: 8px; }
.modern-app p { color: var(--text-light); font-family: -apple-system, sans-serif; font-size: 0.95rem; }
.highlight { background: #fefcbf; border: 1px solid #f6e05e; border-radius: 10px; padding: 24px; margin: 24px 0; }
.highlight h4 { color: var(--primary); margin-bottom: 8px; }
.highlight p { font-family: -apple-system, sans-serif; }
footer { background: #1a202c; color: white; padding: 48px 0 24px; margin-top: 60px; font-family: -apple-system, sans-serif; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; margin-bottom: 36px; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; opacity: 0.9; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; margin-bottom: 8px; }
.footer-col a:hover { color: #ecc94b; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; opacity: 0.7; }
@media (max-width: 768px) {
.hero h1 { font-size: 2rem; }
.card-grid, .philosopher-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav class="nav-bar">
<div class="container">
<a href="https://keeprule.com" class="nav-brand">KeepRule</a>
<div class="nav-links">
<a href="#philosophy">Philosophy</a>
<a href="#philosophers">Philosophers</a>
<a href="#principles">Principles</a>
<a href="#modern">Modern Use</a>
<a href="#practice">Daily Practice</a>
<a href="https://keeprule.com">Home</a>
</div>
</div>
</nav>
<section class="hero">
<div class="container">
<span class="badge">Philosophy & Decision Making</span>
<h1>Stoic Decision Making</h1>
<p class="subtitle">For two thousand years, Stoic philosophy has helped leaders, soldiers, and thinkers make clear decisions under pressure. Learn how Marcus Aurelius, Seneca, and Epictetus can transform the way you face uncertainty today.</p>
<a href="https://keeprule.com/scenarios/stoic-philosophy" class="btn">Explore on KeepRule</a>
<a href="#philosophy" class="btn btn-outline">Read the Guide</a>
</div>
</section>
<section class="section" id="philosophy">
<div class="container">
<h2 class="section-title">The Stoic Approach to Decisions</h2>
<p class="section-desc">Stoicism is not about suppressing emotions -- it is about recognizing what you can control and focusing your energy there. This simple distinction transforms decision-making from an anxiety-ridden process into a clear, rational one.</p>
<div class="quote-block">
<blockquote>"The chief task in life is simply this: to identify and separate matters so that I can say clearly to myself which are externals not under my control, and which have to do with the choices I actually control."</blockquote>
<cite>-- Epictetus, Discourses, Book II</cite>
</div>
<div class="card-grid">
<div class="card">
<h3>The Dichotomy of Control</h3>
<p>The foundational Stoic insight: some things are within our power (our judgments, intentions, desires, actions) and some are not (other people's actions, weather, market movements, the past). Peace and clear thinking come from focusing exclusively on what we can control and accepting what we cannot.</p>
<p>For investors using <a href="https://keeprule.com" style="color:var(--primary-light)">KeepRule's frameworks</a>, this means focusing on your analysis and process rather than on market outcomes you cannot control.</p>
</div>
<div class="card">
<h3>Premeditatio Malorum</h3>
<p>The practice of negative visualization -- imagining the worst that could happen. Not to create anxiety, but to prepare mentally and build resilience. Seneca wrote: "We suffer more in imagination than in reality." By pre-experiencing adversity mentally, you reduce its power to derail your decision-making when it actually occurs.</p>
<p>This practice is directly analogous to <a href="https://keeprule.com/scenarios/margin-of-safety" style="color:var(--primary-light)">margin of safety thinking</a>: plan for the worst, hope for the best.</p>
</div>
<div class="card">
<h3>Amor Fati</h3>
<p>"Love of fate" -- not merely accepting what happens, but embracing it as necessary and even beneficial. Marcus Aurelius wrote: "A blazing fire makes flame and brightness out of everything that is thrown into it." Obstacles become fuel for growth rather than reasons for despair.</p>
<p>For decision-makers, amor fati means treating failures as data, setbacks as learning opportunities, and uncertainty as the price of growth. This mindset is explored in <a href="https://keeprule.com/scenarios/resilience" style="color:var(--primary-light)">resilience frameworks on KeepRule</a>.</p>
</div>
</div>
</div>
</section>
<section class="section" style="background: white;" id="philosophers">
<div class="container">
<h2 class="section-title">The Three Great Stoics</h2>
<p class="section-desc">Stoicism was practiced by a slave, a statesman, and an emperor -- proving that its principles apply regardless of circumstances.</p>
<div class="philosopher-grid">
<div class="philosopher-card">
<div class="philosopher-header">
<h3>Marcus Aurelius</h3>
<span class="era">121-180 CE | Roman Emperor</span>
</div>
<div class="philosopher-body">
<p>The philosopher-king who ruled the Roman Empire at its height while battling plague, war, and personal tragedy. His private journal, the Meditations, was never intended for publication -- it is a record of his daily practice of Stoic self-examination and decision-making under enormous pressure.</p>
<p>Marcus faced decisions that affected millions, yet he consistently returned to Stoic principles: focus on virtue, accept what you cannot change, and do your duty regardless of outcomes. His approach to leadership remains relevant for anyone making consequential decisions today.</p>
<div class="teaching">
<h5>Key Teaching for Decisions</h5>
<p>"You have power over your mind -- not outside events. Realize this, and you will find strength." Focus your decision energy on what you can actually influence. Everything else is noise. This principle is foundational to the <a href="https://keeprule.com" style="color:var(--primary-light)">decision frameworks at KeepRule</a>.</p>
</div>
</div>
</div>
<div class="philosopher-card">
<div class="philosopher-header">
<h3>Seneca</h3>
<span class="era">4 BCE - 65 CE | Statesman & Playwright</span>
</div>
<div class="philosopher-body">
<p>One of Rome's wealthiest citizens and advisor to Emperor Nero, Seneca wrote prolifically about applying Stoic philosophy to practical life. His letters to Lucilius are a masterclass in philosophical mentorship -- each addresses a real-life problem with Stoic reasoning.</p>
<p>Seneca understood money, power, and loss intimately. He made and lost fortunes, navigated political intrigue, and ultimately faced his own forced suicide with the composure he had spent decades cultivating. His practical approach to philosophy makes him uniquely relevant to modern decision-makers.</p>
<div class="teaching">
<h5>Key Teaching for Decisions</h5>
<p>"It is not that we have a short time to live, but that we waste a great deal of it." Seneca teaches that good decisions require protecting your most finite resource: time. Every decision about what to do is also a decision about what not to do. Explore time allocation strategies at <a href="https://keeprule.com/scenarios/opportunity-cost" style="color:var(--primary-light)">KeepRule</a>.</p>
</div>
</div>
</div>
<div class="philosopher-card">
<div class="philosopher-header">
<h3>Epictetus</h3>
<span class="era">50-135 CE | Former Slave & Teacher</span>
</div>
<div class="philosopher-body">
<p>Born into slavery, Epictetus was physically disabled by his master's abuse. Yet he became one of the most influential philosophers in history. His Discourses and the Enchiridion (Handbook) distill Stoic practice into actionable principles that anyone can follow.</p>
<p>Having experienced the absolute worst that life could offer -- slavery, abuse, exile -- Epictetus developed an unshakable framework for maintaining agency and dignity regardless of external circumstances. His philosophy is the ultimate stress-test of decision-making principles: if it works for a slave, it works for anyone.</p>
<div class="teaching">
<h5>Key Teaching for Decisions</h5>
<p>"It's not what happens to you, but how you react to it that matters." Every event is neutral; your judgment makes it good or bad. Before reacting to any situation, pause and choose your response deliberately. This gap between stimulus and response is where all <a href="https://keeprule.com/scenarios/emotional-intelligence" style="color:var(--primary-light)">decision quality</a> resides.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="principles">
<div class="container">
<h2 class="section-title">Seven Stoic Principles for Better Decisions</h2>
<p class="section-desc">Practical principles distilled from Stoic philosophy that you can apply to every important decision.</p>
<div class="principle-list">
<div class="principle">
<div class="principle-num">I</div>
<div class="principle-content">
<h4>Separate What You Can Control From What You Cannot</h4>
<p>Before any decision, draw a clear line. Your analysis, your strategy, your effort -- these you control. Market reactions, competitor moves, other people's opinions -- these you do not. Invest your energy only in the first category. This single shift eliminates the majority of decision anxiety and produces clearer thinking. It is the foundation of every <a href="https://keeprule.com" style="color:var(--primary-light)">decision framework on KeepRule</a>.</p>
</div>
</div>
<div class="principle">
<div class="principle-num">II</div>
<div class="principle-content">
<h4>Practice Negative Visualization Before Committing</h4>
<p>Before making a significant decision, deliberately imagine the worst outcomes. What if the investment goes to zero? What if the product fails? What if you are wrong about everything? If you can accept the worst case and it is survivable, proceed with confidence. If the worst case is catastrophic, add safeguards or reconsider. This is the Stoic version of the <a href="https://keeprule.com/scenarios/margin-of-safety" style="color:var(--primary-light)">margin of safety</a>.</p>
</div>
</div>
<div class="principle">
<div class="principle-num">III</div>
<div class="principle-content">
<h4>View From Above -- Gain Perspective</h4>
<p>Marcus Aurelius practiced imagining his situation from a cosmic perspective. How will this decision matter in a year? A decade? A century? Most of what feels urgent is not important, and most of what is important does not feel urgent. This "view from above" breaks the spell of short-term thinking and helps you make decisions aligned with long-term values rather than momentary pressures.</p>
</div>
</div>
<div class="principle">
<div class="principle-num">IV</div>
<div class="principle-content">
<h4>Act on Virtue, Not Outcomes</h4>
<p>The Stoics judged decisions by the quality of reasoning and intention, not by the outcome. A good decision can lead to a bad outcome due to luck; a bad decision can succeed by chance. Focus on making the best decision you can with available information. Judge yourself by your process, not your results. This aligns with the <a href="https://keeprule.com/scenarios/decision-quality" style="color:var(--primary-light)">decision quality principles on KeepRule</a>.</p>
</div>
</div>
<div class="principle">
<div class="principle-num">V</div>
<div class="principle-content">
<h4>Memento Mori -- Remember You Will Die</h4>
<p>This is not morbid; it is clarifying. Death sets a deadline on every opportunity. Seneca urged: "Let us prepare our minds as if we had come to the very end of life." This urgency eliminates procrastination, clarifies priorities, and helps you ask: "If I had one year left, would I make this same decision?" If not, reconsider.</p>
</div>
</div>
<div class="principle">
<div class="principle-num">VI</div>
<div class="principle-content">
<h4>Journal Your Reasoning</h4>
<p>Both Marcus Aurelius and Seneca practiced daily philosophical journaling. Before a decision, write down your reasoning, assumptions, and expected outcomes. After the decision plays out, review what you got right and wrong. This creates a feedback loop for improving decision quality over time -- exactly the approach championed by <a href="https://keeprule.com" style="color:var(--primary-light)">KeepRule's learning frameworks</a>.</p>
</div>
</div>
<div class="principle">
<div class="principle-num">VII</div>
<div class="principle-content">
<h4>Consult Your Future Self</h4>
<p>Seneca's version of this: imagine your older, wiser self looking back at this decision. Would that person approve? This mental exercise activates long-term thinking and reduces the influence of temporary emotions, social pressure, and cognitive biases on your decision-making process.</p>
</div>
</div>
</div>
</div>
</section>
<section class="section" style="background: white;" id="modern">
<div class="container">
<h2 class="section-title">Stoicism in Modern Decision-Making</h2>
<p class="section-desc">From Silicon Valley to Wall Street, Stoic philosophy is experiencing a remarkable revival among modern decision-makers.</p>
<div class="modern-app">
<h4>Investing & Portfolio Management</h4>
<p>Warren Buffett's temperamental approach to investing is deeply Stoic: "Be fearful when others are greedy, and greedy when others are fearful." The Stoic investor focuses on intrinsic value (what they can analyze) rather than market sentiment (what they cannot control). When markets crash, the Stoic sees opportunity rather than catastrophe. This approach is detailed in the <a href="https://keeprule.com" style="color:var(--primary-light)">investment wisdom library at KeepRule</a>.</p>
</div>
<div class="modern-app">
<h4>Leadership Under Crisis</h4>
<p>James Stockdale, a Navy pilot and POW for over seven years in Vietnam, credited Epictetus with his survival. He practiced the dichotomy of control daily: he could not control his captors' actions, but he could control his own integrity and courage. Modern leaders from Tim Cook to Pete Carroll have cited Stoic principles as central to their decision-making under pressure.</p>
</div>
<div class="modern-app">
<h4>Entrepreneurship & Startups</h4>
<p>The startup world is inherently uncertain -- most ventures fail. Stoic philosophy helps founders separate effort (controllable) from outcomes (not controllable), maintain equanimity through rejection and failure, and make clear decisions when emotions run high. Tim Ferriss, who popularized Stoicism in tech circles, practices "fear-setting" -- a modern version of premeditatio malorum -- before every major business decision. Explore these frameworks at <a href="https://keeprule.com/scenarios/risk-management" style="color:var(--primary-light)">KeepRule</a>.</p>
</div>
<div class="modern-app">
<h4>Personal Relationships</h4>
<p>Stoic decision-making in relationships means not trying to control others (you cannot), communicating your needs clearly (you can), accepting people as they are rather than as you wish they were, and focusing on being a good partner rather than finding a perfect one. The dichotomy of control, applied to relationships, reduces conflict and increases genuine connection.</p>
</div>
<div class="highlight">
<h4>The Stoic Decision Filter</h4>
<p style="font-family: -apple-system, sans-serif;">Before any important decision, ask these four questions from Marcus Aurelius:</p>
<ol style="padding-left: 24px; margin-top: 12px; color: var(--text-light); font-family: -apple-system, sans-serif;">
<li><strong>Is this within my control?</strong> If not, accept it and move on.</li>
<li><strong>What would the wisest person I know do?</strong> Emulate their reasoning.</li>
<li><strong>How will I view this in ten years?</strong> Gain temporal perspective.</li>
<li><strong>Am I being driven by virtue or by passion?</strong> Choose virtue every time.</li>
</ol>
</div>
</div>
</section>
<section class="section" id="practice">
<div class="container">
<h2 class="section-title">Daily Stoic Practice for Better Decisions</h2>
<p class="section-desc">Stoicism is not a theory to be studied but a practice to be lived. Here are daily exercises to build your Stoic decision-making capacity.</p>
<div class="card-grid">
<div class="card">
<h3>Morning Preparation</h3>
<p>Marcus Aurelius began each day with meditation on potential difficulties. Before you start your day, spend five minutes anticipating challenges. "Today I will encounter frustration, setbacks, and disagreement. I will respond with patience, clarity, and reason." This mental rehearsal primes your decision-making for the entire day.</p>
</div>
<div class="card">
<h3>Evening Review</h3>
<p>Seneca practiced a nightly review: "What ailment of yours have you cured today? What failing have you resisted? Where can you show improvement?" Review your decisions from the day. Where did emotion override reason? Where did you focus on things outside your control? Use these insights to improve tomorrow's decisions.</p>
</div>
<div class="card">
<h3>Voluntary Discomfort</h3>
<p>Periodically practice discomfort voluntarily: cold showers, fasting, sleeping on the floor. The purpose is not masochism but preparation. When you have experienced discomfort by choice, involuntary hardship loses its power to impair your judgment. As Seneca wrote: "Set aside a certain number of days during which you shall be content with the scantiest fare."</p>
</div>
<div class="card">
<h3>The View From Above</h3>
<p>When facing a difficult decision, mentally zoom out. Imagine viewing the situation from space. See yourself as one of billions of humans, facing a problem that millions have faced before. This perspective dissolves ego, reduces anxiety, and enables clearer thinking. Combine this with <a href="https://keeprule.com/scenarios/decision-frameworks" style="color:var(--primary-light)">KeepRule's structured frameworks</a> for optimal results.</p>
</div>
</div>
</div>
</section>
<section class="section" style="background: white;">
<div class="container">
<div class="cta-section">
<h2>Make Decisions Like a Stoic</h2>
<p>KeepRule combines ancient Stoic wisdom with modern decision science. Build unshakable decision-making skills grounded in 2,000 years of philosophical tradition.</p>
<a href="https://keeprule.com" class="btn">Visit KeepRule</a>
<a href="https://keeprule.com/scenarios/stoic-philosophy" class="btn btn-outline">Stoic Decision Scenarios</a>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 class="section-title">Related Wisdom & Resources</h2>
<div class="resource-grid">
<a href="https://keeprule.com/scenarios/first-principles" class="resource-link">
<div class="r-icon">🧠</div>
<div class="r-text"><h4>First Principles Thinking</h4><p>Reason from fundamental truths</p></div>
</a>
<a href="https://keeprule.com/scenarios/inversion" class="resource-link">
<div class="r-icon">🔄</div>
<div class="r-text"><h4>Inversion Thinking</h4><p>Avoid failure by thinking backwards</p></div>
</a>
<a href="https://keeprule.com/scenarios/margin-of-safety" class="resource-link">
<div class="r-icon">🛡</div>
<div class="r-text"><h4>Margin of Safety</h4><p>The Stoic's buffer against uncertainty</p></div>
</a>
<a href="https://keeprule.com/scenarios/circle-of-competence" class="resource-link">
<div class="r-icon">🎯</div>
<div class="r-text"><h4>Circle of Competence</h4><p>Know your boundaries</p></div>
</a>
<a href="https://keeprule.com/scenarios/mental-models" class="resource-link">
<div class="r-icon">📚</div>
<div class="r-text"><h4>Mental Models Library</h4><p>Browse all decision frameworks</p></div>
</a>
<a href="https://keeprule.com/scenarios/cognitive-biases" class="resource-link">
<div class="r-icon">🔍</div>
<div class="r-text"><h4>Cognitive Biases</h4><p>Know your mental blindspots</p></div>
</a>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-grid">
<div class="footer-col">
<h4>About</h4>
<p style="color:rgba(255,255,255,0.7); font-size:0.9rem; line-height:1.6;">A guide to Stoic philosophy applied to modern decision-making. Part of the KeepRule mental models education series.</p>
</div>
<div class="footer-col">
<h4>KeepRule Resources</h4>
<a href="https://keeprule.com">Home</a>
<a href="https://keeprule.com/scenarios/stoic-philosophy">Stoic Scenarios</a>
<a href="https://keeprule.com/scenarios/mental-models">Mental Models</a>
<a href="https://keeprule.com/scenarios/margin-of-safety">Margin of Safety</a>
</div>
<div class="footer-col">
<h4>Related Guides</h4>
<a href="https://keeprule.com/scenarios/first-principles">First Principles</a>
<a href="https://keeprule.com/scenarios/inversion">Inversion</a>
<a href="https://keeprule.com/scenarios/second-order-effects">Second-Order Effects</a>
<a href="https://keeprule.com/scenarios/probabilistic-thinking">Probabilistic Thinking</a>
</div>
<div class="footer-col">
<h4>Decision Making</h4>
<a href="https://keeprule.com">KeepRule Platform</a>
<a href="https://keeprule.com/scenarios/decision-frameworks">Decision Frameworks</a>
<a href="https://keeprule.com/scenarios/decision-quality">Decision Quality</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Stoic Decision Making Guide. Part of the <a href="https://keeprule.com" style="color:rgba(255,255,255,0.9)">KeepRule</a> educational resource network.</p>
</div>
</div>
</footer>
</body>
</html>