:root {
    --bg-color: #F7CE46;
    /* Nice vibrant yellow */
    --text-color: #3E2723;
    /* Dark contrast brown */
    --card-bg: rgba(62, 39, 35, 0.05);
    --card-border: rgba(62, 39, 35, 0.1);
    --input-bg: rgba(255, 255, 255, 0.4);
    --btn-bg: #3E2723;
    --btn-text: #F7CE46;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-placeholder {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bird-icon {
    width: 40px;
    height: 40px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 0;
    animation: fadeIn 1s ease-out;
}

.status-badge {
    background: rgba(62, 39, 35, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid var(--card-border);
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(62, 39, 35, 0.08);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.feature-card.highlight {
    border: 2px solid var(--text-color);
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--text-color);
    background: var(--input-bg);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: background 0.3s;
}

input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.6);
}

input[type="email"]::placeholder {
    color: rgba(62, 39, 35, 0.6);
}

button {
    padding: 1rem 1.5rem;
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.3s;
}

button:hover {
    opacity: 0.9;
}

footer {
    margin-top: auto;
    padding-top: 4rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .notify-form {
        flex-direction: column;
    }

    h1 {
        font-size: 3rem;
    }
}