<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Astra SaaS Landing Page | InfoFusion Hubs</title>
<!– Premium Fonts –>
<link href=”https://fonts.googleapis.com” rel=”stylesheet”>
<style>
/* CSS Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Inter’, sans-serif;
}
body {
background-color: #050505; /* Pitch black background */
color: #ffffff;
overflow-x: hidden;
line-height: 1.5;
}
/* Top Green Glow Effect */
.top-glow {
position: absolute;
top: -150px;
left: 50%;
transform: translateX(-50%);
width: 700px;
height: 500px;
background: radial-gradient(circle, rgba(0, 255, 128, 0.12) 0%, transparent 70%);
z-index: -1;
}
.container {
max-width: 1150px;
margin: 0 auto;
padding: 0 20px;
}
/* Navbar */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 0;
}
.logo {
font-size: 22px;
font-weight: 800;
display: flex;
align-items: center;
gap: 8px;
color: #fff;
}
.logo-box {
width: 18px;
height: 18px;
background: #00ff80;
border-radius: 4px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2px;
padding: 2px;
}
.logo-box div { background: #000; border-radius: 1px; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: #888; font-size: 14px; transition: 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-btns { display: flex; gap: 10px; }
.btn-ghost { background: transparent; border: 1px solid #222; color: #fff; padding: 10px 20px; border-radius: 30px; cursor: pointer; font-size: 13px; }
.btn-lime { background: #d9f99d; color: #000; border: none; padding: 10px 20px; border-radius: 30px; font-weight: bold; cursor: pointer; font-size: 13px; }
/* Hero Section */
.hero-card {
background: linear-gradient(180deg, rgba(0, 40, 20, 0.4) 0%, rgba(0, 0, 0, 1) 100%);
border: 1px solid rgba(0, 255, 128, 0.1);
border-radius: 40px;
padding: 100px 20px;
text-align: center;
margin-top: 20px;
}
.badge {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #00ff80;
padding: 6px 15px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
display: inline-block;
margin-bottom: 25px;
}
/* Heading White Color Fix */
.hero-card h1 {
font-size: clamp(35px, 6vw, 65px);
font-weight: 700;
color: #ffffff; /* Explicitly White */
line-height: 1.1;
margin-bottom: 20px;
}
.hero-card p {
color: #888;
max-width: 500px;
margin: 0 auto 40px;
font-size: 15px;
}
.cta-group { display: flex; justify-content: center; gap: 15px; }
.btn-neon { background: #00ff80; color: #000; border: none; padding: 15px 35px; border-radius: 30px; font-weight: 800; cursor: pointer; }
.btn-contact { background: #d9f99d; color: #000; border: none; padding: 15px 35px; border-radius: 30px; font-weight: 800; cursor: pointer; }
/* Partner Logos */
.partners {
display: flex;
justify-content: space-between;
align-items: center;
padding: 60px 0;
opacity: 0.4;
flex-wrap: wrap;
gap: 20px;
}
/* Features Section */
.features {
display: flex;
align-items: center;
padding: 80px 0;
gap: 50px;
flex-wrap: wrap;
}
.feature-content { flex: 1; min-width: 300px; }
.feature-content h2 {
font-size: 42px;
color: #ffffff; /* Explicitly White */
margin-bottom: 20px;
line-height: 1.2;
}
.feature-tag { color: #00ff80; font-size: 12px; margin-bottom: 10px; display: block; }
.feature-content p { color: #666; margin-bottom: 30px; }
.list-item {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 15px 20px;
border-radius: 12px;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 15px;
font-size: 14px;
max-width: 400px;
}
/* Visual Box */
.feature-visual {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
min-width: 300px;
}
.glass-square {
width: 280px;
height: 280px;
background: radial-gradient(circle at top left, rgba(0, 255, 128, 0.2), transparent);
border: 1px solid rgba(0, 255, 128, 0.2);
border-radius: 30px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 40px rgba(0, 255, 128, 0.05);
}
.footer-text {
text-align: center;
padding: 60px 0;
font-size: 35px;
opacity: 0.8;
font-weight: 500;
}
/* Responsive */
@media (max-width: 768px) {
.nav-links { display: none; }
.features { flex-direction: column; text-align: center; }
.list-item { margin: 10px auto; }
.hero-card { border-radius: 20px; padding: 60px 15px; }
}
</style>
</head>
<body>
<div class=”top-glow”></div>
<div class=”container”>
<!– Navigation –>
<nav>
<div class=”logo”>
<div class=”logo-box”><div></div><div></div><div></div><div></div></div>
Astra
</div>
<ul class=”nav-links”>
<li><a href=”#”>About</a></li>
<li><a href=”#”>Product</a></li>
<li><a href=”#”>Resources</a></li>
</ul>
<div class=”nav-btns”>
<button class=”btn-ghost”>Get Started</button>
<button class=”btn-lime”>Contact Sales</button>
</div>
</nav>
<!– Hero Card –>
<section class=”hero-card”>
<span class=”badge”>Growth On Your Own Terms</span>
<h1>The modern <br> capital platform</h1>
<p>We’re eliminating the friction and bias of traditional financing, connecting business builders to quick.</p>
<div class=”cta-group”>
<button class=”btn-neon”>Get Started ></button>
<button class=”btn-contact”>Contact Sales</button>
</div>
</section>
<!– Partners –>
<div class=”partners”>
<span>HubSpot</span>
<span>amazon</span>
<span>airbnb</span>
<span>Canon</span>
<span>facebook</span>
</div>
<!– Features –>
<section class=”features”>
<div class=”feature-content”>
<span class=”feature-tag”>The security first platform</span>
<h2>Simplify your security <br> with our services</h2>
<p>Outcome Focused sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.</p>
<div class=”list-item”><span>❓</span> Security treats</div>
<div class=”list-item”><span>🏠</span> Knowledge transfer</div>
<div class=”list-item”><span>📉</span> Security damage</div>
</div>
<div class=”feature-visual”>
<div class=”glass-square”>
<div style=”font-size: 50px; filter: drop-shadow(0 0 10px #00ff80);”>🔄</div>
</div>
</div>
</section>
<div class=”footer-text”>Faster. Smarter.</div>
</div>
</body>
</html>
