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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: radial-gradient(53.43% 53.43% at 50% -34.4%, #5B5F64 0%, #222830 100%);
    min-height: 100vh;
    display: flex;
    padding-top: 5vh;
    justify-content: center;
}

.container {
    max-width: 975px;
    width: 100%;
    text-align: center;
}

/* Logo */
.logo {
    margin-bottom: 3vh;
}

.logo-icon {
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    border: 2px solid #2C323B;
    border-radius: 100px;
    padding: clamp(8px, 1.5vh, 11px);
    margin: 0 auto 5vh auto;
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 100%;
    padding-right: clamp(15px, 2vw, 20px);
    color: #EFECE8;
}

.badge-dot {
    width: clamp(28px, 4vw, 42px);
    height: clamp(28px, 4vw, 42px);
    background: radial-gradient(circle, #D5B892 0%, #D5B892 19%, rgba(213, 184, 146, 0.2) 19%, rgba(213, 184, 146, 0.2) 100%);
    border-radius: 50%;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #EFECE8;
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 600;
    margin-bottom: 2vh;
}

.description {
    color: #BBB7B3;
    font-size: clamp(16px, 2.5vw, 21px);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 4vh;
}

/* Email Form */
.email-form {
    width: 100%;
    max-width: 90%;
    background-color: #303741;
    border-radius: 16px;
    padding: clamp(15px, 2vw, 20px);
    margin-bottom: 3vh;
}

.input-group {
    display: flex;
    gap: clamp(8px, 1vw, 12px);
    width: 100%;
}

#emailInput {
    flex: 1;
    background-color: #303741;
    border: none;
    border-radius: 16px;
    font-size: clamp(16px, 2.5vw, 24px);
    padding: clamp(12px, 1.5vh, 16px);
    color: #EFECE8;
    outline: none;
}

#emailInput::placeholder {
    color: #BBB7B3;
    font-size: clamp(16px, 2.5vw, 24px);
}

.join-btn {
    background-color: #DEBC8B;
    color: #21242B;
    border: none;
    border-radius: 8px;
    padding: clamp(12px, 1.5vh, 18px);
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    white-space: nowrap;
    width: clamp(150px, 20vw, 230px);
}

/* Waitlist Count */
.waitlist-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 17px);
    margin-bottom: 6vh;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: clamp(32px, 5vw, 48px);
    height: clamp(32px, 5vw, 48px);
    background-image: url('assets/avatar1.jpg');
    background-color: #F59E0B;
    background-size: cover;
    border-radius: 50%;
    border: 3px solid #222830;
    margin-left: clamp(-12px, -1.5vw, -16px);
}

.avatar:nth-child(2) {
    background-image: url('assets/avatar3.jpg');
    background-color: #EF4444;
}

.avatar:nth-child(3) {
    background-image: url('assets/avatar4.jpg');
    background-color: #8B5CF6;
}

.avatar:nth-child(4) {
    background-image: url('assets/avatar2.jpg');
    background-color: #10B981;
}

.avatar:first-child {
    margin-left: 0;
}

.waitlist-count span {
    font-size: clamp(16px, 2.5vw, 24px);
    color: #BBB7B3;
    font-weight: 400;
    line-height: 1.3;
}

/* Countdown Section */
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 68px);
    margin-bottom: 4vh;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1vh, 16px);
}

.countdown-number {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 600;
    color: #EFECE8;
    line-height: 1.2;
}

.countdown-label {
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 400;
    color: #BBB7B3;
    line-height: 1.2;
}

.countdown-separator {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    color: #EFECE8;
    align-self: flex-start;
    margin-top: -2px;
}

.launch-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 16px);
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 500;
    color: #EFECE8;
    line-height: 1.3;
    margin-bottom: 2vh;
}

.launch-indicator svg {
    width: clamp(24px, 4vw, 32px);
    height: clamp(24px, 4vw, 32px);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        margin-top: 6vh;
    }

    .input-group {
        flex-direction: column;
    }

    .join-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 4vh;
    }

    .availability-badge {
        text-align: center;
    }

    .waitlist-count {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-height: 600px) {
    body {
        margin-top: 4vh;
    }

    .logo {
        margin-bottom: 2vh;
    }

    .availability-badge {
        margin-bottom: 3vh;
    }

    .description {
        margin-bottom: 3vh;
    }

    .email-form {
        margin-bottom: 2vh;
    }

    .waitlist-count {
        margin-bottom: 4vh;
    }

    .launch-indicator {
        margin-bottom: 4vh;
    }
}