<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stylair — AI Fashion Styling App</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Inter',sans-serif;
background:#0b0b0f;
color:white;
overflow-x:hidden;
line-height:1.6;
}
.container{
width:90%;
max-width:1200px;
margin:auto;
}
header{
padding:24px 0;
position:sticky;
top:0;
backdrop-filter:blur(12px);
background:rgba(11,11,15,0.75);
border-bottom:1px solid rgba(255,255,255,0.05);
}
nav{
display:flex;
justify-content:space-between;
align-items:center;
}
.logo{
font-size:1.5rem;
font-weight:700;
}
.logo span{ color:#ff5ca8; }
.hero{
padding:100px 0 60px;
text-align:center;
}
.badge{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(255,92,168,0.12);
color:#ff8cc4;
margin-bottom:24px;
border:1px solid rgba(255,92,168,0.2);
}
h1{
font-size:4rem;
font-weight:800;
line-height:1.1;
}
.gradient{
background:linear-gradient(90deg,#ff5ca8,#9f7aea,#5ad7ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}
.subtitle{
margin-top:20px;
color:#b3b3c5;
max-width:700px;
margin-left:auto;
margin-right:auto;
}
.waitlist-embed{
margin-top:40px;
max-width:600px;
margin-left:auto;
margin-right:auto;
border-radius:18px;
overflow:hidden;
background:#14141b;
padding:10px;
}
.features{
padding:100px 0;
}
.section-title{
text-align:center;
font-size:2.5rem;
margin-bottom:60px;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:24px;
}
.card{
background:#14141b;
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.06);
}
.card h3{ margin-bottom:10px; }
.card p{ color:#b3b3c5; }
.cta{
padding:100px 0;
text-align:center;
}
.cta-box{
background:linear-gradient(135deg,#16161f,#1c1c28);
padding:60px 30px;
border-radius:30px;
}
footer{
text-align:center;
padding:40px;
color:#777;
border-top:1px solid rgba(255,255,255,0.05);
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">styl<span>air</span></div>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<div class="badge">Coming Soon on iPhone</div>
<h1>
Your AI-Powered <span class="gradient">Fashion Stylist</span>
</h1>
<p class="subtitle">
Discover outfits, organize your wardrobe, and get personalized AI styling recommendations.
</p>
<!-- ✅ TALLY EMBED (WAITLIST) -->
<div class="waitlist-embed">
<iframe
data-tally-src="https://tally.so/embed/VLbVvj?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1"
loading="lazy"
width="100%"
height="220"
frameborder="0">
</iframe>
</div>
</div>
</section>
<section class="features">
<div class="container">
<h2 class="section-title">Why Stylair</h2>
<div class="grid">
<div class="card">
<h3>AI Styling</h3>
<p>Personal outfit recommendations based on your wardrobe.</p>
</div>
<div class="card">
<h3>Digital Closet</h3>
<p>Organize and manage your entire wardrobe in one place.</p>
</div>
<div class="card">
<h3>Outfit Generator</h3>
<p>Instantly create stylish outfit combinations with AI.</p>
</div>
<div class="card">
<h3>Trends</h3>
<p>Stay ahead with curated fashion inspiration.</p>
</div>
</div>
</div>
</section>
<section class="cta">
<div class="container">
<div class="cta-box">
<h2>Be First to Try Stylair</h2>
<p style="color:#b3b3c5;margin:20px 0;">
Join the waitlist for early access.
</p>
<!-- SAME TALLY FORM AGAIN -->
<div class="waitlist-embed">
<iframe
data-tally-src="https://tally.so/embed/VLbVvj?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1"
loading="lazy"
width="100%"
height="220"
frameborder="0">
</iframe>
</div>
</div>
</div>
</section>
<footer>
© 2026 Stylair. All rights reserved.
</footer>
<!-- TALLY SCRIPT -->
<script>
var d=document,
s=d.createElement("script");
s.src="https://tally.so/widgets/embed.js";
s.onload=function(){Tally.loadEmbeds();};
d.body.appendChild(s);
</script>
</body>
</html>