<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Forge Wellness</title>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
background: #FAFAF7;
color: #0A0A0A;
line-height: 1.6;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 80px 24px;
}
h1 {
font-size: 52px;
line-height: 1.1;
margin-bottom: 20px;
letter-spacing: -1px;
}
h2 {
font-size: 32px;
margin-bottom: 16px;
letter-spacing: -0.5px;
}
p {
font-size: 17px;
color: #555;
max-width: 600px;
}
.hero {
text-align: center;
padding: 140px 20px 80px;
}
.sub {
font-size: 18px;
margin: 0 auto;
margin-bottom: 32px;
}
.cta {
margin-top: 24px;
}
input {
padding: 16px;
width: 260px;
border-radius: 10px;
border: 1px solid #ddd;
margin-right: 10px;
font-size: 15px;
}
button {
padding: 16px 22px;
border-radius: 10px;
border: none;
background: #0A0A0A;
color: #FAFAF7;
font-size: 15px;
cursor: pointer;
transition: all 0.2s ease;
}
button:hover {
opacity: 0.85;
}
.section {
margin-top: 120px;
}
.grid {
display: grid;
gap: 20px;
margin-top: 30px;
}
.card {
background: white;
padding: 28px;
border-radius: 16px;
border: 1px solid #eee;
}
.divider {
height: 1px;
background: #eee;
margin: 100px 0;
}
.center {
text-align: center;
}
.muted {
color: #888;
font-size: 13px;
}
</style>
</head>
<body>
<!-- HERO -->
<div class="hero">
<div class="container">
<h1>
You don’t need more motivation.
</h1>
<h1>
You need a system you actually follow.
</h1>
<p class="sub">
Forge is a daily wellness system for remote workers who struggle to stay consistent with training, movement, and energy.
</p>
<div class="cta">
<input type="email" placeholder="Enter your email"/>
<button>Get Early Access</button>
</div>
<p class="muted">Free early access • No spam • Built for consistency</p>
</div>
</div>
<div class="container">
<!-- PROBLEM -->
<div class="section">
<h2>You already know what to do.</h2>
<div class="grid">
<div class="card">
<p>You sit all day.</p>
<p>You plan to train later.</p>
<p>Later never comes.</p>
</div>
<div class="card">
<p>Some days you’re motivated.</p>
<p>Most days you’re not.</p>
<p>And everything falls apart.</p>
</div>
</div>
</div>
<div class="divider"></div>
<!-- REFRAME -->
<div class="section">
<h2>Motivation is the wrong variable.</h2>
<div class="card">
<p>
The problem isn’t your discipline.
</p>
<p>
It’s that your system only works when you feel good.
</p>
<p>
Forge fixes that.
</p>
</div>
</div>
<div class="divider"></div>
<!-- SOLUTION -->
<div class="section">
<h2>A system built for real days.</h2>
<div class="grid">
<div class="card">
<strong>1. Check in</strong>
<p>20 seconds. No friction.</p>
</div>
<div class="card">
<strong>2. Get your plan</strong>
<p>Adapts to your energy, not perfection.</p>
</div>
<div class="card">
<strong>3. Move anyway</strong>
<p>Even low days count.</p>
</div>
</div>
</div>
<div class="divider"></div>
<!-- IDENTITY -->
<div class="section">
<h2>This is for people who want to:</h2>
<div class="grid">
<div class="card">
<p>Feel in control of their routine again</p>
</div>
<div class="card">
<p>Stop starting over every Monday</p>
</div>
<div class="card">
<p>Build consistency without burnout</p>
</div>
</div>
</div>
<div class="divider"></div>
<!-- FINAL CTA -->
<div class="section center">
<h2>Be part of the first group.</h2>
<p>We’re opening early access soon.</p>
<div class="cta">
<input type="email" placeholder="Enter your email"/>
<button>Join Early Access</button>
</div>
<p class="muted">No commitment • Just early access</p>
</div>
</div>
</body>
</html>