* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(-45deg, #bff5a3, #d1f0c5, #98473e, #03312e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #03312e;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(3, 49, 46, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    font-family: 'Lusitana', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #03312e;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* .logo::before {
    content: "🌿";
    font-size: 2rem;
} */

.logo-image {
    height: 3.5rem;
    width: auto;
    margin-right: 0.5rem;
    filter: brightness(0) saturate(100%) invert(16%) sepia(16%) saturate(2234%) hue-rotate(137deg) brightness(96%) contrast(90%);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* .logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(16%) sepia(16%) saturate(2234%) hue-rotate(137deg) brightness(96%) contrast(90%) drop-shadow(0 4px 8px rgba(3, 49, 46, 0.2));
} */

.headline {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #03312e;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 3rem;
    line-height: 1.5;
    opacity: 0.8;
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 10;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(3, 49, 46, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Geist', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: #03312e;
    background: white;
    box-shadow: 0 0 0 4px rgba(3, 49, 46, 0.1);
}

.email-input::placeholder {
    color: #666;
    opacity: 0.7;
}

.cta-button {
    padding: 1rem 2rem;
    background: #03312e;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Geist', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
}

.cta-button:hover {
    background: #1e1e1e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 49, 46, 0.2);
}

.contact-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 1rem; /* tighter padding */
    backdrop-filter: blur(8px);
    text-align: center;
    font-size: 0.85rem;
    color: #1e1e1e;
    z-index: 1000;
    opacity: 0.9;
    line-height: 1.4;
}

.contact-info a {
    color: #03312e;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .headline {
        font-size: 2.2rem;
    }

    .signup-form {
        flex-direction: column;
        align-items: center;
        z-index: 10;
    }

    .email-input {
        min-width: auto;
        width: 100%;
    }

    .container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(3, 49, 46, 0.1);
    border-radius: 50%;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}
