340 lines
11 KiB
HTML
340 lines
11 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>My First Slip | Bhartiben Patel</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--watercolor-blue: #6B9AC4;
|
||
|
|
--ink-black: #2C2C2C;
|
||
|
|
--paper-white: #F5F5F0;
|
||
|
|
--accent-gold: #D4AF37;
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: 'Georgia', serif;
|
||
|
|
background: var(--paper-white);
|
||
|
|
color: var(--ink-black);
|
||
|
|
line-height: 1.7;
|
||
|
|
}
|
||
|
|
|
||
|
|
header {
|
||
|
|
background: linear-gradient(135deg, var(--watercolor-blue), #4A7CA8);
|
||
|
|
color: white;
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
text-align: center;
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
header::before {
|
||
|
|
content: '';
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
background: url('https://images.pexels.com/photos/7947755/pexels-photo-7947755.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') center/cover;
|
||
|
|
opacity: 0.15;
|
||
|
|
mix-blend-mode: multiply;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: 3.5rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
|
||
|
|
position: relative;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.subtitle {
|
||
|
|
font-size: 1.4rem;
|
||
|
|
font-style: italic;
|
||
|
|
opacity: 0.95;
|
||
|
|
position: relative;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
main {
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story {
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
padding: 2.5rem;
|
||
|
|
background: white;
|
||
|
|
border-radius: 12px;
|
||
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story::before {
|
||
|
|
content: '';
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 6px;
|
||
|
|
height: 100%;
|
||
|
|
background: linear-gradient(to bottom, var(--watercolor-blue), var(--accent-gold));
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
font-size: 2.2rem;
|
||
|
|
color: var(--watercolor-blue);
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
p {
|
||
|
|
font-size: 1.1rem;
|
||
|
|
margin-bottom: 1.25rem;
|
||
|
|
text-align: justify;
|
||
|
|
}
|
||
|
|
|
||
|
|
.highlight {
|
||
|
|
background: linear-gradient(to right, #FFF5E6, #FFF8DC);
|
||
|
|
padding: 0.5rem 1rem;
|
||
|
|
border-left: 4px solid var(--accent-gold);
|
||
|
|
margin: 1.5rem 0;
|
||
|
|
font-style: italic;
|
||
|
|
font-size: 1.15rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.data-point {
|
||
|
|
background: var(--paper-white);
|
||
|
|
border: 2px solid var(--watercolor-blue);
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 1.5rem;
|
||
|
|
margin: 2rem 0;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.data-point::before {
|
||
|
|
content: '📊';
|
||
|
|
position: absolute;
|
||
|
|
top: -15px;
|
||
|
|
right: -15px;
|
||
|
|
font-size: 2rem;
|
||
|
|
transform: rotate(-5deg);
|
||
|
|
}
|
||
|
|
|
||
|
|
.data-point h3 {
|
||
|
|
color: var(--watercolor-blue);
|
||
|
|
font-size: 1.4rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.data-point ul {
|
||
|
|
list-style: none;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.data-point li {
|
||
|
|
padding: 0.75rem 0;
|
||
|
|
border-bottom: 1px dotted #D3D3D3;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.data-point li::before {
|
||
|
|
content: '✓';
|
||
|
|
color: var(--accent-gold);
|
||
|
|
margin-right: 1rem;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
|
||
|
|
.lesson {
|
||
|
|
background: linear-gradient(135deg, #F8F5F0, #EFE8DD);
|
||
|
|
padding: 2rem;
|
||
|
|
border-radius: 12px;
|
||
|
|
border: 3px double var(--accent-gold);
|
||
|
|
margin: 3rem 0;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.lesson h3 {
|
||
|
|
font-size: 2rem;
|
||
|
|
color: var(--ink-black);
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.lesson p {
|
||
|
|
font-size: 1.25rem;
|
||
|
|
font-style: italic;
|
||
|
|
color: #5A4A42;
|
||
|
|
}
|
||
|
|
|
||
|
|
.gallery {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
margin: 3rem 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.gallery-item {
|
||
|
|
position: relative;
|
||
|
|
border-radius: 12px;
|
||
|
|
overflow: hidden;
|
||
|
|
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
|
||
|
|
transition: transform 0.3s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.gallery-item:hover {
|
||
|
|
transform: translateY(-5px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.gallery-item img {
|
||
|
|
width: 100%;
|
||
|
|
height: 300px;
|
||
|
|
object-fit: cover;
|
||
|
|
}
|
||
|
|
|
||
|
|
.gallery-item .caption {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
|
||
|
|
color: white;
|
||
|
|
padding: 2rem 1.5rem 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
footer {
|
||
|
|
background: var(--ink-black);
|
||
|
|
color: white;
|
||
|
|
text-align: center;
|
||
|
|
padding: 3rem 2rem;
|
||
|
|
margin-top: 4rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
footer p {
|
||
|
|
font-size: 1.1rem;
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 768px) {
|
||
|
|
h1 {
|
||
|
|
font-size: 2.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.subtitle {
|
||
|
|
font-size: 1.1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
main {
|
||
|
|
padding: 2rem 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.story {
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header>
|
||
|
|
<h1>My First Slip</h1>
|
||
|
|
<div class="subtitle">Where mistakes become masterpieces</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<main>
|
||
|
|
<section class="story">
|
||
|
|
<h2>The Day I Lost My Way</h2>
|
||
|
|
<p>
|
||
|
|
In 1998, I was 27 years old, fresh from Stanford's MBA program, and convinced that numbers told the whole story. I'd just been promoted to lead financial strategy at a mid-sized Houston firm, and I was ready to prove myself.
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
The quarterly review was my chance to shine. I'd spent weeks analyzing every spreadsheet, every metric, every data point. I presented my findings with the confidence of someone who'd never made a mistake.
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
But I'd missed the most important number of all: the human cost.
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<div class="highlight">
|
||
|
|
"I buried a tired sales rep under KPIs while her husband was in the hospital. The data was perfect. The humanity was absent."
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<p>
|
||
|
|
She'd been working 60-hour weeks, her performance slipping because she was caring for her dying husband. I saw only the declining sales figures, never the story behind them. I recommended a performance improvement plan that would have cost her her job.
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
When my boss pulled me aside and showed me the real story — the hospital bills, the missed family moments, the quiet desperation in her eyes — I felt something crack inside me.
|
||
|
|
</p>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section class="data-point">
|
||
|
|
<h3>What I Learned</h3>
|
||
|
|
<ul>
|
||
|
|
<li>Data informs, but connection transforms</li>
|
||
|
|
<li>The best metrics measure people, not just profits</li>
|
||
|
|
<li>Every number has a story behind it</li>
|
||
|
|
<li>True strategy requires both precision and compassion</li>
|
||
|
|
<li>Mistakes are the best teachers if you let them be</li>
|
||
|
|
</ul>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section class="lesson">
|
||
|
|
<h3>The Lesson Lives On</h3>
|
||
|
|
<p>
|
||
|
|
"Now I lead with both spreadsheet and story. Every decision I make balances the numbers with the people behind them. That mistake didn't break me — it made me better."
|
||
|
|
</p>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<div class="gallery">
|
||
|
|
<div class="gallery-item">
|
||
|
|
<img src="https://images.pexels.com/photos/7876507/pexels-photo-7876507.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Financial analysis in progress">
|
||
|
|
<div class="caption">
|
||
|
|
<strong>The Tools I Use</strong>
|
||
|
|
<br>Every chart tells a story
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="gallery-item">
|
||
|
|
<img src="https://images.pexels.com/photos/7580753/pexels-photo-7580753.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Calculator and financial documents">
|
||
|
|
<div class="caption">
|
||
|
|
<strong>The Craft</strong>
|
||
|
|
<br>Precision meets artistry
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="gallery-item">
|
||
|
|
<img src="https://images.pexels.com/photos/6801636/pexels-photo-6801636.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Financial planning tools">
|
||
|
|
<div class="caption">
|
||
|
|
<strong>The Process</strong>
|
||
|
|
<br>Every detail matters
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<section class="story">
|
||
|
|
<h2>Now, I Paint With Data</h2>
|
||
|
|
<p>
|
||
|
|
Today, I still run at dawn, still analyze every number, still chase perfection. But I also pause to ask: who is behind this chart? What story does this metric tell?
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
That mistake taught me that the best strategy isn't just about the numbers — it's about the people who live them. Every decision I make now is a blend of rigorous analysis and deep empathy.
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
And that's how I've turned my biggest failure into my greatest strength.
|
||
|
|
</p>
|
||
|
|
</section>
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
<p>Bhartiben Patel | Houston, Texas</p>
|
||
|
|
<p>Data-Driven Strategist | Solitary Runner | Watercolor Artist</p>
|
||
|
|
<p>Every mistake is a door to a room you never knew existed.</p>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|