/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff; /* 100% white background as requested */
    color: #111111;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 600px;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out forwards;
}

/* Logo */
.logo-wrapper {
    margin-top: auto;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.coming-soon {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #000000;
}

.tagline {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

/* Minimalist Form */
.notify-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.notify-form:focus-within {
    border-bottom-color: #000000;
}

.notify-form input {
    flex: 1;
    border: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: #000000;
    outline: none;
}

.notify-form input::placeholder {
    color: #999999;
    font-weight: 300;
}

.notify-form button {
    background: transparent;
    color: #000000;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.notify-form button:hover {
    transform: translateX(4px);
}

.notify-form button svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #999999;
    font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .coming-soon {
        font-size: 1.8rem;
    }
    .logo-img {
        max-height: 100px;
    }
}
