/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Dark Navy Background */
    color: #ffffff;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Navigation */
nav {
    padding-bottom: 4rem;
}

/* Inside styles.css */

/* Navigation */
nav {
    padding-bottom: 4rem;
    /* This ensures the logo stays aligned if you add more links later */
    display: flex; 
    align-items: center; 
}

.brand-logo {
    height: 40px; /* Adjust this number to make the logo bigger or smaller */
    width: auto;  /* Keeps the aspect ratio correct */
    display: block;
}

/* Update Mobile Responsiveness to keep logo size safe on phones */
@media (max-width: 600px) {
    .brand-logo {
        height: 32px; /* Slightly smaller on mobile */
    }
}

/* Hero Section */
.hero {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.badge {
    background-color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #334155;
    color: #94a3b8;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: #94a3b8; /* Muted text color */
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Form Styling */
.signup-form {
    width: 100%;
    max-width: 500px;
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

input[type="email"] {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #334155;
    background-color: #1e293b;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

input[type="email"]:focus {
    border-color: #3b82f6;
}

button {
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

button:hover {
    background-color: #2563eb;
}

/* Utilities */
.hidden {
    display: none;
}

.success-message {
    background-color: #064e3b;
    color: #6ee7b7;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    border: 1px solid #059669;
}

.tiny-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 1rem;
}

footer {
    text-align: center;
    color: #475569;
    font-size: 0.875rem;
    margin-top: auto;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .input-group { flex-direction: column; }
    button { width: 100%; }
}