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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

/* Left Section */
.left-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo-container {
    margin-bottom: 8px;
}

.logo {
    height: 40px;
    width: auto;
    display: block;
}

.tagline {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.5;
}

.headline {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.description {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    max-width: 600px;
}

.sub-description {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}

.signup-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
    max-width: 400px;
}

.email-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #0066FF;
    border-radius: 100px;
    background-color: #ffffff;
    color: #000000;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    text-align: center;
    font-weight: 700;
}

.email-input::placeholder {
    color: #0066FF;
    opacity: 1;
}

.email-input:focus {
    border-color: #0066FF;
}

.signup-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    background-color: #0066FF;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
    font-weight: 700;
}

.signup-button:hover {
    background-color: #0052CC;
}

.signup-button:active {
    background-color: #0040A0;
}

/* Right Section */
.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: cente;
    gap: 40px;
}

.coming-soon-container {
    text-align: center;
}

.coming-text,
.soon-text {
    text-align: right;
    font-size: 160px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin: 0;
}

.soon-text {
    margin-top: 5px;
}

.exclamation {
    color: #0066FF;
}

.countdown-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-box {
    background-color: #0066FF;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}

.countdown-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 6px;
    letter-spacing: 0.8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .left-section {
        align-items: center;
        text-align: center;
    }

    .headline {
        font-size: 40px;
    }

    .description,
    .sub-description {
        max-width: 100%;
    }

    .signup-section {
        max-width: 100%;
    }

    .coming-text,
    .soon-text {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        gap: 40px;
    }

    .headline {
        font-size: 32px;
    }

    .description,
    .sub-description,
    .tagline {
        font-size: 16px;
    }

    .coming-text,
    .soon-text {
        font-size: 48px;
    }

    .countdown-box {
        width: 90px;
        height: 90px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-container {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .headline {
        font-size: 28px;
    }

    .coming-text,
    .soon-text {
        font-size: 40px;
    }

    .countdown-box {
        width: 75px;
        height: 75px;
    }

    .countdown-value {
        font-size: 22px;
    }

    .countdown-label {
        font-size: 9px;
    }

    .countdown-container {
        gap: 8px;
    }
}

