<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>M. B. Johnson Consulting</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0f172a;
color: #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 720px;
padding: 40px;
}
h1 {
font-size: 2.25rem;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
color: #cbd5f5;
}
.footer {
margin-top: 2.5rem;
font-size: 0.9rem;
color: #94a3b8;
}
</style>
</head>
<body>
<div class="container">
<h1>M. B. Johnson Consulting</h1>
<p>
Strategic advisory services focused on long-term business growth and near-term results.
</p>
<p><strong>Website coming soon.</strong></p>
<div class="footer">
© 2026 M. B. Johnson Consulting, LLC
</div>
</div>
</body>
</html>