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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* background: #6654ab; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 80px;
}

.content {
    flex: 1;
    max-width: 500px;
}

.header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.app-name {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.4;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    color: black;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #9ca3af;
}

.email-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.join-button {
    padding: 16px 32px;
    background: #0566cc;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.join-button:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.waitlist-note {
    font-size: 14px;
    color: #9ca3af;
    text-align: left;
    margin-top: 4px;
}

.follow-link {
    margin-top: 20px;
}

.follow-text {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.follow-text:hover {
    color: white;
}

.demo-section {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.demo-image {
    max-width: 700px;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .header {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 16px;
    }
    
    .demo-image {
        max-width: 85vw;
        max-height: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .header {
        justify-content: center;
    }
    
    .demo-image {
        max-width: 90vw;
        max-height: none;
    }
}
