

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1C254E;
    font-family: 'Satoshi', sans-serif;
    color: #D3DBFE;
    line-height: 1.5;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar Styling */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
}

img {
    width: 150px;
    height: auto;
}

/* Hero Section Styling */

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.badge {
    border: 1px solid #007EFE;
    color: #D3DBFE;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.headline {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.highlight {
    color: #007EFE; 
}

.s-text {
    color: #D3DBFE;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Button Styling */
.waitlist-button {
    background-color: #007EFE;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.waitlist-button:hover {
    background-color: #0054a8;
    transform: scale(1.02);
}

.waitlist-button a {
    color: white;
    font-family: 'satoshi', sans-serif;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    .navbar { padding: 20px; }
}