This is a custom code placeholder.
Switch to Preview or publish the page
to see how your code works.
Double-click to edit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Founder's Clarity: An Interactive Infographic</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
.gradient-text {
background: linear-gradient(90deg, #FFC947, #EFEFEF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.chart-container {
position: relative;
width: 100%;
max-width: 500px;
margin-left: auto;
margin-right: auto;
height: 300px;
max-height: 350px;
}
@media (min-width: 768px) {
.chart-container {
height: 350px;
max-height: 400px;
}
}
</style>
</head>
<body class="bg-[#0A1931] text-[#EFEFEF]">
<!--
Selected Palette: Energetic & Playful
- Background: #0A1931 (Deep Blue)
- Accent: #FFC947 (Gold)
- Primary: #185ADB (Bright Blue)
- Text/Highlight: #EFEFEF (Cream)
Narrative Plan:
1. Hook: Highlight the universal pressures and mental health toll on founders.
2. Problem: Visualize why most startups fail, linking it to a "Clarity Gap."
3. Solution Intro: Introduce the power of a clear mind as a strategic advantage.
4. Proof: Showcase ASK Aware Living's powerful, proprietary results.
5. CTA: Offer the exclusive, high-value Gold Invite.
Visualization Choices:
- Section 1: Big Number Callouts (Goal: Inform)
- Section 2: Bar Chart & HTML/CSS Domino Effect (Goal: Compare/Organize)
- Section 3: Big Number Callout & HTML/CSS Visual Metaphor (Goal: Inform/Organize)
- Section 4: Donut Charts (Goal: Inform/Compare)
- Section 5: Styled HTML CTA block (Goal: Inform)
Confirmation: NEITHER Mermaid JS NOR SVG were used in this document. All visuals are rendered using Chart.js on Canvas or pure HTML/CSS with Tailwind.
-->
<div class="container mx-auto px-4 sm:px-6 lg:px-8 py-12">
<header class="text-center mb-16">
<h1 class="text-4xl md:text-6xl font-black gradient-text mb-4">The Founder's Clarity Blueprint</h1>
<p class="text-lg md:text-xl max-w-3xl mx-auto text-[#EFEFEF]/80">Your company's growth isn't capped by the market. It's capped by the clarity of your decisions.</p>
</header>
<main class="space-y-20">
<!-- Section 1: The High-Stakes Reality -->
<section class="text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Hustle Culture Has a Hidden Invoice</h2>
<p class="max-w-2xl mx-auto text-[#EFEFEF]/80 mb-12">The pressure to succeed is immense. The data reveals the profound mental toll on leaders, creating a hidden tax on your most valuable asset: your mental clarity.</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<div class="bg-[#185ADB]/20 p-8 rounded-2xl shadow-lg border border-white/10">
<p class="text-7xl font-black text-[#FFC947]">72%</p>
<p class="mt-4 text-lg">Of Entrepreneurs are directly affected by mental health challenges, stemming from the immense pressure and isolation of their roles.</p>
<p class="text-xs mt-4 text-white/40">Source: UCSF/Berkeley Founder Studies</p>
</div>
<div class="bg-[#185ADB]/20 p-8 rounded-2xl shadow-lg border border-white/10">
<p class="text-7xl font-black text-[#FFC947]">80%</p>
<p class="mt-4 text-lg">Of leaders report feeling at risk of burnout due to the relentless pace of high-stakes decision-making.</p>
<p class="text-xs mt-4 text-white/40">Source: McKinsey Health Institute Survey</p>
</div>
</div>
</section>
<!-- Section 2: The Clarity Gap -->
<section>
<div class="text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-4">The Clarity Gap: Why 90% of Ventures Fail</h2>
<p class="max-w-2xl mx-auto text-[#EFEFEF]/80 mb-12">Failure is rarely a single event. It’s a series of unclear decisions. Data from thousands of startup post-mortems shows that beyond market fit, the most critical errors are internal.</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-center">
<div class="bg-[#185ADB]/20 p-6 md:p-8 rounded-2xl shadow-lg border border-white/10">
<h3 class="font-bold text-xl mb-4 text-[#FFC947]">Top Reasons for Failure (Post Product-Market Fit)</h3>
<p class="text-sm text-white/60 mb-6">A lack of mental clarity is the root cause of these critical, yet avoidable, internal failures.</p>
<div class="chart-container">
<canvas id="failureReasonsChart"></canvas>
</div>
<p class="text-xs text-center mt-4 text-white/40">Source: CB Insights, Startup Genome Reports</p>
</div>
<div class="flex flex-col items-center justify-center p-8">
<h3 class="text-2xl font-bold mb-8 text-center">The Domino Effect of an Unclear Mind</h3>
<div class="flex items-center -space-x-12 sm:-space-x-16">
<div class="w-24 h-40 sm:w-28 sm:h-48 bg-[#EFEFEF] text-[#0A1931] rounded-lg shadow-2xl flex items-center justify-center p-4 text-center font-bold">Lack of Clarity</div>
<div class="w-24 h-40 sm:w-28 sm:h-48 bg-[#185ADB] rounded-lg shadow-2xl flex items-center justify-center p-4 text-center font-bold transform rotate-12 origin-bottom-left">Poor Decisions</div>
<div class="w-24 h-40 sm:w-28 sm:h-48 bg-[#185ADB] rounded-lg shadow-2xl flex items-center justify-center p-4 text-center font-bold transform rotate-20 origin-bottom-left">Loss of Focus</div>
<div class="w-24 h-40 sm:w-28 sm:h-48 bg-[#185ADB] rounded-lg shadow-2xl flex items-center justify-center p-4 text-center font-bold transform rotate-[30deg] origin-bottom-left">Stalled Growth</div>
</div>
</div>
</div>
</section>
<!-- Section 3: The Power of a Clear Mind -->
<section class="text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Clarity Isn't a Soft Skill. It's a Strategic Weapon.</h2>
<p class="max-w-2xl mx-auto text-[#EFEFEF]/80 mb-12">The ability to think clearly under pressure is a measurable competitive advantage that allows you to see opportunities and threats before anyone else.</p>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-center max-w-5xl mx-auto">
<div class="flex flex-col items-center justify-center p-8 h-full">
<h3 class="text-2xl font-bold mb-8">From Mental Tangle to Decisive Action</h3>
<div class="relative w-64 h-64 flex items-center justify-center">
<div class="absolute w-48 h-1 bg-red-500/50 transform rotate-45 rounded-full"></div>
<div class="absolute w-48 h-1 bg-red-500/50 transform -rotate-45 rounded-full"></div>
<div class="absolute w-40 h-1 bg-red-500/50 transform rotate-12 rounded-full"></div>
<div class="absolute w-40 h-1 bg-red-500/50 transform -rotate-12 rounded-full"></div>
<div class="absolute w-64 h-2 bg-gradient-to-r from-[#185ADB] to-[#FFC947] rounded-full shadow-lg">
<div class="absolute right-0 top-1/2 w-4 h-4 bg-[#FFC947] transform -translate-y-1/2 rotate-45 -mr-1"></div>
<div class="absolute right-0 top-1/2 w-4 h-4 bg-[#0A1931] transform -translate-y-1/2 rotate-45 -mr-2"></div>
</div>
</div>
</div>
<div class="bg-[#185ADB]/20 p-8 rounded-2xl shadow-lg border border-white/10 h-full flex flex-col justify-center">
<p class="text-7xl font-black text-[#FFC947]">80%</p>
<p class="mt-4 text-lg">Better at making strategic, long-term decisions under pressure for leaders who actively practice mindfulness and improve self-awareness.</p>
<p class="text-xs mt-4 text-white/40">Source: INSEAD/Harvard Business Review</p>
</div>
</div>
</section>
<!-- Section 4: The ASK Difference -->
<section class="text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-4">The ASK Mind Mastery Difference</h2>
<p class="max-w-2xl mx-auto text-[#EFEFEF]/80 mb-12">We don't just promise clarity. We deliver measurable growth and fulfillment. These are verified results from leaders like you.</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<div class="bg-[#185ADB]/20 p-6 md:p-8 rounded-2xl shadow-lg border border-white/10 flex flex-col items-center">
<h3 class="font-bold text-xl mb-4 text-[#FFC947]">3x Growth in ROI</h3>
<p class="text-sm text-white/60 mb-6 h-16">Reported by 97% of entrepreneurs on their optimized efforts within 6 months.</p>
<div class="chart-container !h-48 !max-h-48 sm:!h-56 sm:!max-h-56">
<canvas id="roiChart"></canvas>
</div>
<p class="text-xs mt-4 text-white/40">Source: Independent Survey, ASK Aware Living</p>
</div>
<div class="bg-[#185ADB]/20 p-6 md:p-8 rounded-2xl shadow-lg border border-white/10 flex flex-col items-center">
<h3 class="font-bold text-xl mb-4 text-[#FFC947]">Increased Well-being</h3>
<p class="text-sm text-white/60 mb-6 h-16">A profound increase in happiness & sense of meaningfulness was reported by 100% of cases.</p>
<div class="chart-container !h-48 !max-h-48 sm:!h-56 sm:!max-h-56">
<canvas id="happinessChart"></canvas>
</div>
<p class="text-xs mt-4 text-white/40">Source: Independent Survey, ASK Aware Living</p>
</div>
</div>
</section>
<!-- Section 5: CTA -->
<section class="text-center bg-gradient-to-r from-[#FFC947] to-[#f5b821] text-[#0A1931] p-8 md:p-16 rounded-2xl shadow-2xl">
<h2 class="text-3xl md:text-4xl font-black mb-4">Your Gold Invite Awaits.</h2>
<p class="max-w-2xl mx-auto text-[#0A1931]/80 mb-8">You are overloaded with advice but starved for the clarity to act decisively. Experience the power of our proprietary M.A.T. (Mindful Awareness Thinking) method firsthand. No advice, no theory, only profound realization.</p>
<div class="bg-[#0A1931]/80 text-white p-6 rounded-lg inline-block">
<p class="font-bold text-lg">Claim Your Special Gold Invite</p>
<p class="mt-2">A Sponsored, 1-to-1 Consultation Session <br> (Valued at ₹18,000)</p>
<a href="https://wa.me/918482899388" target="_blank" class="mt-6 inline-block bg-[#FFC947] text-[#0A1931] font-bold py-3 px-8 rounded-lg transition-transform transform hover:scale-105">
WhatsApp to Schedule Now
</a>
<p class="text-xs mt-4">Limited spots available for a limited time.</p>
</div>
</section>
</main>
</div>
<script>
const tooltipConfig = {
plugins: {
tooltip: {
callbacks: {
title: function(tooltipItems) {
const item = tooltipItems[0];
let label = item.chart.data.labels[item.dataIndex];
if (Array.isArray(label)) {
return label.join(' ');
}
return label;
}
}
}
}
};
const wrapLabel = (label, maxWidth = 16) => {
const words = label.split(' ');
const lines = [];
let currentLine = '';
words.forEach(word => {
if ((currentLine + ' ' + word).trim().length > maxWidth) {
lines.push(currentLine.trim());
currentLine = word;
} else {
currentLine = (currentLine + ' ' + word).trim();
}
});
if (currentLine) {
lines.push(currentLine.trim());
}
return lines;
};
const failureData = {
labels: ["Loss of Focus", "Team Burnout", wrapLabel("Poor Decision-Making"), wrapLabel("Disharmony within Team")],
datasets: [{
label: 'Reason for Failure',
data: [42, 35, 29, 23],
backgroundColor: [
'rgba(255, 201, 71, 0.6)',
'rgba(24, 90, 219, 0.6)',
'rgba(239, 239, 239, 0.6)',
'rgba(255, 99, 132, 0.6)',
],
borderColor: [
'rgba(255, 201, 71, 1)',
'rgba(24, 90, 219, 1)',
'rgba(239, 239, 239, 1)',
'rgba(255, 99, 132, 1)',
],
borderWidth: 1
}]
};
const failureReasonsChartCtx = document.getElementById('failureReasonsChart').getContext('2d');
new Chart(failureReasonsChartCtx, {
type: 'bar',
data: failureData,
options: {
...tooltipConfig,
indexAxis: 'y',
maintainAspectRatio: false,
scales: {
x: {
beginAtZero: true,
grid: { color: 'rgba(239, 239, 239, 0.1)' },
ticks: { color: '#EFEFEF' }
},
y: {
grid: { color: 'rgba(239, 239, 239, 0.1)' },
ticks: { color: '#EFEFEF' }
}
},
plugins: {
...tooltipConfig.plugins,
legend: { display: false }
}
}
});
const roiChartCtx = document.getElementById('roiChart').getContext('2d');
new Chart(roiChartCtx, {
type: 'doughnut',
data: {
labels: ['Achieved 3x ROI', 'Other'],
datasets: [{
data: [97, 3],
backgroundColor: ['#FFC947', '#0A1931'],
borderColor: ['#FFC947', '#185ADB'],
borderWidth: 1,
}]
},
options: {
...tooltipConfig,
maintainAspectRatio: false,
responsive: true,
plugins: {
...tooltipConfig.plugins,
legend: {
position: 'bottom',
labels: { color: '#EFEFEF' }
}
},
cutout: '70%'
}
});
const happinessChartCtx = document.getElementById('happinessChart').getContext('2d');
new Chart(happinessChartCtx, {
type: 'doughnut',
data: {
labels: ['Increased Happiness & Meaningfulness'],
datasets: [{
data: [100, 0],
backgroundColor: ['#185ADB', '#0A1931'],
borderColor: ['#185ADB', '#185ADB'],
borderWidth: 1,
}]
},
options: {
...tooltipConfig,
maintainAspectRatio: false,
responsive: true,
plugins: {
...tooltipConfig.plugins,
legend: {
position: 'bottom',
labels: { color: '#EFEFEF' }
}
},
cutout: '70%'
}
});
</script>
</body>
</html>