<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sequel Marketing Agency</title>
<!-- Load fonts used in the original design -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Archivo+Black:regular%7CCarlito:regular" rel="stylesheet">
<style>
/* Baseline Styles matching Webflow export */
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #000000; /* Black background */
color: #ffffff; /* White text */
font-family: 'Carlito', sans-serif;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
/* Hero Wrapper Container */
.hero-stack {
text-align: center;
padding: 20px;
box-sizing: border-box;
width: 100%;
max-width: 750px;
}
/* Brand Main Heading */
h1.heading-2 {
font-family: 'Archivo Black', sans-serif;
font-size: 70px;
font-weight: 400;
margin: 0 0 48px 0;
line-height: 1.1;
letter-spacing: -1px;
}
/* Tagline Italic Styling */
.margin-bottom-24px {
font-size: 40px;
margin: 0 0 33px 0;
color: #fffefb;
}
.italic-text {
font-style: italic;
}
/* Coming Soon Badge */
.text-block-4 {
font-size: 30px;
margin-top: 18px;
margin-bottom: 0;
font-weight: 400;
letter-spacing: 0.5px;
}
/* Email Wrapper & Link Styling */
.text-block-4-copy {
font-size: 20px;
margin-top: 39px;
}
.text-block-4-copy a {
color: #ffffff;
text-decoration: underline;
transition: opacity 0.2s ease;
}
.text-block-4-copy a:hover {
opacity: 0.8;
}
/* Responsive scaling for smaller mobile screens */
@media screen and (max-width: 479px) {
h1.heading-2 {
font-size: 52px;
}
.margin-bottom-24px {
font-size: 28px;
line-height: 34px;
}
.text-block-4 {
font-size: 24px;
}
}
</style>
</head>
<body>
<section class="hero-stack">
<h1 class="heading-2"><strong>Sequel</strong></h1>
<p class="margin-bottom-24px"><em class="italic-text">What's next for your brand?</em></p>
<div class="text-block-4">Coming Soon</div>
<div class="text-block-4-copy">
<a href="mailto:Matt@SequelAgency.com">Matt@SequelAgency.com</a>
</div>
</section>
</body>
</html>