<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InsureStance</title>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0f172a;
color: #e2e8f0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 700px;
padding: 20px;
}
h1 {
font-size: 3rem;
margin-bottom: 10px;
color: #38bdf8;
}
p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 30px;
}
.cta {
display: inline-block;
padding: 14px 28px;
font-size: 1rem;
color: #0f172a;
background: #38bdf8;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: 0.2s ease;
}
.cta:hover {
background: #0ea5e9;
}
footer {
margin-top: 40px;
font-size: 0.9rem;
color: #94a3b8;
}
</style>
</head>
<body>
<div class="container">
<h1>InsureStance</h1>
<p>
InsureStance helps insurance agents strategize to dominate their niche —
with advice tailored specifically to their insurance market.
</p>
<a href="mailto:hello@insurestance.com" class="cta">Get Started</a>
<footer>
© 2026 InsureStance. All rights reserved.
</footer>
</div>
</body>
</html>