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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #f8f5f0; /* overall subtle beige */
    color: #111827;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: white;
    max-width: 760px;
    width: 100%;
    margin: 2rem;
    padding: 4rem 2.5rem;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f0eb;
}

.logo-img {
    width: 260px;
    height: auto;
    margin-bottom: 2.5rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.35rem;
    color: #374151;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.65rem 2.2rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 520px;
    margin: 0 auto 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: #10b981;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
}

.btn-primary {
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

    .btn-primary:hover {
        background: #059669;
        transform: translateY(-3px);
    }

footer {
    margin-top: 5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

    footer a {
        color: #10b981;
        text-decoration: none;
        font-weight: 500;
    }

        footer a:hover {
            text-decoration: underline;
        }

.notify-form {
    max-width: 420px;
    margin: 2.5rem auto 0;
}

.form-title {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

    .form-grid input {
        padding: 1rem 1.25rem;
        border: 2px solid #e5e7eb;
        border-radius: 9999px;
        font-size: 1rem;
        transition: border 0.2s;
    }

        .form-grid input:focus {
            outline: none;
            border-color: #10b981;
        }

.form-message {
    margin-top: 1rem;
    font-size: 1rem;
    min-height: 1.5em;
}
