:root {
    --maroon: #800000;
    --light-bg: #f9f9f9;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

header {
    padding: 40px 20px;
    text-align: center;
}

.logo {
    max-width: 260px;
    height: auto;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.dot {
    height: 10px; width: 10px; background-color: var(--maroon);
    border-radius: 50%; margin-right: 10px; animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(128, 0, 0, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(128, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(128, 0, 0, 0); }
}

h1 {
    font-size: clamp(2rem, 8vw, 3.5rem); /* Responsive font sizing */
    line-height: 1.1; margin-bottom: 20px;
}

.highlight {
    color: var(--maroon);
}

.description {
    font-size: 1.2rem; color: #555; margin-bottom: 30px; line-height: 1.6;
}

.tech-stack {
    display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; font-weight: 600; flex-wrap: wrap;
}

.notify-form {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px;
}

input[type="email"] {
    padding: 16px 24px; border-radius: 8px; border: 1px solid #ccc; width: 100%; max-width: 350px; font-size: 1rem;
}

.btn-primary {
    background-color: var(--maroon); color: #fff; padding: 16px 32px;
    border: none; border-radius: 8px; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: 0.3s;
}

.btn-primary:hover {
    background-color: #600000; transform: translateY(-2px);
}

.how-it-works {
    padding: 80px 20px; background-color: var(--light-bg); text-align: center;
}

.how-it-works h2 {
    font-size: 2rem; margin-bottom: 50px; color: var(--maroon);
}

.steps-container {
    display: flex; justify-content: center; gap: 30px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}

.step {
    flex: 1; min-width: 280px; padding: 30px; background: white; border-radius: 12px; border: 1px solid #eee;
}

.step-number {
    font-size: 3rem; font-weight: 800; color: var(--maroon); opacity: 0.15; margin-bottom: -25px;
}

.contact-section {
    padding: 60px 20px; text-align: center;
}

.contact-section a {
    color: var(--maroon); text-decoration: none; font-weight: 700;
}

footer {
    padding: 40px 20px; text-align: center; color: #888; border-top: 1px solid #eee;
}